1234567891011121314151617181920212223 |
- #ifndef EXAMPLE_G3_H
- #define EXAMPLE_G3_H
- #include <qwidget.h>
- class MyWindow : public QWidget {
- Q_OBJECT
- public:
- MyWindow(QWidget *parent = 0, const char *name = 0);
- ~MyWindow();
- private slots:
- void fileNew();
- void fileOpen();
- void fileSave();
- void fileSaveAs();
- void filePrint();
- void helpAbout();
- };
- #endif // !EXAMPLE_G3_H
|