~ubuntu-branches/ubuntu/karmic/digikam/karmic-backports

« back to all changes in this revision

Viewing changes to utilities/queuemanager/queuemgrwindow_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Ubuntu Archive Auto-Backport
  • Date: 2009-12-07 19:03:53 UTC
  • mfrom: (54.1.4 lucid)
  • Revision ID: james.westby@ubuntu.com-20091207190353-oara3lenjxymto3i
Tags: 2:1.0.0~rc-1ubuntu1~karmic1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef QUEUEMGRWINDOWPRIVATE_H
25
25
#define QUEUEMGRWINDOWPRIVATE_H
26
26
 
 
27
// Qt includes
 
28
 
 
29
#include <qstring.h>
 
30
 
27
31
// KDE includes
28
32
 
29
33
#include <kaction.h>
32
36
// Local includes
33
37
 
34
38
#include "statusprogressbar.h"
 
39
#include "sidebar.h"
35
40
 
36
41
namespace Digikam
37
42
{
43
48
 
44
49
public:
45
50
 
 
51
    const static QString TOP_SPLITTER_CONFIG_KEY;
 
52
    const static QString BOTTOM_SPLITTER_CONFIG_KEY;
 
53
    const static QString VERTICAL_SPLITTER_CONFIG_KEY;
 
54
 
46
55
    QueueMgrWindowPriv()
47
56
    {
48
57
        fullScreenHideToolBar  = false;
67
76
        rawCameraListAction    = 0;
68
77
        libsInfoAction         = 0;
69
78
        dbStatAction           = 0;
 
79
        topSplitter            = 0;
 
80
        bottomSplitter         = 0;
 
81
        verticalSplitter       = 0;
70
82
        themeMenuAction        = 0;
71
83
        contributeAction       = 0;
72
84
        assignedList           = 0;
85
97
        progressPix            = SmallIcon("process-working", 22);
86
98
    }
87
99
 
88
 
    bool                       fullScreenHideToolBar;
89
 
    bool                       fullScreen;
90
 
    bool                       removeFullScreenButton;
91
 
    bool                       busy;
92
 
 
93
 
    int                        progressCount;
94
 
 
95
 
    QTimer                    *progressTimer;
96
 
 
97
 
    QPixmap                    progressPix;
98
 
 
99
 
    QLabel                    *statusLabel;
100
 
 
101
 
    KAction                   *clearQueueAction;
102
 
    KAction                   *removeItemsSelAction;
103
 
    QAction                   *removeItemsDoneAction;
104
 
    QAction                   *fullScreenAction;
105
 
    QAction                   *moveUpToolAction;
106
 
    QAction                   *moveDownToolAction;
107
 
    QAction                   *removeToolAction;
108
 
    QAction                   *clearToolsAction;
109
 
 
110
 
    KAction                   *runAction;
111
 
    KAction                   *stopAction;
112
 
    KAction                   *removeQueueAction;
113
 
    KAction                   *newQueueAction;
114
 
    KAction                   *donateMoneyAction;
115
 
    KAction                   *contributeAction;
116
 
    KAction                   *rawCameraListAction;
117
 
    KAction                   *libsInfoAction;
118
 
    KAction                   *dbStatAction;
119
 
 
120
 
    KToggleAction             *showMenuBarAction;
121
 
 
122
 
    KSelectAction             *themeMenuAction;
123
 
 
124
 
    DLogoAction               *animLogo;
125
 
    QueueListViewItem         *currentProcessItem;
126
 
 
127
 
    AssignedListViewItem      *currentTaskItem;
128
 
 
129
 
    BatchToolsManager         *batchToolsMgr;
130
 
 
131
 
    StatusProgressBar         *statusProgressBar;
132
 
 
133
 
    ActionThread              *thread;
134
 
 
135
 
    ToolsView                 *toolsView;
136
 
    ToolSettingsView          *toolSettings;
137
 
    AssignedListView          *assignedList;
138
 
    QueuePool                 *queuePool;
139
 
    QueueSettingsView         *queueSettingsView;
140
 
 
141
 
    QueuePoolItemsList         itemsList;
 
100
    bool                   fullScreenHideToolBar;
 
101
    bool                   fullScreen;
 
102
    bool                   removeFullScreenButton;
 
103
    bool                   busy;
 
104
 
 
105
    int                    progressCount;
 
106
 
 
107
    QTimer*                progressTimer;
 
108
 
 
109
    QPixmap                progressPix;
 
110
 
 
111
    QLabel*                statusLabel;
 
112
 
 
113
    KAction*               clearQueueAction;
 
114
    KAction*               removeItemsSelAction;
 
115
    QAction*               removeItemsDoneAction;
 
116
    QAction*               fullScreenAction;
 
117
    QAction*               moveUpToolAction;
 
118
    QAction*               moveDownToolAction;
 
119
    QAction*               removeToolAction;
 
120
    QAction*               clearToolsAction;
 
121
 
 
122
    KAction*               runAction;
 
123
    KAction*               stopAction;
 
124
    KAction*               removeQueueAction;
 
125
    KAction*               newQueueAction;
 
126
    KAction*               donateMoneyAction;
 
127
    KAction*               contributeAction;
 
128
    KAction*               rawCameraListAction;
 
129
    KAction*               libsInfoAction;
 
130
    KAction*               dbStatAction;
 
131
 
 
132
    SidebarSplitter*       topSplitter;
 
133
    SidebarSplitter*       bottomSplitter;
 
134
    SidebarSplitter*       verticalSplitter;
 
135
 
 
136
    KToggleAction*         showMenuBarAction;
 
137
 
 
138
    KSelectAction*         themeMenuAction;
 
139
 
 
140
    DLogoAction*           animLogo;
 
141
    QueueListViewItem*     currentProcessItem;
 
142
 
 
143
    AssignedListViewItem*  currentTaskItem;
 
144
 
 
145
    BatchToolsManager*     batchToolsMgr;
 
146
 
 
147
    StatusProgressBar*     statusProgressBar;
 
148
 
 
149
    ActionThread*          thread;
 
150
 
 
151
    ToolsView*             toolsView;
 
152
    ToolSettingsView*      toolSettings;
 
153
    AssignedListView*      assignedList;
 
154
    QueuePool*             queuePool;
 
155
    QueueSettingsView*     queueSettingsView;
 
156
 
 
157
    QueuePoolItemsList     itemsList;
142
158
};
143
159
 
144
160
}  // namespace Digikam