]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/wxbhistorytextctrl.h
Remove SQLite2 scripts
[bacula/bacula] / bacula / src / wx-console / wxbhistorytextctrl.h
1 /*
2  *
3  *   Text control with an history of commands typed
4  *
5  *    Nicolas Boichat, July 2004
6  *
7  *    Version $Id$
8  */
9 /*
10    Bacula® - The Network Backup Solution
11
12    Copyright (C) 2004-2006 Free Software Foundation Europe e.V.
13
14    The main author of Bacula is Kern Sibbald, with contributions from
15    many others, a complete list can be found in the file AUTHORS.
16    This program is Free Software; you can redistribute it and/or
17    modify it under the terms of version two of the GNU General Public
18    License as published by the Free Software Foundation and included
19    in the file LICENSE.
20
21    This program is distributed in the hope that it will be useful, but
22    WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24    General Public License for more details.
25
26    You should have received a copy of the GNU General Public License
27    along with this program; if not, write to the Free Software
28    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
29    02110-1301, USA.
30
31    Bacula® is a registered trademark of Kern Sibbald.
32    The licensor of Bacula is the Free Software Foundation Europe
33    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
34    Switzerland, email:ftf@fsfeurope.org.
35 */
36
37 #ifndef WXBHISTORYTEXTCTRL
38 #define WXBHISTORYTEXTCTRL
39
40 #include "wx/wxprec.h"
41
42 #ifndef WX_PRECOMP
43    #include "wx/wx.h"
44 #endif
45
46 #include <wx/treectrl.h>
47 #include <wx/hashmap.h>
48
49 WX_DECLARE_STRING_HASH_MAP( wxString, wxbCommands );
50
51 class wxbHistoryTextCtrl: public wxTextCtrl {
52    public:
53       wxbHistoryTextCtrl(wxStaticText* help, wxWindow* parent, wxWindowID id,
54          const wxString& value = wxT(""), const wxPoint& pos = wxDefaultPosition,
55          const wxSize& size = wxDefaultSize,
56          const wxValidator& validator = wxDefaultValidator,
57          const wxString& name = wxTextCtrlNameStr);
58
59       void HistoryAdd(wxString cmd);
60
61       void AddCommand(wxString cmd, wxString description);
62       void ClearCommandList();
63
64       virtual void SetValue(const wxString& value);
65    private:
66       wxArrayString history;
67       wxbCommands commands;
68       int index;
69       wxStaticText* help;
70
71       void OnKeyUp(wxKeyEvent& event);
72       void OnKeyDown(wxKeyEvent& event);
73
74       DECLARE_EVENT_TABLE();
75 };
76
77 #endif //WXBHISTORYTEXTCTRL