example_g3.h 363 B

1234567891011121314151617181920212223
  1. #ifndef EXAMPLE_G3_H
  2. #define EXAMPLE_G3_H
  3. #include <qwidget.h>
  4. class MyWindow : public QWidget {
  5. Q_OBJECT
  6. public:
  7. MyWindow(QWidget *parent = 0, const char *name = 0);
  8. ~MyWindow();
  9. private slots:
  10. void fileNew();
  11. void fileOpen();
  12. void fileSave();
  13. void fileSaveAs();
  14. void filePrint();
  15. void helpAbout();
  16. };
  17. #endif // !EXAMPLE_G3_H