#ifndef pqRemoteCommandTemplateDialog_h #define pqRemoteCommandTemplateDialog_h // .NAME pqRemoteCommandTemplateDialog - Dialog for configuring server side signals // .SECTION Description #include #include #include #include class pqRemoteCommandTemplateDialogUI; class pqRemoteCommandTemplateDialog : public QDialog { Q_OBJECT public: pqRemoteCommandTemplateDialog(QWidget *parent, Qt::WindowFlags f); ~pqRemoteCommandTemplateDialog(); // Description: // Access to UI state void SetCommandName(QString name); QString GetCommandName(); void SetCommandTemplate(QString templ); QString GetCommandTemplate(); int GetModified(){ return this->Modified; } private slots: void SetModified(){ ++this->Modified; } private: int Modified; pqRemoteCommandTemplateDialogUI *Ui; }; #endif