Searched refs:wxFrame (Results 251 - 275 of 416) sorted by relevance

<<11121314151617

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dstatbar.cpp67 wxFrame *frame = wxDynamicCast(GetParent(), wxFrame);
H A Ddocview.cpp85 IMPLEMENT_CLASS(wxDocChildFrame, wxFrame)
86 IMPLEMENT_CLASS(wxDocParentFrame, wxFrame)
628 m_viewFrame = (wxFrame *) NULL;
1048 wxPreviewFrame *frame = new wxPreviewFrame(preview, (wxFrame *)wxTheApp->GetTopWindow(), _("Print Preview"),
1545 !focusWindow->IsKindOf(CLASSINFO(wxFrame)))
1850 BEGIN_EVENT_TABLE(wxDocChildFrame, wxFrame)
1857 wxFrame *frame,
1864 : wxFrame(frame, id, title, pos, size, style, name)
1892 wxFrame::OnActivate(event);
1926 BEGIN_EVENT_TABLE(wxDocParentFrame, wxFrame)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dtipwin.cpp122 : wxFrame(parent, wxID_ANY, wxEmptyString,
231 wxFrame::Close();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/deprecated/treelay/
H A Dtreelay.cpp145 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
155 wxFrame(parent, wxID_ANY, title, pos, size)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/gizmos/dynsash_switch/
H A Ddynsash_switch.cpp252 wxFrame *frame;
255 frame = new wxFrame(NULL, wxID_ANY, wxT("Dynamic Sash Window Switch Demo"));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/docvwmdi/
H A Ddocview.cpp63 frame = new MyFrame((wxDocManager *) m_docManager, (wxFrame *) NULL,
198 MyFrame::MyFrame(wxDocManager *manager, wxFrame *frame, const wxString& title,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dtaskbarx11.cpp60 class WXDLLIMPEXP_ADV wxTaskBarIconAreaBase : public wxFrame
64 : wxFrame(NULL, wxID_ANY, _T("systray icon"),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dmdi.h39 class WXDLLIMPEXP_CORE wxMDIParentFrame: public wxFrame
99 class WXDLLIMPEXP_CORE wxMDIChildFrame: public wxFrame
185 // override wxFrame methods to not do anything
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dmdi.h29 class WXDLLEXPORT wxMDIParentFrame: public wxFrame
115 class WXDLLEXPORT wxMDIChildFrame: public wxFrame
150 // Override wxFrame operations
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dmdi.h26 class WXDLLEXPORT wxMDIParentFrame : public wxFrame
125 class WXDLLEXPORT wxMDIChildFrame : public wxFrame
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/aui/
H A Dtabmdi.cpp54 IMPLEMENT_DYNAMIC_CLASS(wxAuiMDIParentFrame, wxFrame)
56 BEGIN_EVENT_TABLE(wxAuiMDIParentFrame, wxFrame)
113 wxFrame::Create(parent, id, title, pos, size, style, name);
169 wxFrame::SetMenuBar(pMenuBar);
353 wxFrame::DoGetClientSize(width, height);
405 // before Create() (as is customary on some ports with wxFrame-type
407 // wxAuiMDIChildFrame is not really derived from wxFrame, as wxMDIChildFrame
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dttoolbar.tex127 MyFrame* frame = new MyFrame((wxFrame *) NULL, -1, (const wxString) "wxToolBar Sample",
158 // Force a resize. This should probably be replaced by a call to a wxFrame
234 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
243 MyFrame::MyFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
245 wxFrame(parent, id, title, pos, size, style)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/text/
H A Dtext.cpp109 MyPanel(wxFrame *frame, int x, int y, int w, int h);
160 class MyFrame: public wxFrame
163 MyFrame(wxFrame *frame, const wxChar *title, int x, int y, int w, int h);
339 class RichTextFrame: public wxFrame
429 MyFrame *frame = new MyFrame((wxFrame *) NULL,
847 wxFrame *frame = wxDynamicCast(wxGetTopLevelParent(this), wxFrame);
996 MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h )
1297 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
1352 MyFrame::MyFrame(wxFrame *fram
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/regtest/
H A Dregtest.cpp180 class RegFrame : public wxFrame
184 RegFrame(wxFrame *parent, const wxChar *title, int x, int y, int w, int h);
243 BEGIN_EVENT_TABLE(RegFrame, wxFrame)
335 RegFrame::RegFrame(wxFrame *parent, const wxChar *title, int x, int y, int w, int h)
336 : wxFrame(parent, wxID_ANY, title, wxPoint(x, y), wxSize(w, h))
704 wxFrame *pFrame = (wxFrame *) wxWindow::GetParent();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/popup/
H A Dpopup.cpp254 class MyFrame : public wxFrame
309 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
318 : wxFrame(NULL, wxID_ANY, title)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/statbar/
H A Dstatbar.cpp138 class MyFrame : public wxFrame
224 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
293 : wxFrame((wxWindow *)NULL, wxID_ANY, title, pos, size)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/deprecated/proplist/
H A Dproplist.cpp78 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
89 MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, long type):
90 wxFrame(frame, wxID_ANY, title, pos, size, type)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/db/
H A Ddbtest.h151 class DatabaseDemoFrame: public wxFrame
158 DatabaseDemoFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& sz);
183 class DbGridFrame : public wxFrame
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/htlbox/
H A Dhtlbox.cpp103 class MyFrame : public wxFrame
192 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
237 : wxFrame(NULL, wxID_ANY, _T("HtmlLbox wxWidgets Sample"),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/ipc/
H A Dclient.cpp48 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
93 MyFrame::MyFrame(wxFrame *frame, const wxString& title)
94 : wxFrame(frame, wxID_ANY, title, wxDefaultPosition, wxSize(400, 300))
H A Dserver.cpp49 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
86 MyFrame::MyFrame(wxFrame *frame, const wxString& title)
87 : wxFrame(frame, wxID_ANY, title, wxDefaultPosition, wxSize(400, 300))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/keyboard/
H A Dkeyboard.cpp55 class MyFrame : public wxFrame
214 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
263 : wxFrame(NULL, wxID_ANY, title, pos, size, style),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dmenu.h477 wxFrame *GetFrame() const { return m_menuBarFrame; }
483 virtual void Attach(wxFrame *frame);
504 wxFrame *m_menuBarFrame;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dtoplevel.cpp447 wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame);
693 wxFrame* frame = wxDynamicCast(this, wxFrame);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dwindow.cpp737 if (pParent && pParent->IsKindOf(CLASSINFO(wxFrame)))
739 wxFrame* pFrame;
741 pFrame = wxDynamicCast(pParent, wxFrame);
1276 if (IsKindOf(CLASSINFO(wxFrame)))
1278 wxFrame* pFrame = wxDynamicCast(this, wxFrame);
1316 if (IsKindOf(CLASSINFO(wxFrame)))
1318 wxFrame* pFrame = wxDynamicCast(this, wxFrame);
1498 if (IsKindOf(CLASSINFO(wxFrame)))
[all...]

Completed in 171 milliseconds

<<11121314151617