blob: 426c07232913b13d9fd7410b93fb8f9b08b8c824 (
plain) (
blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
#ifndef _STATUS_H
#define _STATUS_H
#include <api/wnd/wndclass/guiobjwnd.h>
#include <bfc/string/StringW.h>
#include <api/wndmgr/guistatuscb.h>
#include <bfc/depend.h>
class ButtBar;
class AppCmds;
#define STATUSBAR_PARENT GuiObjectWnd
/**
Class
@short
@author Nullsoft
@ver 1.0
@see
*/
class StatusBar : public STATUSBAR_PARENT, public GuiStatusCallbackI {
public:
/**
Method
@see
@ret
@param
*/
StatusBar();
/**
Method
@see
@ret
@param
*/
virtual ~StatusBar();
/**
Method
@see
@ret
@param
*/
virtual int onInit();
// completeness indicator
/**
Method
@see
@ret
@param
*/
virtual void pushCompleted(int max);
/**
Method
@see
@ret
@param
*/
virtual void incCompleted(int add);
/**
Method
@see
@ret
@param
*/
virtual void setCompleted(int pos);
/**
Method
@see
@ret
@param
*/
virtual void popCompleted();
/**
Method
@see
@ret
@param
*/
virtual void timerCallback(int id);
/**
Method
@see
@ret
@param
*/
virtual int onResize();
virtual api_dependent *status_getDependencyPtr() { return this; }
/**
Method
@see
@ret
@param
*/
virtual void onSetStatusText(const wchar_t *text, int overlay);
/**
Method
@see
@ret
@param
*/
virtual void onAddAppCmds(AppCmds *commands);
/**
Method
@see
@ret
@param
*/
virtual void onRemoveAppCmds(AppCmds *commands);
/**
Method
@see
@ret
@param
*/
void fakeButtonPush(const wchar_t *name);
protected:
int fakeButtonPush(ButtBar *bb, const wchar_t *name);
void setExclude(const wchar_t *val);
void setIncludeOnly(const wchar_t *val);
StringW exclude_list, include_only;
protected:
void regenerate();
private:
StringW contentgroupname;
StringW status_text;
int overtimer;
// completeness
int max;
int completed;
int progress_width;
GuiObjectWnd bg;
ButtBar *bbleft, *bbright;
PtrList<AppCmds> appcmds;
};
#endif
|