105 Ui_OpenProgressUI* ui; |
106 Ui_OpenProgressUI* ui; |
106 |
107 |
107 void updateValues(); |
108 void updateValues(); |
108 }; |
109 }; |
109 |
110 |
|
111 // ============================================================================= |
|
112 class ExtProgPathPrompt : public QDialog { |
|
113 Q_OBJECT |
|
114 |
|
115 public: |
|
116 explicit ExtProgPathPrompt (str progName, QWidget* parent = 0, Qt::WindowFlags f = 0); |
|
117 virtual ~ExtProgPathPrompt(); |
|
118 str getPath() const; |
|
119 |
|
120 public slots: |
|
121 void findPath(); |
|
122 |
|
123 private: |
|
124 Ui_ExtProgPath* ui; |
|
125 }; |
|
126 |
110 #endif // DIALOGS_H |
127 #endif // DIALOGS_H |
111 // kate: indent-mode cstyle; indent-width 4; replace-tabs off; tab-width 4; |
|