blob: 73c208fbd3ceed25f414cbb40065585d1429fd5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef SIZEAWARE_H
#define SIZEAWARE_H
#include <qdialog.h>
class SizeAware : public TQDialog
{
Q_OBJECT
Q_PROPERTY( TQString company READ company WRITE setCompany )
Q_PROPERTY( TQString settingsFile READ settingsFile WRITE setSettingsFile )
public:
SizeAware( TQDialog *parent = 0, const char *name = 0, bool modal = FALSE );
~SizeAware();
void setCompany( TQString company ) { m_company = company; }
TQString company() const { return m_company; }
void setSettingsFile( TQString settingsFile ) { m_settingsFile = settingsFile; }
TQString settingsFile() const { return m_settingsFile; }
public slots:
void destroy();
private:
TQString m_company;
TQString m_settingsFile;
};
#endif
|