-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkpackage.h
More file actions
348 lines (248 loc) · 7.87 KB
/
Copy pathkpackage.h
File metadata and controls
348 lines (248 loc) · 7.87 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
//////////////////////////////////////////////////////////////////////////
// $Id: kpackage.h 20671 1999-05-02 14:28:37Z coolo $
// File : kpackage.h
// Author: Damyan Pepper
// Author: Toivo Pedaste
//
// This is the main widget for kpackage
// The whole widget is a DND drop zone where users can drop packagess to
// be installed.
// The widget can be in one of two modes: management and installation.
//
// Management mode displays a tree list showing all the packages that are
// currently installed on the system (each in their appropriate groups)
// and a display of the currently selected package's properties.
//
// Installation mode displays the properties of the package to install
// and a set of options for installation
//
// The displays for each of these modes are contained within a widget.
// When the mode changes, the appropriate widget is show and the other
// hidden.
//
// KPACKAGE also holds the menu bar. At current, the menu structure is as
// follows:kpackage
//
// File -> Quit
// Help -> About
//
// This will, of course, be expanded in future versions as more
// functionality is added to the application.
//////////////////////////////////////////////////////////////////////////
#ifndef KPACKAGE_H
#define KPACKAGE_H
#include "config.h"
// Standard Headers
#include <stdio.h>
// Qt Headers
#include <qdir.h>
#include <qwidget.h>
#include <qframe.h>
#include <qlabel.h>
#include <qfiledlg.h>
#include <qgrpbox.h>
// KDE headers
#include <kfm.h>
#include <kapp.h>
#include <kurl.h>
#include <drag.h>
#include <kprogress.h>
#include <kmenubar.h>
#include <ktopwidget.h>
#include <kfiledialog.h>
class Search;
class FindF;
class Options;
class pkgInterface;
class managementWidget;
class KAccelMenu;
class KAccel;
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
class KPACKAGE : public QWidget
{
Q_OBJECT;
///////////// METHODS ------------------------------------------------------
public:
KPACKAGE(KConfig *_config, QWidget *parent=0, const char *name=0);
// Constructor
~KPACKAGE();
// Destructor
enum { OPEN_READWRITE = 1,
OPEN_READONLY = 2,
OPEN_INSERT = 4 };
void setStatus(const char *s);
// this sets the status bar's string to s
void setPercent(int x);
// this set the status bar's progress to x
QString getStatus();
// this gets the current status string on the status bar
void setMode(int newmode, pkgInterface *type, int refresh);
// This sets the mode to newmode and updates the display accordingly.
void installPackage(const char *name, pkgInterface *type);
// this installs a package
pkgInterface *pkType(const char *fname);
// find type of package
void openNetFile(const char *);
// open a file given a URL
QString fetchNetFile(QString url);
// fetch a file given a URL
static QString getFileName(QString url, QString &cacheName);
// return file name, if not local file cachename is name for cache entry
protected:
void resizeEvent(QResizeEvent *re);
// This is called when the widget is resized
private:
void setupDropzone();
// This sets up the DND drop zone
void setupModeWidgets();
// This sets up the mode widgets (ie management/installation widgets)
void destroyModeWidgets();
// This deletes the mode widgets (ie management/installation widgets)
void setupStatusBar();
// This sets up the status bar
void arrangeWidgets();
// This arranges the widgets in the window (should be called after a
// resize event)
KFileDialog* getFileDialog(const char* captiontext);
///////////// SLOTS --------------------------------------------------------
public slots:
void dropAction(KDNDDropZone *);
// This is called when a URL has been dropped in the drop zone
void modeFinished(int mode, pkgInterface *interface, int refresh);
// This is called when the mode `mode' has finished. KPACKAGE should
// then change modes appropriately
void fileOpen();
// This is called when File->Open is selected from the menu
void clearSelected();
// clear package selections
void expandTree();
void collapseTree();
// expand and collapse file tree
void fileOpenUrl();
// menu item FIle->OpenUrl
void toggleSelect();
// toggle multiselct mode on package tree
void find();
// search for package
void findf();
// search for file in package
void fileQuit();
// This is called when File->Quit is selected from the menu
void reload();
// reload file package infomation
void helpAbout();
// This is called when Help->About is selected from the menu
void helpHelp();
// This is called when Help->Help is selected from the menu
///////////// SIGNALS ------------------------------------------------------
///////////// DATA ---------------------------------------------------------
public:
enum { Management, Installation } ;
// Widget modes
KConfig *config;
// pointer to kconfig object
managementWidget *management;
// management widget
QString save_url;
// save the URL entered
private:
int mode;
// Widget mode
// Menu item identifiers
QFrame *statusbar;
// the status bar
KProgress *processProgress;
// Progress bar for showing progress
QLabel *status;
// The actual status
KDNDDropZone *dropzone;
// The dropzone where URLs can be dropped
KFileDialog *file_dialog;
/// If we load a file from the net this is the corresponding URL
Search *srchdialog;
// find package dialog
FindF *findialog;
// find file dialog
};
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
class KPKG : public KTopLevelWidget
{
Q_OBJECT;
public:
KPKG(KConfig *_config, const char *name=0);
// Constructor
~KPKG();
// Destructor
void add_recent_file(const char* newfile);
// keep list of files accessed
void readSettings();
void writeSettings();
// write and write settings
void saveProperties(KConfig *config);
void readProperties(KConfig *config);
// save and read restart sstate
void disableMenu();
void enableMenu();
// enable/deisable menu elements
void setSelectMode(bool mult);
// set selection mode in menu item
KMenuBar *menubar;
KToolBar *toolbar;
// menu and tool bars
QPopupMenu *recentpopup;
#if QT_VERSION >= 200
KAccelMenu *filemenu, *helpmenu, *packmenu, *options, *caches, *locationpopup;
#else
QPopupMenu *filemenu, *helpmenu, *packmenu, *options, *caches, *locationpopup;
#endif
// The menu bar and its popups
KPACKAGE *kp;
// The part under the menu bar
bool prop_restart;
// indicates a restart from saved state
QStrList urlList;
// For multiple drops save list of URL's for processing
Options *optiondialog;
// Options dialog
KConfig *config ;
// Saved config information
KAccel *keys;
private:
void setupMenu();
// This sets up the menubar
void setupToolBar();
// Setup tool bar
QStrList recent_files;
int toolbar1, toolID, selectID;
// refrences to toolbar and menu items
bool hide_toolbar;
// don't display toolbar
int fobut, fibut, robut;
// toolbar buttons
public slots:
void openRecent(int);
// open file from list of recently opened ones
void setOptions();
// set options
void setKeys();
void saveSettings();
// save config
void toggleToolBar();
// toggle existance of tool bar
void clearPCache();
// Clear package cache
void clearDCache();
// Clear directory cache
protected:
void closeEvent ( QCloseEvent *e);
};
//////////////////////////////////////////////////////////////////////////////
extern KPKG *kpkg;
extern KApplication *app;
extern pkgInterface *kpinterface[];
extern const int kpinterfaceN;
extern void KpMsg(const char *lab, const char *format, const char *str, bool stop);
extern void KpMsgE(const char *format, const char *str, bool stop);
#endif