File: script.h

package info (click to toggle)
mysql-navigator 1.2.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,756 kB
  • ctags: 1,058
  • sloc: cpp: 11,213; makefile: 46; sh: 24; sql: 11
file content (70 lines) | stat: -rw-r--r-- 1,461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/****************************************************************************
** Form interface generated from reading ui file 'script.ui'
**
** Created: Tue Nov 28 16:16:59 2000
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef SCRIPT_H
#define SCRIPT_H

#include <qwidget.h>
class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
class QButtonGroup;
class QGroupBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QRadioButton;
class QTabWidget;

#include <mysql.h>

class Script : public QWidget
{ 
    Q_OBJECT

public:
    Script(MYSQL *, QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
    ~Script();

    QPushButton* fire;
    QTabWidget* TabWidget11;
    QGroupBox* GroupBox23;
    QLabel* TextLabel2;
    QLabel* TextLabel1;
    QLineEdit* script;
    QLineEdit* log;
    QPushButton* push1;
    QPushButton* push2;
    QButtonGroup* ButtonGroup10;
    QRadioButton* ignore;
    QRadioButton* stop;
    QGroupBox* GroupBox30;
    QLabel* total;
    QPushButton* close;

protected:
    QVBoxLayout* vbox;
    QVBoxLayout* vbox_2;

private:
	void signal_connect();

	MYSQL *mysql;

private slots:
	void slot_close();
	void slot_fire();
	void slot_script();
	void slot_log();

signals:
	void signal_error(const QString &, const QString &);
	void signal_schema();
};

#endif // SCRIPT_H