summaryrefslogtreecommitdiffstats
path: root/src/b2qt-flashing-wizard/progress_page.h
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@theqtcompany.com>2014-11-13 15:47:11 +0100
committerRainer Keller <rainer.keller@theqtcompany.com>2014-11-14 15:58:46 +0200
commit6010e69aa3ac3e94c0fabf16a28e682e35a07a68 (patch)
tree80ea47c2880607fc2a16e24a96ce30effe3ce6ff /src/b2qt-flashing-wizard/progress_page.h
parent1f0de42b9d5a8ef665e6799019eed898b0396586 (diff)
b2qt-flashing-wizard: Make all buttons functional
Change-Id: Ie2cc222f689a937f1f175fd678d7ae441273171e Reviewed-by: Rainer Keller <rainer.keller@theqtcompany.com>
Diffstat (limited to 'src/b2qt-flashing-wizard/progress_page.h')
-rw-r--r--src/b2qt-flashing-wizard/progress_page.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/b2qt-flashing-wizard/progress_page.h b/src/b2qt-flashing-wizard/progress_page.h
index d0a3b79..3169e3f 100644
--- a/src/b2qt-flashing-wizard/progress_page.h
+++ b/src/b2qt-flashing-wizard/progress_page.h
@@ -24,6 +24,7 @@
class QLabel;
class Actor;
class QTextEdit;
+class QPushButton;
class ProgressPage : public QWizardPage
{
@@ -39,12 +40,16 @@ public slots:
void progress(const QString &step);
void finished();
void addDetails(QByteArray newData);
+ void toggleDetails();
+ void copyDetailsToClipboard();
private:
QLabel *mProgress;
Actor *mActor;
bool mFinished;
QTextEdit *mTextEdit;
+ QPushButton *mToggleDetailsButton;
+ QPushButton *mCopyToClipboardButton;
};
#endif // PROGRESS_PAGE_H