Plasma Engine  2.0
Loading...
Searching...
No Matches
QtWaitForOperationDlg.moc.h
1#pragma once
2
3#include <Foundation/Strings/String.h>
4#include <Foundation/Types/Delegate.h>
5#include <GuiFoundation/GuiFoundationDLL.h>
6#include <GuiFoundation/ui_QtWaitForOperationDlg.h>
7
8class QWinTaskbarProgress;
9class QWinTaskbarButton;
10
11class PL_GUIFOUNDATION_DLL plQtWaitForOperationDlg : public QDialog, public Ui_QtWaitForOperationDlg
12{
13 Q_OBJECT
14
15public:
16 plQtWaitForOperationDlg(QWidget* pParent);
18
19 plDelegate<bool()> m_OnIdle;
20
21private Q_SLOTS:
22 void on_ButtonCancel_clicked();
23 void onIdle();
24};
25
Definition QtWaitForOperationDlg.moc.h:12
A generic delegate class which supports static functions and member functions.
Definition Delegate.h:76