summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/examples/sizeaware/sizeaware.h
blob: 9e943dc02a4c6837cf6ffd590996960d95c39117 (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 <tqdialog.h>

class SizeAware : public TQDialog
{
    TQ_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 Q_SLOTS:
    void destroy();
private:
    TQString m_company;
    TQString m_settingsFile;
};
#endif