]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/wx-console/wxbtableparser.h
Add version strings
[bacula/bacula] / bacula / src / wx-console / wxbtableparser.h
index 0f07aae30cc9d129907dbcefccf96070518c188e..dfce4989e41e4dfa66943a5f75e14a00dd7a0e6e 100644 (file)
@@ -11,6 +11,7 @@
  *
  *    Nicolas Boichat, April 2004
  *
+ *    Version $Id$
  */
 /*
    Copyright (C) 2004 Kern Sibbald and John Walker
 
 #include "wxbutils.h"
 
-#include <wx/hashmap.h>
+#include <wx/dynarray.h>
 
-/* int-indexed array of wxString, used for one line */
-WX_DECLARE_HASH_MAP( int, wxString, wxIntegerHash, wxIntegerEqual, wxbTableRow );
-/* int-indexed array of wxbTableRow, contains the whole table */
-WX_DECLARE_HASH_MAP( int, wxbTableRow, wxIntegerHash, wxIntegerEqual, wxbTable );
+/* 
+ * Allow the use of Object Array (auto-deletion, object returned as themselves 
+ * and not as pointers)
+ */
+class wxbArrayString: public wxArrayString, public wxObject {
+   public:
+      wxbArrayString(int n = 1);
+      virtual ~wxbArrayString();
+};
+
+WX_DECLARE_OBJARRAY( wxbArrayString, wxbTable );
 
 /*
  * Class used to parse tables received from director. Data can be accessed with
@@ -67,10 +75,9 @@ class wxbTableParser: public wxbTable, public wxbDataParser
       virtual ~wxbTableParser();
 
       /*
-       *   Receives director information, forwarded by the wxbPanel which
-       *  uses this parser.
+       *   Receives data to analyse.
        */
-      virtual void Print(wxString str, int status);
+      virtual bool Analyse(wxString str, int status);
 
       /*
        *   Return true table parsing has finished.
@@ -80,9 +87,9 @@ class wxbTableParser: public wxbTable, public wxbDataParser
       /*
        *   Returns table header as an array of wxStrings.
        */
-      wxbTableRow* GetHeader();
+      const wxbArrayString& GetHeader();
    private:
-      wxbTableRow tableHeader;
+      wxbArrayString tableHeader;
 
       /*
        * 0 - Table has not begun
@@ -94,4 +101,3 @@ class wxbTableParser: public wxbTable, public wxbDataParser
 };
 
 #endif // WXBTABLEPARSER_H
-