Roy's Projects
/
dhcpcd-ui
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add an initial Qt port.
[dhcpcd-ui]
/
src
/
dhcpcd-qt
/
dhcpcd-preferences.h
1
#ifndef DHCPCD_PREFERENCES_H
2
#define DHCPCD_PREFERENCES_H
3
4
#include <QDialog>
5
6
class DhcpcdQt;
7
class QLabel;
8
9
class DhcpcdPreferences : public QDialog
10
{
11
Q_OBJECT
12
13
public:
14
DhcpcdPreferences(DhcpcdQt *parent = 0);
15
16
protected:
17
void closeEvent(QCloseEvent *e);
18
19
private:
20
DhcpcdQt *parent;
21
QLabel *notLabel;
22
};
23
24
#endif