-
Notifications
You must be signed in to change notification settings - Fork 1
/
externalprogressbar_lin.cpp
72 lines (57 loc) · 1.52 KB
/
externalprogressbar_lin.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
////////////////////////////////////////////////////////////////////////////////
// Linux implementation of ExternalProgressBar
// Not implemented yet, contains only stubs
#include <QWidget>
#include "externalprogressbar.h"
// Class with platform-specific data
class ExternalProgressBarPrivate
{
public:
ExternalProgressBarPrivate();
~ExternalProgressBarPrivate();
};
ExternalProgressBarPrivate::ExternalProgressBarPrivate()
{
}
ExternalProgressBarPrivate::~ExternalProgressBarPrivate()
{
}
ExternalProgressBar::ExternalProgressBar(QWidget* mainWindow) :
d_ptr(new ExternalProgressBarPrivate()),
m_MaxValue(0)
{
Q_UNUSED(mainWindow);
}
ExternalProgressBar::~ExternalProgressBar()
{
DestroyProgressBar();
delete d_ptr;
}
// Initializes the external progress bar and sets its limits
bool ExternalProgressBar::InitProgressBar(quint64 maxSteps)
{
m_MaxValue = maxSteps;
Q_UNUSED(maxSteps);
return false;
}
// Deinitializes the external progress bar and returns into the normal state
bool ExternalProgressBar::DestroyProgressBar()
{
return false;
}
// Updates the current progress bar position
bool ExternalProgressBar::SetProgressValue(quint64 currentSteps)
{
Q_UNUSED(currentSteps);
return false;
}
// Sets the progress bar to indicate pause
bool ExternalProgressBar::ProgressSetPause()
{
return false;
}
// Sets the progress bar to indicate an error
bool ExternalProgressBar::ProgressSetError()
{
return false;
}