00001 #ifndef TEACHERSTARTACTIONS_H 00002 #define TEACHERSTARTACTIONS_H 00003 00004 #include "startactions.h" 00005 #include "ui_TeacherStartActions.h" 00006 00007 class TeacherStartActions : public StartActions, private Ui::TeacherStartActions 00008 { 00009 Q_OBJECT; 00010 public: 00011 TeacherStartActions(QWidget *parent = 0); 00012 void setProjectOpen(bool state); 00013 00014 private: 00015 void createActions(); 00016 00017 signals: 00018 void newFile(); 00019 void openFile(); 00020 void closeFile(); 00021 void showHelp(); 00022 }; 00023 00024 #endif