Menu

[r19]: / src / insertpanel.h  Maximize  Restore  History

Download this file

45 lines (39 with data), 989 Bytes

 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
#ifndef INSERT_PANEL_H
#define INSERT_PANEL_H
#include <wx/wx.h>
#include "xmldoc.h"
#include "xmlcopyeditor.h"
enum {
INSERT_PANEL_TYPE_CHILD = 0,
INSERT_PANEL_TYPE_SIBLING,
INSERT_PANEL_TYPE_ENTITY
};
class InsertPanel : public wxPanel
{
public:
InsertPanel(
wxWindow *parent,
int id,
int type = INSERT_PANEL_TYPE_CHILD);
void update(
XmlDoc *doc,
const wxString& parent = wxEmptyString,
const wxString& grandparent = wxEmptyString);
void OnEnter(wxCommandEvent& event);
void OnDoubleClick(wxCommandEvent& event);
void OnListSelection(wxCommandEvent& event);
void setEditFocus();
void OnSize(wxSizeEvent& e);
void adjustSize();
private:
MyFrame *parentWindow;
int type;
wxBoxSizer *sizer;
wxTextCtrl *edit;
wxListBox *list;
wxString parent, grandparent, lastParent;
XmlDoc *doc, *lastDoc;
void handleChoice(const wxString& choice);
DECLARE_EVENT_TABLE()
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.