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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
//////////////////////////////////////////////////////////////////////
// This file was auto-generated by codelite's wxCrafter Plugin
// wxCrafter project file: newquickwatch.wxcp
// Do not modify this file by hand!
//////////////////////////////////////////////////////////////////////
#include "newquickwatch.h"
// Declare the bitmap loading function
extern void wxCB786InitBitmapResources();
static bool bBitmapLoaded = false;
clDebuggerTipWindowBase::clDebuggerTipWindowBase(wxWindow* parent,long style)
: wxPopupWindow(parent, style)
{
if ( !bBitmapLoaded ) {
// We need to initialise the default bitmap handler
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
wxCB786InitBitmapResources();
bBitmapLoaded = true;
}
wxBoxSizer* boxSizer4 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(boxSizer4);
m_panel46 = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), wxTAB_TRAVERSAL|wxBORDER_SIMPLE);
boxSizer4->Add(m_panel46, 1, wxEXPAND, WXC_FROM_DIP(5));
wxBoxSizer* boxSizer48 = new wxBoxSizer(wxVERTICAL);
m_panel46->SetSizer(boxSizer48);
m_scrollWin6 = new wxScrolledWindow(m_panel46, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(m_panel46, wxSize(200,100)), wxBORDER_NONE|wxHSCROLL|wxVSCROLL);
m_scrollWin6->SetScrollRate(5, 5);
boxSizer48->Add(m_scrollWin6, 1, wxEXPAND, WXC_FROM_DIP(2));
wxBoxSizer* bSizer5 = new wxBoxSizer(wxVERTICAL);
m_scrollWin6->SetSizer(bSizer5);
m_treeCtrl = new wxTreeCtrl(m_scrollWin6, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(m_scrollWin6, wxSize(-1,-1)), wxTR_DEFAULT_STYLE|wxTR_SINGLE|wxBORDER_NONE);
bSizer5->Add(m_treeCtrl, 1, wxEXPAND, WXC_FROM_DIP(0));
m_scrollWin6->SetMinSize(wxSize(200,100));
m_panelStatusBar = new wxPanel(m_panel46, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(m_panel46, wxSize(-1,22)), wxTAB_TRAVERSAL);
boxSizer48->Add(m_panelStatusBar, 0, wxEXPAND, WXC_FROM_DIP(2));
wxBoxSizer* boxSizer42 = new wxBoxSizer(wxVERTICAL);
m_panelStatusBar->SetSizer(boxSizer42);
m_staticBitmap44 = new wxStaticBitmap(m_panelStatusBar, wxID_ANY, wxXmlResource::Get()->LoadBitmap(wxT("resize")), wxDefaultPosition, wxDLG_UNIT(m_panelStatusBar, wxSize(16,16)), 0 );
boxSizer42->Add(m_staticBitmap44, 0, wxALL|wxALIGN_RIGHT, WXC_FROM_DIP(5));
SetName(wxT("clDebuggerTipWindowBase"));
SetSize(-1,-1);
if (GetSizer()) {
GetSizer()->Fit(this);
}
// Connect events
m_treeCtrl->Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(clDebuggerTipWindowBase::OnKeyDown), NULL, this);
m_treeCtrl->Connect(wxEVT_LEFT_DOWN, wxMouseEventHandler(clDebuggerTipWindowBase::OnLeftDown), NULL, this);
m_treeCtrl->Connect(wxEVT_MOTION, wxMouseEventHandler(clDebuggerTipWindowBase::OnMouseMove), NULL, this);
m_treeCtrl->Connect(wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxTreeEventHandler(clDebuggerTipWindowBase::OnItemExpanded), NULL, this);
m_treeCtrl->Connect(wxEVT_COMMAND_TREE_ITEM_EXPANDING, wxTreeEventHandler(clDebuggerTipWindowBase::OnExpandItem), NULL, this);
m_treeCtrl->Connect(wxEVT_COMMAND_TREE_ITEM_MENU, wxTreeEventHandler(clDebuggerTipWindowBase::OnItemMenu), NULL, this);
m_panelStatusBar->Connect(wxEVT_LEFT_UP, wxMouseEventHandler(clDebuggerTipWindowBase::OnStatusLeftUp), NULL, this);
m_panelStatusBar->Connect(wxEVT_MOTION, wxMouseEventHandler(clDebuggerTipWindowBase::OnStatuMotion), NULL, this);
m_staticBitmap44->Connect(wxEVT_LEFT_DOWN, wxMouseEventHandler(clDebuggerTipWindowBase::OnTipLeftDown), NULL, this);
}
clDebuggerTipWindowBase::~clDebuggerTipWindowBase()
{
m_treeCtrl->Disconnect(wxEVT_KEY_DOWN, wxKeyEventHandler(clDebuggerTipWindowBase::OnKeyDown), NULL, this);
m_treeCtrl->Disconnect(wxEVT_LEFT_DOWN, wxMouseEventHandler(clDebuggerTipWindowBase::OnLeftDown), NULL, this);
m_treeCtrl->Disconnect(wxEVT_MOTION, wxMouseEventHandler(clDebuggerTipWindowBase::OnMouseMove), NULL, this);
m_treeCtrl->Disconnect(wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxTreeEventHandler(clDebuggerTipWindowBase::OnItemExpanded), NULL, this);
m_treeCtrl->Disconnect(wxEVT_COMMAND_TREE_ITEM_EXPANDING, wxTreeEventHandler(clDebuggerTipWindowBase::OnExpandItem), NULL, this);
m_treeCtrl->Disconnect(wxEVT_COMMAND_TREE_ITEM_MENU, wxTreeEventHandler(clDebuggerTipWindowBase::OnItemMenu), NULL, this);
m_panelStatusBar->Disconnect(wxEVT_LEFT_UP, wxMouseEventHandler(clDebuggerTipWindowBase::OnStatusLeftUp), NULL, this);
m_panelStatusBar->Disconnect(wxEVT_MOTION, wxMouseEventHandler(clDebuggerTipWindowBase::OnStatuMotion), NULL, this);
m_staticBitmap44->Disconnect(wxEVT_LEFT_DOWN, wxMouseEventHandler(clDebuggerTipWindowBase::OnTipLeftDown), NULL, this);
}
clDebuggerEditItemDlgBase::clDebuggerEditItemDlgBase(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style)
: wxDialog(parent, id, title, pos, size, style)
{
if ( !bBitmapLoaded ) {
// We need to initialise the default bitmap handler
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
wxCB786InitBitmapResources();
bBitmapLoaded = true;
}
wxBoxSizer* boxSizer24 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(boxSizer24);
m_panel32 = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), wxTAB_TRAVERSAL);
boxSizer24->Add(m_panel32, 1, wxALL|wxEXPAND, WXC_FROM_DIP(5));
wxBoxSizer* boxSizer34 = new wxBoxSizer(wxVERTICAL);
m_panel32->SetSizer(boxSizer34);
m_staticText36 = new wxStaticText(m_panel32, wxID_ANY, _("Enter new expression:"), wxDefaultPosition, wxDLG_UNIT(m_panel32, wxSize(-1,-1)), 0);
boxSizer34->Add(m_staticText36, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, WXC_FROM_DIP(5));
m_textCtrl38 = new wxTextCtrl(m_panel32, wxID_ANY, wxT(""), wxDefaultPosition, wxDLG_UNIT(m_panel32, wxSize(-1,-1)), 0);
#if wxVERSION_NUMBER >= 3000
m_textCtrl38->SetHint(wxT(""));
#endif
boxSizer34->Add(m_textCtrl38, 0, wxALL|wxEXPAND, WXC_FROM_DIP(5));
wxBoxSizer* boxSizer26 = new wxBoxSizer(wxHORIZONTAL);
boxSizer24->Add(boxSizer26, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, WXC_FROM_DIP(5));
m_button28 = new wxButton(this, wxID_OK, _("&OK"), wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), 0);
m_button28->SetDefault();
boxSizer26->Add(m_button28, 0, wxALL, WXC_FROM_DIP(5));
m_button30 = new wxButton(this, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), 0);
boxSizer26->Add(m_button30, 0, wxALL, WXC_FROM_DIP(5));
SetName(wxT("clDebuggerEditItemDlgBase"));
SetMinClientSize(wxSize(400,-1));
SetSize(400,-1);
if (GetSizer()) {
GetSizer()->Fit(this);
}
if(GetParent()) {
CentreOnParent(wxBOTH);
} else {
CentreOnScreen(wxBOTH);
}
#if wxVERSION_NUMBER >= 2900
if(!wxPersistenceManager::Get().Find(this)) {
wxPersistenceManager::Get().RegisterAndRestore(this);
} else {
wxPersistenceManager::Get().Restore(this);
}
#endif
}
clDebuggerEditItemDlgBase::~clDebuggerEditItemDlgBase()
{
}
|