blob: b939cfe4e6385d953ab9a61c43798610cbe6d7e8 (
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 <ntqdialog.h>
class SizeAware : public TQDialog
{
TQ_OBJECT
TQ_PROPERTY( TQString company READ company WRITE setCompany )
TQ_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
|