]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/wxbhistorytextctrl.h
- general : implemented command completion and interactive help.
[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    Copyright (C) 2004 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License
14    as published by the Free Software Foundation; either version 2
15    of the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef WXBHISTORYTEXTCTRL
28 #define WXBHISTORYTEXTCTRL
29
30 #include "wx/wxprec.h"
31
32 #ifndef WX_PRECOMP
33    #include "wx/wx.h"
34 #endif
35
36 #include <wx/treectrl.h>
37
38 WX_DECLARE_STRING_HASH_MAP( wxString, wxbCommands );
39
40 class wxbHistoryTextCtrl: public wxTextCtrl {
41    public:
42       wxbHistoryTextCtrl(wxStaticText* help, wxWindow* parent, wxWindowID id, 
43          const wxString& value = "", const wxPoint& pos = wxDefaultPosition,
44          const wxSize& size = wxDefaultSize, 
45          const wxValidator& validator = wxDefaultValidator, 
46          const wxString& name = wxTextCtrlNameStr);
47          
48       void HistoryAdd(wxString cmd);
49       
50       void AddCommand(wxString cmd, wxString description);
51       void ClearCommandList();
52       
53       virtual void SetValue(const wxString& value);
54    private:
55       wxArrayString history;
56       wxbCommands commands;
57       int index;
58       wxStaticText* help;
59       
60       void OnKeyUp(wxKeyEvent& event);
61       void OnKeyDown(wxKeyEvent& event);
62       
63       DECLARE_EVENT_TABLE();
64 };
65
66 #endif //WXBHISTORYTEXTCTRL