]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/wxbrestorepanel.h
Removed unused variable.
[bacula/bacula] / bacula / src / wx-console / wxbrestorepanel.h
1 /*
2    Copyright (C) 2004 Kern Sibbald and John Walker
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License
6    as published by the Free Software Foundation; either version 2
7    of the License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #ifndef WXBRESTOREPANEL_H
20 #define WXBRESTOREPANEL_H
21
22 #include "wx/wxprec.h"
23
24 #ifndef WX_PRECOMP
25    #include "wx/wx.h"
26 #endif
27
28 #include "wxbtableparser.h"
29
30 #include <wx/thread.h>
31 #include <wx/listctrl.h>
32 #include <wx/treectrl.h>
33 #include <wx/gauge.h>
34
35 #include "wxbpanel.h"
36
37 #include "wxbtreectrl.h"
38 #include "wxblistctrl.h"
39
40 /*
41  * wxbPanel for restoring files
42  */
43 class wxbRestorePanel : public wxbPanel
44 {
45    public:
46       wxbRestorePanel(wxWindow* parent);
47       ~wxbRestorePanel();
48
49       /* wxbPanel overloadings */
50       virtual wxString GetTitle();
51       virtual void Print(wxString str, int status);
52
53    private:
54 /* Commands called by events handler */
55
56       /* The main button has been clicked */
57       void CmdStart();
58
59        /* List jobs for a specified client */
60       void CmdListJobs();
61
62       /* List files and directories for a specified tree item */
63       void CmdList(wxTreeItemId item);
64
65       /* Mark a treeitem (directory) or a listitem (file or directory) */
66       void CmdMark(wxTreeItemId treeitem, long listitem);
67
68 /* General functions and variables */
69       bool ended; /* The last command send has finished */
70
71       long filemessages; /* When restoring, number of files restored */
72       long totfilemessages; /* When restoring, number of files to be restored */
73
74       /* When listing a directory, sets if file list must be updated
75        * (otherwise only the tree structure is updated)
76        */
77       bool updatelist;
78
79       wxbTableParser* tableParser; /* Used to parse tables */
80
81       /* Parse a table in tableParser */
82       void CreateAndWaitForParser(wxString cmd);
83
84       /* Run a command, and waits until result is fully received. */
85       void WaitForEnd(wxString cmd);
86
87       /* Run a dir command, and waits until result is fully received. */
88       void WaitForList(wxTreeItemId item, bool updatelist);
89
90       /* Parse dir command results. */
91       wxString* ParseList(wxString line);
92
93       /* Sets a list item state, and update its parents and children if it is a directory */
94       void SetListItemState(long listitem, int newstate);
95
96       /* Sets a tree item state, and update its children, parents and list (if necessary) */
97       void SetTreeItemState(wxTreeItemId item, int newstate);
98       
99       /* Update a tree item parents' state */
100       void UpdateTreeItemState(wxTreeItemId item);
101
102       /* Refresh a tree item, and all its children. */
103       void RefreshTree(wxTreeItemId item);
104
105 /* Status related */
106       enum status_enum
107       {
108          disabled,  // The panel is not activated
109          entered,   // The panel is activated
110          choosing,  // The user is choosing files to restore
111          listing,   // Dir listing is in progress
112          restoring, // Bacula is restoring files
113          finished   // Retore done
114       };
115
116       status_enum status;
117
118       /* Set current status by enabling/disabling components */
119       void setStatus(status_enum newstatus);
120
121 /* UI related */
122       bool working; // A command is running, discard GUI events
123       wxTreeItemId currentTreeItem; // Currently selected tree item
124
125 /* Event handling */
126       void OnStart(wxEvent& WXUNUSED(event));
127       void OnTreeChanging(wxTreeEvent& event);
128       void OnTreeExpanding(wxTreeEvent& event);
129       void OnTreeChanged(wxTreeEvent& event);
130       void OnTreeMarked(wxbTreeMarkedEvent& event);
131       void OnListMarked(wxbListMarkedEvent& event);
132       void OnListActivated(wxListEvent& event);
133       void OnClientChoiceChanged(wxCommandEvent& event);
134
135 /* Components */
136       wxImageList* imagelist; //image list for tree and list
137
138       wxButton* start;
139       wxChoice* clientChoice;
140       wxChoice* jobChoice;
141       wxbTreeCtrl* tree;
142       wxbListCtrl* list;
143       wxGauge* gauge;
144
145       DECLARE_EVENT_TABLE();
146 };
147
148 #endif // WXBRESTOREPANEL_H
149