00001 #ifndef SETUPDIALOG_H_ 00002 #define SETUPDIALOG_H_ 00003 00004 #include <QObject> 00005 00006 class StartPrompter : public QObject 00007 { 00008 Q_OBJECT 00009 00010 public: 00011 StartPrompter(); 00012 ~StartPrompter(); 00013 00014 public slots: 00015 void handleStart(); 00016 void backendRunningPrompt(); 00017 void leaveBackendRunning(); 00018 void stopBackend(); 00019 void quit(); 00020 00021 private: 00022 StartPrompter(const StartPrompter &); 00023 00024 private: 00025 struct StartPrompterPrivate *m_d; 00026 }; 00027 00028 #endif