Source: /app/hbasic/hbasic/gui_db_access/db_design_window.h
|
|
|
|
/* **************************************************************************
File: db_design_window.h
Desc:
----------------------------------------------------------------------------
copyright : (C) 2001 HBasic project (Marcus Engels)
***************************************************************************/
/* **************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/* ----------------------------------------------------------------------- */
/* Classlist: List of classes that will be defined in this source file. */
/* ----------------------------------------------------------------------- */
/*
Class dbDesignWindow : This class represents the window where the
database design may be edited.
*/
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef DB_DESIGN_WIN_H
#define DB_DESIGN_WIN_H
#include
#include
class QPushButton;
#include
#include
#include
#include "../src/structs.h"
#include "../src/project.h"
#include "db_design_widget.h"
/**
Class dbDesignWindow : This class represents the window where the
database design display may be edited.
*/
class dbDesignWindow : public QDialog
{
Q_OBJECT
public:
dbDesignWindow( QWidget *parent );
private:
QPushButton *btn_ok;
QPushButton *btn_add_table;
QPushButton *btn_del_conn;
DbDesign *db_design_wgt;
private:
void resizeEvent( QResizeEvent *evt );
private slots:
void slotQuit( void );
void slotAddTable( void );
void slotDeleteConn( void );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |