File: process.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 (62 lines) | stat: -rw-r--r-- 1,242 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
/****************************************************************************
** Form interface generated from reading ui file 'process.ui'
**
** Created: Fri Mar 23 12:23:05 2001
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef PROCESS_H
#define PROCESS_H

#include <qlistview.h>
#include <qvariant.h>
#include <qwidget.h>
class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
class QButtonGroup;
class QListView;
class QListViewItem;
class QPushButton;

#include <mysql.h>

class Process : public QWidget
{ 
    Q_OBJECT

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

    QListView* process;
    QPushButton* close;
    QPushButton* kill;

protected:
    QVBoxLayout* ButtonGroup56Layout;

private:
	MYSQL *mysql;
	void signal_connect();

private slots:
	void slot_kill(QListViewItem *);
	void slot_kill(int);
	void slot_process();

public slots:
	void slot_kill();
	void slot_refresh();
	void slot_close();
	void slot_about();

signals:
	void signal_error();

protected:
	void resizeEvent(QResizeEvent *);
};

#endif // PROCESS_H