src/dialogs.h

changeset 452
47cc663e4ff4
parent 436
4268a5507725
child 472
8986414c6ad5
equal deleted inserted replaced
451:7ef26b45ed55 452:47cc663e4ff4
21 21
22 #include <QDialog> 22 #include <QDialog>
23 #include "common.h" 23 #include "common.h"
24 #include "types.h" 24 #include "types.h"
25 25
26 class Ui_ExtProgPath;
26 class QRadioButton; 27 class QRadioButton;
27 class QCheckBox; 28 class QCheckBox;
28 class QProgressBar; 29 class QProgressBar;
29 class QGroupBox; 30 class QGroupBox;
30 class QDialogButtonBox; 31 class QDialogButtonBox;
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;

mercurial