summaryrefslogtreecommitdiff
path: root/LiteEditor/simpletable.h
blob: 6900014dfb1f123d062b41fad1f2a25585b4e2e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright            : (C) 2008 by Eran Ifrah
// file name            : simpletable.h
//
// -------------------------------------------------------------------------
// A
//              _____           _      _     _ _
//             /  __ \         | |    | |   (_) |
//             | /  \/ ___   __| | ___| |    _| |_ ___
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/
//              \____/\___/ \__,_|\___\_____/_|\__\___|
//
//                                                  F i l e
//
//    This program is free software; you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation; either version 2 of the License, or
//    (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
 #ifndef __simpletable__
#define __simpletable__

/**
@file
Subclass of SimpleTableBase, which is generated by wxFormBuilder.
*/

#include "simpletablebase.h"

/** Implementing SimpleTableBase */
class WatchesTable : public SimpleTableBase
{
	long m_selectedId;
	wxMenu *m_rclickMenu;

private:
	wxString GetColumnText(long indx, long column);
	void SetColumnText ( long indx, long column, const wxString &rText );
	long FindExpressionItem(const wxString &expression);

protected:
	// Handlers for SimpleTableBase events.
	void OnItemActivated( wxListEvent& event );
	void OnItemSelected( wxListEvent& event );
	void OnListKeyDown( wxListEvent& event );
	void OnItemRightClick(wxListEvent& event);
	void InitTable();
	void OnNewWatch(wxCommandEvent &event);
	void OnNewWatchUI(wxUpdateUIEvent &event);
	void OnDeleteAll(wxCommandEvent &event);
	void OnDeleteAllUI(wxUpdateUIEvent &event);
	void OnDeleteWatch(wxCommandEvent &event);
	void OnDeleteWatchUI(wxUpdateUIEvent &event);
	void OnItemDeSelected(wxListEvent &event);
	void DoShowMoreDetails(long item);
	void OnMenuExpandExpr(wxCommandEvent &event);
	void OnMenuEditExpr(wxCommandEvent &event);
	void OnMenuCopyExpr(wxCommandEvent &event);
	void OnMenuCopyValue(wxCommandEvent &event);
	void OnMenuCopyBoth(wxCommandEvent &event);
	void OnMenuDerefExpr(wxCommandEvent &event);
	void OnListEditLabelEnd(wxListEvent &event);
	void OnDisplayFormat(wxCommandEvent &event);

	void OnNewWatch_Iternal(wxCommandEvent &event);
public:
	/** Constructor */
	WatchesTable( wxWindow* parent );
	virtual ~WatchesTable();

	void AddExpression(const wxString &expr);
	void UpdateExpression(const wxString &expr, const wxString &value);
	wxArrayString GetExpressions();
	void Clear();
	void RefreshValues();
	wxString GetDisplayFormat();
};

#endif // __simpletable__