00001 #ifndef ACTIONSTAB_H 00002 #define ACTIONSTAB_H 00003 00004 #include "ui_ActionsTab.h" 00005 00006 QT_BEGIN_NAMESPACE 00007 class QWidget; 00008 QT_END_NAMESPACE 00009 00011 00014 class ActionsTab : public QWidget, private Ui::ActionsTab 00015 { 00016 Q_OBJECT; 00017 public: 00018 ActionsTab(QWidget *parent = 0); 00019 void setProjectOpen(bool state); 00020 00021 signals: 00022 void createProject(); 00023 void openProject(); 00024 void closeProject(); 00025 void newDocument(); 00026 void importDocuments(); 00027 }; 00028 00029 #endif