]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/wx-console/wxbrestorepanel.h
- Fix ANSI labels to put EOF1 and EOF2 after each file mark.
[bacula/bacula] / bacula / src / wx-console / wxbrestorepanel.h
index 62e5d480ec98d02dfa7c387db705dec4099b11f5..56a172494b87daf807742e418ee67f71a515f337 100644 (file)
@@ -4,6 +4,7 @@
  *
  *    Nicolas Boichat, April-May 2004
  *
+ *    Version $Id$
  */
 /*
    Copyright (C) 2004 Kern Sibbald and John Walker
@@ -94,19 +95,6 @@ class wxbRestorePanel : public wxbPanel
       long totfilemessages; /* When restoring, number of files to be restored */
       wxString jobid;
 
-      /* Parse a table in tableParser */
-      wxbTableParser* CreateAndWaitForParser(wxString cmd);
-
-      /* Run a command, and waits until result is fully received,
-       * if keepresults is true, returns a valid pointer to a wxbDataTokenizer
-       * containing the data. */
-      wxbDataTokenizer* WaitForEnd(wxString cmd, bool keepresults = false, bool linebyline = true);
-
-      /* Run a command, and waits until prompt result is fully received,
-       * if keepresults is true, returns a valid pointer to a wxbPromptParser
-       * containing the data. */
-      wxbPromptParser* WaitForPrompt(wxString cmd, bool keepresults = false);
-
       /* Run a dir command, and waits until result is fully received.
        * If recurse is true, update the children too. */
       void UpdateTreeItem(wxTreeItemId item, bool updatelist, bool recurse);
@@ -119,33 +107,33 @@ class wxbRestorePanel : public wxbPanel
 
       /* Sets a tree item state, and update its children, parents and list (if necessary) */
       void SetTreeItemState(wxTreeItemId item, int newstate);
-      
+
       /* Update a tree item parents' state */
       void UpdateTreeItemState(wxTreeItemId item);
 
       /* Refresh the whole tree. */
       void RefreshTree();
-      
+
       /* Refresh file list */
       void RefreshList();
-      
+
       /* Update first config, adapting settings to the job name selected */
       void UpdateFirstConfig();
-      
+
       /* Update second config */
       bool UpdateSecondConfig(wxbDataTokenizer* dt);
-      
+
 /* Status related */
       enum status_enum
       {
-         disabled,    // The panel is not activatable
-         activable,   // The panel is activable, but not activated
-         entered,     // The panel is activated
-         choosing,    // The user is choosing files to restore
-         listing,     // Dir listing is in progress
-         configuring, // The user is configuring restore process
-         restoring,   // Bacula is restoring files
-         finished     // Retore done (state will change in activable)
+        disabled,    // The panel is not activatable
+        activable,   // The panel is activable, but not activated
+        entered,     // The panel is activated
+        choosing,    // The user is choosing files to restore
+        listing,     // Dir listing is in progress
+        configuring, // The user is configuring restore process
+        restoring,   // Bacula is restoring files
+        finished     // Retore done (state will change in activable)
       };
 
       status_enum status;
@@ -178,7 +166,7 @@ class wxbRestorePanel : public wxbPanel
 
       void OnStart(wxCommandEvent& event);
       void OnCancel(wxCommandEvent& event);
-      
+
       void OnTreeChanging(wxTreeEvent& event);
       void OnTreeExpanding(wxTreeEvent& event);
       void OnTreeChanged(wxTreeEvent& event);
@@ -186,14 +174,14 @@ class wxbRestorePanel : public wxbPanel
       void OnTreeAdd(wxCommandEvent& event);
       void OnTreeRemove(wxCommandEvent& event);
       void OnTreeRefresh(wxCommandEvent& event);
-      
+
       void OnListMarked(wxbListMarkedEvent& event);
       void OnListActivated(wxListEvent& event);
       void OnListChanged(wxListEvent& event);
       void OnListAdd(wxCommandEvent& event);
       void OnListRemove(wxCommandEvent& event);
       void OnListRefresh(wxCommandEvent& event);
-      
+
       void OnConfigUpdated(wxCommandEvent& event);
       void OnConfigOk(wxCommandEvent& WXUNUSED(event));
       void OnConfigApply(wxCommandEvent& WXUNUSED(event));
@@ -209,25 +197,24 @@ class wxbRestorePanel : public wxbPanel
 
       wxButton* start;
       wxButton* cancel;
-      
+
       wxbTreeCtrl* tree;
       wxButton* treeadd;
       wxButton* treeremove;
       wxButton* treerefresh;
-      
+
       wxbListCtrl* list;
       wxButton* listadd;
       wxButton* listremove;
       wxButton* listrefresh;
-      
+
       wxGauge* gauge;
-     
+
       long cfgUpdated; //keeps which config fields have been updated
 
       friend class wxbSplitterWindow;
 
-      DECLARE_EVENT_TABLE();    
+      DECLARE_EVENT_TABLE();
 };
 
 #endif // WXBRESTOREPANEL_H
-