Files
Sourcetrail/src/lib_gui/qt/utility/QtWindowsTaskbarButton.h
T
mlangkabel 2c52425d99 ui: Showing indexing progress in windows task bar
* implemented showing indexing progress in windows taskbar button
* renamed TaskShowStatusDialog
* added "Qt5WinExtras.dll" for windows builds
2018-01-16 11:16:08 +01:00

24 lines
403 B
C++

#ifndef QT_WINDOWS_TASKBAR_BUTTON_H
#define QT_WINDOWS_TASKBAR_BUTTON_H
class QWinTaskbarProgress;
class QtMainWindow;
class QtWindowsTaskbarButton
{
public:
QtWindowsTaskbarButton();
void setWindow(QtMainWindow* mainWindow);
void setProgress(float progress);
void hideProgress();
private:
#ifdef _WIN32
QWinTaskbarProgress* m_taskbarProgress;
#endif
};
#endif // QT_WINDOWS_TASKBAR_BUTTON_H