]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/wxblistctrl.h
c069a4eb6452d96003980d295909827442155538
[bacula/bacula] / bacula / src / wx-console / wxblistctrl.h
1 /*
2  *
3  *   Custom list control, which send "list marked" events when the user right-
4  *   click on a item, or double-click on a mark.
5  *
6  *    Nicolas Boichat, April 2004
7  *
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 WXBLISTCTRL_H
28 #define WXBLISTCTRL_H
29
30 #include "wx/wxprec.h"
31
32 #ifndef WX_PRECOMP
33    #include "wx/wx.h"
34 #endif
35
36 #include <wx/listctrl.h>
37
38 BEGIN_DECLARE_EVENT_TYPES()
39    DECLARE_LOCAL_EVENT_TYPE(wxbLIST_MARKED_EVENT,       1)
40 END_DECLARE_EVENT_TYPES()
41
42 /* Customized list event, used for marking events */
43 class wxbListMarkedEvent: public wxEvent {
44    public:
45       wxbListMarkedEvent(int id);
46       ~wxbListMarkedEvent();
47       wxbListMarkedEvent(const wxbListMarkedEvent& te);
48       virtual wxEvent *Clone() const;
49
50 };
51
52 typedef void (wxEvtHandler::*wxListMarkedEventFunction)(wxbListMarkedEvent&);
53
54 #define EVT_LIST_MARKED_EVENT(id, fn) \
55     DECLARE_EVENT_TABLE_ENTRY( \
56         wxbLIST_MARKED_EVENT, id, wxID_ANY, \
57         (wxObjectEventFunction)(wxEventFunction)(wxListMarkedEventFunction)&fn, \
58         (wxObject *) NULL \
59     ),
60
61 /* Customized list, which transmit double clicks on images */
62 class wxbListCtrl: public wxListCtrl {
63    public:
64       wxbListCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
65       ~wxbListCtrl();
66       
67    private:
68       void OnDoubleClicked(wxMouseEvent& event);
69       void OnRightClicked(wxMouseEvent& event);
70       
71       DECLARE_EVENT_TABLE();
72 };
73
74 #endif // WXBTREECTRL_H
75