// ---------------------------------------------------------------------------
extern wxWindow* wxWndHook;
-extern MRESULT wxDlgProc(HWND hWnd, UINT message,
- MPARAM wParam, MPARAM lParam);
+extern MRESULT wxDlgProc( HWND hWnd
+ ,UINT message
+ ,MPARAM wParam
+ ,MPARAM lParam
+ );
// ===========================================================================
// implementation
// ===========================================================================
-bool wxWindow::LoadNativeDialog(wxWindow* parent, wxWindowID& id)
+bool wxWindow::LoadNativeDialog (
+ wxWindow* pParent
+, wxWindowID& vId
+)
{
- m_windowId = id;
- wxWndHook = this;
+ wxWindow* pChild = NULL;
+ HWND hWndOwner;
+ HWND hWndNext = NULLHANDLE;
+ HENUM hEnum;
- m_hWnd = 0; // TODO (WXHWND)::CreateDialog((HINSTANCE)wxGetInstance(),
- // MAKEINTRESOURCE(id),
- // parent ? (HWND)parent->GetHWND() : 0,
- // (DLGPROC) wxDlgProc);
+ if (pParent)
+ hWndOwner = GetHwndOf(pParent);
+ else
+ hWndOwner = HWND_DESKTOP;
+
+ m_windowId = vId;
+ wxWndHook = this;
+
+ m_hWnd = ::WinLoadDlg( HWND_DESKTOP
+ ,hWndOwner
+ ,(PFNWP)wxDlgProc
+ ,NULL
+ ,(ULONG)131 // Caption dialog from the resource file
+ ,(PVOID)this
+ );
wxWndHook = NULL;
if ( !m_hWnd )
SubclassWin(GetHWND());
- if ( parent )
- parent->AddChild(this);
+ if (pParent)
+ pParent->AddChild(this);
else
wxTopLevelWindows.Append(this);
- // Enumerate all children
- HWND hWndNext = NULLHANDLE;
-// TODO hWndNext = ::GetWindow((HWND) m_hWnd, GW_CHILD);
-
- wxWindow* child = NULL;
- if (hWndNext)
- child = CreateWindowFromHWND(this, (WXHWND) hWndNext);
-
- while (hWndNext != (HWND) NULL)
- {
-// TODO: hWndNext = ::GetWindow(hWndNext, GW_HWNDNEXT);
- if (hWndNext)
- child = CreateWindowFromHWND(this, (WXHWND) hWndNext);
- }
-
+ //
+ // Enumerate the children
+ //
+ hEnum = ::WinBeginEnumWindows(GetHwndOf(pParent));
+ while ((hWndNext = ::WinGetNextWindow(hEnum)) != NULLHANDLE)
+ pChild = CreateWindowFromHWND( this
+ ,(WXHWND)hWndNext
+ );
+ ::WinEndEnumWindows(hEnum);
return TRUE;
-}
+} // end of wxWindow::LoadNativeDialog
-bool wxWindow::LoadNativeDialog(wxWindow* parent, const wxString& name)
+bool wxWindow::LoadNativeDialog (
+ wxWindow* pParent
+, const wxString& rsName
+)
{
- SetName(name);
+ HWND hWndOwner;
+
+ if (pParent)
+ hWndOwner = GetHwndOf(pParent);
+ else
+ hWndOwner = HWND_DESKTOP;
+ SetName(rsName);
wxWndHook = this;
- m_hWnd = 0; //TODO: (WXHWND)::CreateDialog((HINSTANCE) wxGetInstance(),
- // name.c_str(),
- // parent ? (HWND)parent->GetHWND() : 0,
- // (DLGPROC)wxDlgProc);
+ m_hWnd = ::WinLoadDlg( HWND_DESKTOP
+ ,hWndOwner
+ ,(PFNWP)wxDlgProc
+ ,NULL
+ ,(ULONG)131 // Caption dialog from the resource file
+ ,(PVOID)this
+ );
wxWndHook = NULL;
- if ( !m_hWnd )
+ if (!m_hWnd)
return FALSE;
SubclassWin(GetHWND());
- if ( parent )
- parent->AddChild(this);
+ if (pParent)
+ pParent->AddChild(this);
else
wxTopLevelWindows.Append(this);
-
- // FIXME why don't we enum all children here?
-
return TRUE;
-}
+} // end of wxWindow::LoadNativeDialog
// ---------------------------------------------------------------------------
// look for child by id
// ---------------------------------------------------------------------------
-
-wxWindow* wxWindow::GetWindowChild1(wxWindowID id)
+wxWindow* wxWindow::GetWindowChild1 (
+ wxWindowID vId
+)
{
- if ( m_windowId == id )
+ if (m_windowId == vId)
return this;
- wxWindowList::Node *node = GetChildren().GetFirst();
- while ( node )
+ wxWindowList::Node* pNode = GetChildren().GetFirst();
+
+ while (pNode)
{
- wxWindow* child = node->GetData();
- wxWindow* win = child->GetWindowChild1(id);
- if ( win )
- return win;
+ wxWindow* pChild = pNode->GetData();
+ wxWindow* pWin = pChild->GetWindowChild1(vId);
- node = node->GetNext();
- }
+ if (pWin)
+ return pWin;
+ pNode = pNode->GetNext();
+ }
return NULL;
-}
+} // end of wxWindow::GetWindowChild1
-wxWindow* wxWindow::GetWindowChild(wxWindowID id)
+wxWindow* wxWindow::GetWindowChild (
+ wxWindowID vId
+)
{
- wxWindow* win = GetWindowChild1(id);
- if ( !win )
+ wxWindow* pWin = GetWindowChild1(vId);
+
+ if (!pWin)
{
- HWND hWnd = 0; // TODO: ::GetDlgItem((HWND) GetHWND(), id);
+ HWND hWnd = 0; // TODO: ::GetDlgItem((HWND) GetHWND(), id);
if (hWnd)
{
- wxWindow* child = CreateWindowFromHWND(this, (WXHWND) hWnd);
- if (child)
+ wxWindow* pChild = CreateWindowFromHWND( this
+ ,(WXHWND)hWnd
+ );
+ if (pChild)
{
- child->AddChild(this);
- return child;
+ pChild->AddChild(this);
+ return pChild;
}
}
}
-
return NULL;
-}
+} // end of wxWindow::GetWindowChild
// ---------------------------------------------------------------------------
// create wxWin window from a native HWND
// ---------------------------------------------------------------------------
-wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd)
+wxWindow* wxWindow::CreateWindowFromHWND (
+ wxWindow* pParent
+, WXHWND hWnd
+)
{
- wxString str(wxGetWindowClass(hWnd));
- str.UpperCase();
+ wxString sStr(wxGetWindowClass(hWnd));
+ long lId = wxGetWindowId(hWnd);
+ long lStyle = ::WinQueryWindowULong((HWND)hWnd
+ ,QWL_STYLE
+ );
+ wxWindow* pWin = NULL;
- long id = wxGetWindowId(hWnd);
- long style = 0; // TODO: GetWindowLong((HWND) hWnd, GWL_STYLE);
+ sStr.UpperCase();
- wxWindow* win = NULL;
-// TODO:
-/*
- if (str == wxT("BUTTON"))
+
+ if (sStr == wxT("BUTTON"))
{
- int style1 = (style & 0xFF);
- if ((style1 == BS_3STATE) || (style1 == BS_AUTO3STATE) || (style1 == BS_AUTOCHECKBOX) ||
- (style1 == BS_CHECKBOX))
- {
- win = new wxCheckBox;
- }
- else if ((style1 == BS_AUTORADIOBUTTON) || (style1 == BS_RADIOBUTTON))
+ if (lStyle == BS_AUTOCHECKBOX)
{
- win = new wxRadioButton;
+ pWin = new wxCheckBox;
}
- else if (style & BS_BITMAP)
+ else if (lStyle == BS_AUTORADIOBUTTON)
{
- // TODO: how to find the bitmap?
- win = new wxBitmapButton;
- wxLogError(wxT("Have not yet implemented bitmap button as BS_BITMAP button."));
+ pWin = new wxRadioButton;
}
- else if (style1 == BS_OWNERDRAW)
+ else if (lStyle & BS_BITMAP || lStyle == BS_USERBUTTON)
{
- // TODO: how to find the bitmap?
- // TODO: can't distinguish between bitmap button and bitmap static.
- // Change implementation of wxStaticBitmap to SS_BITMAP.
- // PROBLEM: this assumes that we're using resource-based bitmaps.
- // So maybe need 2 implementations of bitmap buttons/static controls,
- // with a switch in the drawing code. Call default proc if BS_BITMAP.
- win = new wxBitmapButton;
+ pWin = new wxBitmapButton;
}
- else if ((style1 == BS_PUSHBUTTON) || (style1 == BS_DEFPUSHBUTTON))
+ else if (lStyle == BS_PUSHBUTTON)
{
- win = new wxButton;
+ pWin = new wxButton;
}
- else if (style1 == BS_GROUPBOX)
+ else if (lStyle == SS_GROUPBOX)
{
- win = new wxStaticBox;
+ pWin = new wxStaticBox;
}
else
{
- wxLogError(wxT("Don't know what kind of button this is: id = %d"),
- id);
+ wxLogError(wxT("Don't know what kind of button this is: id = %ld"),
+ lId);
}
}
- else if (str == wxT("COMBOBOX"))
+ else if (sStr == wxT("COMBOBOX"))
{
- win = new wxComboBox;
+ pWin = new wxComboBox;
}
- // TODO: Problem if the user creates a multiline - but not rich text - text control,
- // since wxWin assumes RichEdit control for this. Should have m_isRichText in
- // wxTextCtrl. Also, convert as much of the window style as is necessary
- // for correct functioning.
- // Could have wxWindow::AdoptAttributesFromHWND(WXHWND)
- // to be overridden by each control class.
- else if (str == wxT("EDIT"))
+ else if (sStr == wxT("EDIT"))
{
- win = new wxTextCtrl;
+ pWin = new wxTextCtrl;
}
- else if (str == wxT("LISTBOX"))
+ else if (sStr == wxT("LISTBOX"))
{
- win = new wxListBox;
+ pWin = new wxListBox;
}
- else if (str == wxT("SCROLLBAR"))
+ else if (sStr == wxT("SCROLLBAR"))
{
- win = new wxScrollBar;
+ pWin = new wxScrollBar;
}
- else if (str == wxT("MSCTLS_UPDOWN32"))
+ else if (sStr == wxT("MSCTLS_UPDOWN32"))
{
- win = new wxSpinButton;
+ pWin = new wxSpinButton;
}
- else if (str == wxT("MSCTLS_TRACKBAR32"))
+ else if (sStr == wxT("MSCTLS_TRACKBAR32"))
{
- // Need to ascertain if it's horiz or vert
- win = new wxSlider;
+ pWin = new wxSlider;
}
- else if (str == wxT("STATIC"))
+ else if (sStr == wxT("STATIC"))
{
- int style1 = (style & 0xFF);
-
- if ((style1 == SS_LEFT) || (style1 == SS_RIGHT) || (style1 == SS_SIMPLE))
- win = new wxStaticText;
- else if (style1 == SS_BITMAP)
+ if (lStyle == SS_TEXT)
+ pWin = new wxStaticText;
+ else if (lStyle == SS_ICON)
{
- win = new wxStaticBitmap;
-
- // Help! this doesn't correspond with the wxWin implementation.
- wxLogError(wxT("Please make SS_BITMAP statics into owner-draw buttons."));
+ pWin = new wxStaticBitmap;
}
}
else
{
- wxString msg(wxT("Don't know how to convert from Windows class "));
- msg += str;
- wxLogError(msg);
+ wxString sMsg(wxT("Don't know how to convert from Windows class "));
+
+ sMsg += sStr;
+ wxLogError(sMsg);
}
-*/
- if (win)
+ if (pWin)
{
- parent->AddChild(win);
- win->SetEventHandler(win);
- win->SetHWND(hWnd);
- win->SetId(id);
- win->SubclassWin(hWnd);
- win->AdoptAttributesFromHWND();
- win->SetupColours();
-
- return win;
+ pParent->AddChild(pWin);
+ pWin->SetEventHandler(pWin);
+ pWin->SetHWND(hWnd);
+ pWin->SetId(lId);
+ pWin->SubclassWin(hWnd);
+ pWin->AdoptAttributesFromHWND();
+ pWin->SetupColours();
+ return pWin;
}
else
return NULL;
-}
+} // end of wxWindow::CreateWindowFromHWND
+//
// Make sure the window style (etc.) reflects the HWND style (roughly)
-void wxWindow::AdoptAttributesFromHWND(void)
+//
+void wxWindow::AdoptAttributesFromHWND()
{
- HWND hWnd = (HWND) GetHWND();
-// TODO:
-/*
- long style = GetWindowLong((HWND) hWnd, GWL_STYLE);
-
- if (style & WS_VSCROLL)
- m_windowStyle |= wxVSCROLL;
- if (style & WS_HSCROLL)
- m_windowStyle |= wxHSCROLL;
-*/
-}
+ // Does nothing under OS/2
+} // end of wxWindow::AdoptAttributesFromHWND
__ct__10wxLogFrameFP7wxFrameP11wxLogWindowPCc
;wxLogWindow::wxLogWindow(wxFrame*,const char*,unsigned long,unsigned long)
__ct__11wxLogWindowFP7wxFramePCcUlT3
+ ;From object file: ..\generic\mdig.cpp
+ ;PUBDEFs (Symbols available from object file):
+ ;wxGenericMDIClientWindow::CreateClient(wxGenericMDIParentFrame*,long)
+ CreateClient__24wxGenericMDIClientWindowFP23wxGenericMDIParentFramel
+ ;wxGenericMDIChildFrame::DoMoveWindow(int,int,int,int)
+ DoMoveWindow__22wxGenericMDIChildFrameFiN31
+ ;wxConstructorForwxGenericMDIParentFrame()
+ wxConstructorForwxGenericMDIParentFrame__Fv
+ ;wxGenericMDIParentFrame::RemoveWindowMenu(wxMenuBar*)
+ RemoveWindowMenu__23wxGenericMDIParentFrameFP9wxMenuBar
+ ;wxGenericMDIParentFrame::OnCreateClient()
+ OnCreateClient__23wxGenericMDIParentFrameFv
+ ;wxGenericMDIParentFrame::ActivatePrevious()
+ ActivatePrevious__23wxGenericMDIParentFrameFv
+ ;wxGenericMDIParentFrame::ActivateNext()
+ ActivateNext__23wxGenericMDIParentFrameFv
+ ;wxMDIClientWindow::sm_classwxMDIClientWindow
+ sm_classwxMDIClientWindow__17wxMDIClientWindow
+ ;wxGenericMDIClientWindow::sm_eventTable
+ sm_eventTable__24wxGenericMDIClientWindow
+ ;wxGenericMDIClientWindow::wxGenericMDIClientWindow(wxGenericMDIParentFrame*,long)
+ __ct__24wxGenericMDIClientWindowFP23wxGenericMDIParentFramel
+ __vft24wxGenericMDIClientWindow8wxObject
+ ;wxGenericMDIClientWindow::OnPageChanged(wxNotebookEvent&)
+ OnPageChanged__24wxGenericMDIClientWindowFR15wxNotebookEvent
+ ;wxGenericMDIParentFrame::SetChildMenuBar(wxGenericMDIChildFrame*)
+ SetChildMenuBar__23wxGenericMDIParentFrameFP22wxGenericMDIChildFrame
+ ;wxGenericMDIChildFrame::sm_eventTableEntries
+ sm_eventTableEntries__22wxGenericMDIChildFrame
+ ;wxMDIParentFrame::sm_classwxMDIParentFrame
+ sm_classwxMDIParentFrame__16wxMDIParentFrame
+ ;wxGenericMDIParentFrame::sm_classwxGenericMDIParentFrame
+ sm_classwxGenericMDIParentFrame__23wxGenericMDIParentFrame
+ ;wxGenericMDIClientWindow::SetSelection(int)
+ SetSelection__24wxGenericMDIClientWindowFi
+ ;wxGenericMDIChildFrame::wxGenericMDIChildFrame()
+ __ct__22wxGenericMDIChildFrameFv
+ ;wxGenericMDIClientWindow::wxGenericMDIClientWindow()
+ __ct__24wxGenericMDIClientWindowFv
+ ;wxGenericMDIParentFrame::SetMenuBar(wxMenuBar*)
+ SetMenuBar__23wxGenericMDIParentFrameFP9wxMenuBar
+ ;wxGenericMDIParentFrame::AddWindowMenu(wxMenuBar*)
+ AddWindowMenu__23wxGenericMDIParentFrameFP9wxMenuBar
+ ;wxGenericMDIParentFrame::ProcessEvent(wxEvent&)
+ ProcessEvent__23wxGenericMDIParentFrameFR7wxEvent
+ __vft23wxGenericMDIParentFrame8wxObject
+ ;wxGenericMDIParentFrame::DoHandleMenu(wxCommandEvent&)
+ DoHandleMenu__23wxGenericMDIParentFrameFR14wxCommandEvent
+ ;wxGenericMDIChildFrame::sm_classwxGenericMDIChildFrame
+ sm_classwxGenericMDIChildFrame__22wxGenericMDIChildFrame
+ ;wxGenericMDIChildFrame::sm_eventTable
+ sm_eventTable__22wxGenericMDIChildFrame
+ ;wxMDIChildFrame::sm_classwxMDIChildFrame
+ sm_classwxMDIChildFrame__15wxMDIChildFrame
+ ;wxGenericMDIChildFrame::~wxGenericMDIChildFrame()
+ __dt__22wxGenericMDIChildFrameFv
+ ;wxGenericMDIClientWindow::~wxGenericMDIClientWindow()
+ __dt__24wxGenericMDIClientWindowFv
+ ;wxGenericMDIChildFrame::SetMenuBar(wxMenuBar*)
+ SetMenuBar__22wxGenericMDIChildFrameFP9wxMenuBar
+ ;wxGenericMDIChildFrame::GetMenuBar() const
+ GetMenuBar__22wxGenericMDIChildFrameCFv
+ ;wxGenericMDIParentFrame::GetActiveChild() const
+ GetActiveChild__23wxGenericMDIParentFrameCFv
+ ;wxGenericMDIChildFrame::Activate()
+ Activate__22wxGenericMDIChildFrameFv
+ ;wxGenericMDIParentFrame::wxGenericMDIParentFrame(wxWindow*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
+ __ct__23wxGenericMDIParentFrameFP8wxWindowiRC8wxStringRC7wxPointRC6wxSizelT3
+ ;wxGenericMDIClientWindow::sm_classwxGenericMDIClientWindow
+ sm_classwxGenericMDIClientWindow__24wxGenericMDIClientWindow
+ ;wxGenericMDIChildFrame::OnSize(wxSizeEvent&)
+ OnSize__22wxGenericMDIChildFrameFR11wxSizeEvent
+ __vft22wxGenericMDIChildFrame8wxObject
+ ;wxGenericMDIClientWindow::OnSize(wxSizeEvent&)
+ OnSize__24wxGenericMDIClientWindowFR11wxSizeEvent
+ ;wxGenericMDIChildFrame::OnCloseWindow(wxCloseEvent&)
+ OnCloseWindow__22wxGenericMDIChildFrameFR12wxCloseEvent
+ ;wxGenericMDIParentFrame::SetWindowMenu(wxMenu*)
+ SetWindowMenu__23wxGenericMDIParentFrameFP6wxMenu
+ ;wxGenericMDIParentFrame::sm_eventTableEntries
+ sm_eventTableEntries__23wxGenericMDIParentFrame
+ ;wxGenericMDIChildFrame::SetMDIParentFrame(wxGenericMDIParentFrame*)
+ SetMDIParentFrame__22wxGenericMDIChildFrameFP23wxGenericMDIParentFrame
+ ;wxGenericMDIParentFrame::DoGetClientSize(int*,int*) const
+ DoGetClientSize__23wxGenericMDIParentFrameCFPiT1
+ ;wxGenericMDIParentFrame::wxGenericMDIParentFrame()
+ __ct__23wxGenericMDIParentFrameFv
+ ;wxConstructorForwxGenericMDIClientWindow()
+ wxConstructorForwxGenericMDIClientWindow__Fv
+ ;wxConstructorForwxGenericMDIChildFrame()
+ wxConstructorForwxGenericMDIChildFrame__Fv
+ ;wxGenericMDIParentFrame::Init()
+ Init__23wxGenericMDIParentFrameFv
+ ;wxGenericMDIChildFrame::GetMDIParentFrame() const
+ GetMDIParentFrame__22wxGenericMDIChildFrameCFv
+ ;wxGenericMDIClientWindow::GetEventTable() const
+ GetEventTable__24wxGenericMDIClientWindowCFv
+ ;wxGenericMDIParentFrame::GetEventTable() const
+ GetEventTable__23wxGenericMDIParentFrameCFv
+ ;wxGenericMDIParentFrame::GetClientWindow() const
+ GetClientWindow__23wxGenericMDIParentFrameCFv
+ ;wxGenericMDIChildFrame::Create(wxGenericMDIParentFrame*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
+ Create__22wxGenericMDIChildFrameFP23wxGenericMDIParentFrameiRC8wxStringRC7wxPointRC6wxSizelT3
+ ;wxGenericMDIChildFrame::OnMenuHighlight(wxMenuEvent&)
+ OnMenuHighlight__22wxGenericMDIChildFrameFR11wxMenuEvent
+ ;wxGenericMDIChildFrame::OnActivate(wxActivateEvent&)
+ OnActivate__22wxGenericMDIChildFrameFR15wxActivateEvent
+ ;wxGenericMDIClientWindow::PageChanged(int,int)
+ PageChanged__24wxGenericMDIClientWindowFiT1
+ ;wxGenericMDIParentFrame::sm_eventTable
+ sm_eventTable__23wxGenericMDIParentFrame
+ ;wxGenericMDIParentFrame::~wxGenericMDIParentFrame()
+ __dt__23wxGenericMDIParentFrameFv
+ ;wxConstructorForwxMDIParentFrame()
+ wxConstructorForwxMDIParentFrame__Fv
+ ;wxConstructorForwxMDIClientWindow()
+ wxConstructorForwxMDIClientWindow__Fv
+ ;wxConstructorForwxMDIChildFrame()
+ wxConstructorForwxMDIChildFrame__Fv
+ ;wxGenericMDIChildFrame::Init()
+ Init__22wxGenericMDIChildFrameFv
+ ;wxGenericMDIChildFrame::GetTitle() const
+ GetTitle__22wxGenericMDIChildFrameCFv
+ ;wxGenericMDIChildFrame::GetEventTable() const
+ GetEventTable__22wxGenericMDIChildFrameCFv
+ ;wxGenericMDIChildFrame::ApplyMDIChildFrameRect()
+ ApplyMDIChildFrameRect__22wxGenericMDIChildFrameFv
+ ;wxGenericMDIChildFrame::wxGenericMDIChildFrame(wxGenericMDIParentFrame*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
+ __ct__22wxGenericMDIChildFrameFP23wxGenericMDIParentFrameiRC8wxStringRC7wxPointRC6wxSizelT3
+ ;wxGenericMDIClientWindow::sm_eventTableEntries
+ sm_eventTableEntries__24wxGenericMDIClientWindow
+ ;wxGenericMDIChildFrame::SetTitle(const wxString&)
+ SetTitle__22wxGenericMDIChildFrameFRC8wxString
+ ;wxGenericMDIParentFrame::Create(wxWindow*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
+ Create__23wxGenericMDIParentFrameFP8wxWindowiRC8wxStringRC7wxPointRC6wxSizelT3
;From object file: ..\generic\numdlgg.cpp
;PUBDEFs (Symbols available from object file):
;wxGetNumberFromUser(const wxString&,const wxString&,const wxString&,long,long,long,wxWindow*,const wxPoint&)
;From object file: ..\os2\main.cpp
;PUBDEFs (Symbols available from object file):
main
- ;From object file: ..\os2\mdi.cpp
- ;PUBDEFs (Symbols available from object file):
- ;wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent&)
- OnSysColourChanged__16wxMDIParentFrameFR23wxSysColourChangedEvent
- ;wxMDIClientWindow::GetEventTable() const
- GetEventTable__17wxMDIClientWindowCFv
- ;wxMDIChildFrame::~wxMDIChildFrame()
- __dt__15wxMDIChildFrameFv
- ;wxMDIParentFrame::ArrangeIcons()
- ArrangeIcons__16wxMDIParentFrameFv
- ;wxMDIParentFrame::ActivatePrevious()
- ActivatePrevious__16wxMDIParentFrameFv
- ;wxMDIClientWindow::sm_classwxMDIClientWindow
- sm_classwxMDIClientWindow__17wxMDIClientWindow
- ;wxMDIParentFrame::OnSize(wxSizeEvent&)
- OnSize__16wxMDIParentFrameFR11wxSizeEvent
- ;wxMDIChildFrame::Maximize(unsigned long)
- Maximize__15wxMDIChildFrameFUl
- ;wxMDIClientWindow::CreateClient(wxMDIParentFrame*,long)
- CreateClient__17wxMDIClientWindowFP16wxMDIParentFramel
- ;wxMDIChildFrame::DoSetClientSize(int,int)
- DoSetClientSize__15wxMDIChildFrameFiT1
- ;wxMDIParentFrame::sm_classwxMDIParentFrame
- sm_classwxMDIParentFrame__16wxMDIParentFrame
- ;wxMDIParentFrame::GetEventTable() const
- GetEventTable__16wxMDIParentFrameCFv
- ;wxMDIParentFrame::~wxMDIParentFrame()
- __dt__16wxMDIParentFrameFv
- ;wxMDIParentFrame::Tile()
- Tile__16wxMDIParentFrameFv
- ;wxMDIChildFrame::Restore()
- Restore__15wxMDIChildFrameFv
- ;wxMDIParentFrame::OS2WindowProc(unsigned int,void*,void*)
- OS2WindowProc__16wxMDIParentFrameFUiPvT2
- ;wxMDIParentFrame::OS2TranslateMessage(void**)
- OS2TranslateMessage__16wxMDIParentFrameFPPv
- ;wxMDIParentFrame::OS2DefWindowProc(unsigned int,void*,void*)
- OS2DefWindowProc__16wxMDIParentFrameFUiPvT2
- ;wxMDIParentFrame::InternalSetMenuBar()
- InternalSetMenuBar__16wxMDIParentFrameFv
- ;wxMDIChildFrame::HandleWindowPosChanging(void*)
- HandleWindowPosChanging__15wxMDIChildFrameFPv
- ;wxMDIParentFrame::Cascade()
- Cascade__16wxMDIParentFrameFv
- ;wxMDIParentFrame::HandleCommand(unsigned short,unsigned short,unsigned long)
- HandleCommand__16wxMDIParentFrameFUsT1Ul
- ;wxMDIClientWindow::OnScroll(wxScrollEvent&)
- OnScroll__17wxMDIClientWindowFR13wxScrollEvent
- ;wxMDIChildFrame::HandleCommand(unsigned short,unsigned short,unsigned long)
- HandleCommand__15wxMDIChildFrameFUsT1Ul
- ;wxMDIChildFrame::sm_classwxMDIChildFrame
- sm_classwxMDIChildFrame__15wxMDIChildFrame
- ;wxMDIParentFrame::wxMDIParentFrame()
- __ct__16wxMDIParentFrameFv
- ;wxMDIChildFrame::OS2TranslateMessage(void**)
- OS2TranslateMessage__15wxMDIChildFrameFPPv
- ;wxMDIChildFrame::InternalSetMenuBar()
- InternalSetMenuBar__15wxMDIChildFrameFv
- ;wxMDIParentFrame::Create(wxWindow*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
- Create__16wxMDIParentFrameFP8wxWindowiRC8wxStringRC7wxPointRC6wxSizelT3
- __vft16wxMDIParentFrame8wxObject
- ;wxMDIChildFrame::HandleSize(int,int,unsigned int)
- HandleSize__15wxMDIChildFrameFiT1Ui
- ;wxMDIParentFrame::sm_eventTable
- sm_eventTable__16wxMDIParentFrame
- ;wxMDIParentFrame::sm_eventTableEntries
- sm_eventTableEntries__16wxMDIParentFrame
- ;wxMDIParentFrame::GetActiveChild() const
- GetActiveChild__16wxMDIParentFrameCFv
- ;wxMDIParentFrame::OnCreateClient()
- OnCreateClient__16wxMDIParentFrameFv
- ;wxMDIChildFrame::OS2WindowProc(unsigned int,void*,void*)
- OS2WindowProc__15wxMDIChildFrameFUiPvT2
- ;wxMDIChildFrame::OS2DestroyWindow()
- OS2DestroyWindow__15wxMDIChildFrameFv
- ;wxMDIParentFrame::HandleActivate(int,unsigned long,unsigned long)
- HandleActivate__16wxMDIParentFrameFiUlT2
- ;wxMDIClientWindow::sm_eventTableEntries
- sm_eventTableEntries__17wxMDIClientWindow
- __vft15wxMDIChildFrame8wxObject
- __vft17wxMDIClientWindow8wxObject
- ;wxMDIChildFrame::DoGetPosition(int*,int*) const
- DoGetPosition__15wxMDIChildFrameCFPiT1
- ;wxConstructorForwxMDIParentFrame()
- wxConstructorForwxMDIParentFrame__Fv
- ;wxConstructorForwxMDIClientWindow()
- wxConstructorForwxMDIClientWindow__Fv
- ;wxConstructorForwxMDIChildFrame()
- wxConstructorForwxMDIChildFrame__Fv
- ;wxMDIChildFrame::wxMDIChildFrame()
- __ct__15wxMDIChildFrameFv
- ;wxMDIChildFrame::ResetWindowStyle(void*)
- ResetWindowStyle__15wxMDIChildFrameFPv
- ;wxMDIChildFrame::OS2DefWindowProc(unsigned int,void*,void*)
- OS2DefWindowProc__15wxMDIChildFrameFUiPvT2
- ;wxMDIChildFrame::HandleMDIActivate(long,unsigned long,unsigned long)
- HandleMDIActivate__15wxMDIChildFrameFlUlT2
- ;wxMDIChildFrame::Activate()
- Activate__15wxMDIChildFrameFv
- ;wxMDIParentFrame::ActivateNext()
- ActivateNext__16wxMDIParentFrameFv
- ;wxMDIChildFrame::Create(wxMDIParentFrame*,int,const wxString&,const wxPoint&,const wxSize&,long,const wxString&)
- Create__15wxMDIChildFrameFP16wxMDIParentFrameiRC8wxStringRC7wxPointRC6wxSizelT3
- ;wxMDIClientWindow::sm_eventTable
- sm_eventTable__17wxMDIClientWindow
;From object file: ..\os2\menu.cpp
;PUBDEFs (Symbols available from object file):
;wxMenuBar::wxMenuBar(long)
GetFileTypeFromMimeType__22wxMimeTypesManagerImplFRC8wxString
;wxFileTypeImpl::GetExtensions(wxArrayString&)
GetExtensions__14wxFileTypeImplFR13wxArrayString
- ;From object file: ..\os2\minifram.cpp
- ;PUBDEFs (Symbols available from object file):
- ;wxMiniFrame::sm_classwxMiniFrame
- sm_classwxMiniFrame__11wxMiniFrame
- ;wxConstructorForwxMiniFrame()
- wxConstructorForwxMiniFrame__Fv
;From object file: ..\os2\msgdlg.cpp
;PUBDEFs (Symbols available from object file):
;wxMessageDialog::ShowModal()