Weekly updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-08-30 21:54:47 +00:00
parent ef5f8ab626
commit cfcebdb1bb
10 changed files with 174 additions and 71 deletions

View File

@@ -234,9 +234,13 @@ void wxButton::SetDefault()
// Set this one as the default button both for wxWindows and Windows // Set this one as the default button both for wxWindows and Windows
// //
wxWindow* pWinOldDefault = pParent->SetDefaultItem(this); wxWindow* pWinOldDefault = pParent->SetDefaultItem(this);
UpdateDefaultStyle( this
,pWinOldDefault SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton)
); ,FALSE
);
SetDefaultStyle( this
,TRUE
);
} // end of wxButton::SetDefault } // end of wxButton::SetDefault
void wxButton::SetTmpDefault() void wxButton::SetTmpDefault()
@@ -246,14 +250,14 @@ void wxButton::SetTmpDefault()
wxCHECK_RET( pParent, _T("button without parent?") ); wxCHECK_RET( pParent, _T("button without parent?") );
wxWindow* pWinOldDefault = pParent->GetDefaultItem(); wxWindow* pWinOldDefault = pParent->GetDefaultItem();
pParent->SetTmpDefaultItem(this); pParent->SetTmpDefaultItem(this);
if (pWinOldDefault != this) SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton)
{ ,FALSE
UpdateDefaultStyle( this );
,pWinOldDefault SetDefaultStyle( this
); ,TRUE
} );
//else: no styles to update
} // end of wxButton::SetTmpDefault } // end of wxButton::SetTmpDefault
void wxButton::UnsetTmpDefault() void wxButton::UnsetTmpDefault()
@@ -266,47 +270,60 @@ void wxButton::UnsetTmpDefault()
wxWindow* pWinOldDefault = pParent->GetDefaultItem(); wxWindow* pWinOldDefault = pParent->GetDefaultItem();
if (pWinOldDefault != this) SetDefaultStyle( this
{ ,FALSE
UpdateDefaultStyle( pWinOldDefault );
,this SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton)
); ,TRUE
} );
//else: we had been default before anyhow
} // end of wxButton::UnsetTmpDefault } // end of wxButton::UnsetTmpDefault
void wxButton::UpdateDefaultStyle( void wxButton::SetDefaultStyle(
wxWindow* pWinDefault wxButton* pBtn
, wxWindow* pWinOldDefault) , bool bOn
)
{ {
wxButton* pBtnOldDefault = wxDynamicCast(pWinOldDefault, wxButton);
long lStyle; long lStyle;
//
// We may be called with NULL pointer -- simpler to do the check here than
// in the caller which does wxDynamicCast()
//
if (!pBtn)
return;
if ( pBtnOldDefault && pBtnOldDefault != pWinDefault ) //
// First, let DefDlgProc() know about the new default button
//
if (bOn)
{
if (!wxTheApp->IsActive())
return;
//
// In OS/2 the dialog/panel doesn't really know it has a default
// button, the default button simply has that style. We'll just
// simulate by setting focus to it
//
pBtn->SetFocus();
}
lStyle = ::WinQueryWindowULong(GetHwndOf(pBtn), QWL_STYLE);
if (!(lStyle & BS_DEFAULT) == bOn)
{ {
lStyle = ::WinQueryWindowULong(GetHwndOf(pBtnOldDefault), QWL_STYLE);
if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON) if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON)
{ {
lStyle &= ~BS_DEFAULT; if (bOn)
::WinSetWindowULong(GetHwndOf(pBtnOldDefault), QWL_STYLE, lStyle); lStyle | BS_DEFAULT;
else
lStyle &= ~BS_DEFAULT;
::WinSetWindowULong(GetHwndOf(pBtn), QWL_STYLE, lStyle);
} }
else else
{ {
// redraw the button - it will notice itself that it's not the //
// Redraw the button - it will notice itself that it's not the
// default one any longer // default one any longer
pBtnOldDefault->Refresh(); //
} pBtn->Refresh();
}
wxButton* pBtnDefault = wxDynamicCast(pWinDefault, wxButton);
if (pBtnDefault)
{
lStyle = ::WinQueryWindowULong(GetHwndOf(pBtnDefault), QWL_STYLE);
if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON)
{
lStyle != BS_DEFAULT;
::WinSetWindowULong(GetHwndOf(pBtnDefault), QWL_STYLE, lStyle);
} }
} }
} // end of wxButton::UpdateDefaultStyle } // end of wxButton::UpdateDefaultStyle

View File

@@ -212,7 +212,7 @@ wxString wxChoice::GetString(
char* zBuf; char* zBuf;
nLen = (size_t)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)n, (MPARAM)0)); nLen = (size_t)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)n, (MPARAM)0));
if (nLen) if (nLen != LIT_ERROR && nLen > 0)
{ {
zBuf = new char[nLen + 1]; zBuf = new char[nLen + 1];
::WinSendMsg( GetHwnd() ::WinSendMsg( GetHwnd()

View File

@@ -101,6 +101,7 @@ bool wxComboBox::Create(
, const wxString& rsName , const wxString& rsName
) )
{ {
m_isShown = FALSE;
if (!CreateControl( pParent if (!CreateControl( pParent
,vId ,vId
@@ -143,12 +144,7 @@ bool wxComboBox::Create(
// //
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
wxFont* pTextFont = new wxFont( 10 SetFont(*wxSMALL_FONT);
,wxMODERN
,wxNORMAL
,wxNORMAL
);
SetFont(*pTextFont);
int i; int i;
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
@@ -169,7 +165,7 @@ bool wxComboBox::Create(
,(PFNWP)wxComboEditWndProc ,(PFNWP)wxComboEditWndProc
); );
::WinSetWindowULong(GetHwnd(), QWL_USER, (ULONG)this); ::WinSetWindowULong(GetHwnd(), QWL_USER, (ULONG)this);
delete pTextFont; Show(TRUE);
return TRUE; return TRUE;
} // end of wxComboBox::Create } // end of wxComboBox::Create

View File

@@ -117,7 +117,8 @@ bool wxControl::OS2CreateControl(
// All controls should have these styles (wxWindows creates all controls // All controls should have these styles (wxWindows creates all controls
// visible by default) // visible by default)
// //
dwStyle |= WS_VISIBLE; if (m_isShown )
dwStyle |= WS_VISIBLE;
wxWindow* pParent = GetParent(); wxWindow* pParent = GetParent();
PSZ zClass; PSZ zClass;

View File

@@ -1420,3 +1420,22 @@ wxWindow* wxFrame::GetClient()
{ {
return wxFindWinFromHandle((WXHWND)::WinWindowFromID(m_hFrame, FID_CLIENT)); return wxFindWinFromHandle((WXHWND)::WinWindowFromID(m_hFrame, FID_CLIENT));
} }
void wxFrame::SendSizeEvent()
{
if (!m_bIconized)
{
RECTL vRect = wxGetWindowRect(GetHwnd());
::WinPostMsg( GetHwnd()
,WM_SIZE
,MPFROM2SHORT( vRect.xRight - vRect.xLeft
,vRect.xRight - vRect.xLeft
)
,MPFROM2SHORT( vRect.yTop - vRect.yBottom
,vRect.yTop - vRect.yBottom
)
);
}
}

View File

@@ -245,7 +245,7 @@ bool wxFileTypeImpl::GetMimeTypes(wxArrayString& mimeTypes) const
return FALSE; return FALSE;
} }
bool wxFileTypeImpl::GetIcon(wxIcon *icon) const bool wxFileTypeImpl::GetIcon(wxIcon *icon, wxString* psCommand, int* pnIndex) const
{ {
#if wxUSE_GUI #if wxUSE_GUI
if ( m_info ) { if ( m_info ) {

View File

@@ -488,4 +488,20 @@ bool wxSpinCtrl::Show(
return TRUE; return TRUE;
} // end of wxSpinCtrl::Show } // end of wxSpinCtrl::Show
void wxSpinCtrl::SetSelection (
long lFrom
, long lTo
)
{
//
// If from and to are both -1, it means (in wxWindows) that all text should
// be selected - translate into Windows convention
//
if ((lFrom == -1) && (lTo == -1))
{
lFrom = 0;
}
::WinSendMsg(m_hWnd, EM_SETSEL, MPFROM2SHORT((USHORT)lFrom, (USHORT)lTo), (MPARAM)0);
} // end of wxSpinCtrl::SetSelection
#endif //wxUSE_SPINBTN #endif //wxUSE_SPINBTN

View File

@@ -101,6 +101,7 @@ bool wxTextCtrl::Create(
{ {
HWND hParent; HWND hParent;
int nTempy; int nTempy;
// //
// Base initialization // Base initialization
// //

View File

@@ -302,6 +302,7 @@ void wxWindowOS2::Init()
m_bMouseInWindow = FALSE; m_bMouseInWindow = FALSE;
m_bLastKeydownProcessed = FALSE; m_bLastKeydownProcessed = FALSE;
m_bIsActivePage = TRUE; m_bIsActivePage = TRUE;
m_pChildrenDisabled = NULL;
// //
// wxWnd // wxWnd
@@ -366,6 +367,7 @@ wxWindowOS2::~wxWindowOS2()
// //
wxRemoveHandleAssociation(this); wxRemoveHandleAssociation(this);
} }
delete m_pChildrenDisabled;
} // end of wxWindowOS2::~wxWindowOS2 } // end of wxWindowOS2::~wxWindowOS2
// real construction (Init() must have been called before!) // real construction (Init() must have been called before!)
@@ -425,7 +427,7 @@ bool wxWindowOS2::Create(
// set in those class create procs. PM's basic windows styles are // set in those class create procs. PM's basic windows styles are
// very limited. // very limited.
// //
ulCreateFlags |= WS_VISIBLE | OS2GetCreateWindowFlags(&dwExStyle); ulCreateFlags |= OS2GetCreateWindowFlags(&dwExStyle);
#ifdef __WXUNIVERSAL__ #ifdef __WXUNIVERSAL__
@@ -434,11 +436,13 @@ bool wxWindowOS2::Create(
#endif // !wxUniversal #endif // !wxUniversal
if (lStyle & wxPOPUP_WINDOW) if (lStyle & wxPOPUP_WINDOW)
{ {
// a popup window floats on top of everything
// it is also created hidden as other top level windows
ulCreateFlags &= ~WS_VISIBLE; ulCreateFlags &= ~WS_VISIBLE;
m_isShown = FALSE; m_isShown = FALSE;
} }
else
{
ulCreateFlags |= WS_VISIBLE;
}
// //
// Generic OS/2 Windows have no Control Data but other classes // Generic OS/2 Windows have no Control Data but other classes
@@ -505,9 +509,44 @@ bool wxWindowOS2::Enable(
{ {
wxWindow* pChild = pNode->GetData(); wxWindow* pChild = pNode->GetData();
pChild->Enable(bEnable); if (bEnable)
{
//
// Enable the child back unless it had been disabled before us
//
if (!m_pChildrenDisabled || !m_pChildrenDisabled->Find(pChild))
pChild->Enable();
}
else // we're being disabled
{
if (pChild->IsEnabled())
{
//
// Disable it as children shouldn't stay enabled while the
// parent is not
//
pChild->Disable();
}
else // child already disabled, remember it
{
//
// Have we created the list of disabled children already?
//
if (!m_pChildrenDisabled)
m_pChildrenDisabled = new wxWindowList;
m_pChildrenDisabled->Append(pChild);
}
}
pNode = pNode->GetNext(); pNode = pNode->GetNext();
} }
if (bEnable && m_pChildrenDisabled)
{
//
// We don't need this list any more, don't keep unused memory
//
delete m_pChildrenDisabled;
m_pChildrenDisabled = NULL;
}
return TRUE; return TRUE;
} // end of wxWindowOS2::Enable } // end of wxWindowOS2::Enable

View File

@@ -80,8 +80,8 @@ EXPORTS
__ct__9wxAppBaseFv __ct__9wxAppBaseFv
;wxAppBase::OnInit() ;wxAppBase::OnInit()
OnInit__9wxAppBaseFv OnInit__9wxAppBaseFv
;wxAppBase::DoInit() ;wxAppBase::CreateMessageOutput()
DoInit__9wxAppBaseFv CreateMessageOutput__9wxAppBaseFv
;wxOnAssert(const char*,int,const char*,const char*) ;wxOnAssert(const char*,int,const char*,const char*)
wxOnAssert__FPCciN21 wxOnAssert__FPCciN21
;wxAppBase::~wxAppBase() ;wxAppBase::~wxAppBase()
@@ -90,6 +90,8 @@ EXPORTS
ProcessPendingEvents__9wxAppBaseFv ProcessPendingEvents__9wxAppBaseFv
;wxAppBase::OnCmdLineError(wxCmdLineParser&) ;wxAppBase::OnCmdLineError(wxCmdLineParser&)
OnCmdLineError__9wxAppBaseFR15wxCmdLineParser OnCmdLineError__9wxAppBaseFR15wxCmdLineParser
;wxAppBase::CreateLogTarget()
CreateLogTarget__9wxAppBaseFv
;wxAppBase::SetActive(unsigned long,wxWindow*) ;wxAppBase::SetActive(unsigned long,wxWindow*)
SetActive__9wxAppBaseFUlP8wxWindow SetActive__9wxAppBaseFUlP8wxWindow
;From object file: ..\common\choiccmn.cpp ;From object file: ..\common\choiccmn.cpp
@@ -4705,11 +4707,15 @@ EXPORTS
__vft9wxProcess8wxObject __vft9wxProcess8wxObject
;wxProcess::Open(const wxString&,int) ;wxProcess::Open(const wxString&,int)
Open__9wxProcessFRC8wxStringi Open__9wxProcessFRC8wxStringi
;wxProcess::IsErrorAvailable() const
IsErrorAvailable__9wxProcessCFv
wxEVT_END_PROCESS wxEVT_END_PROCESS
;wxProcess::Init(wxEvtHandler*,int,int) ;wxProcess::Init(wxEvtHandler*,int,int)
Init__9wxProcessFP12wxEvtHandleriT2 Init__9wxProcessFP12wxEvtHandleriT2
;wxProcess::~wxProcess() ;wxProcess::~wxProcess()
__dt__9wxProcessFv __dt__9wxProcessFv
;wxProcess::IsInputOpened() const
IsInputOpened__9wxProcessCFv
;wxConstructorForwxProcessEvent() ;wxConstructorForwxProcessEvent()
wxConstructorForwxProcessEvent__Fv wxConstructorForwxProcessEvent__Fv
;wxProcess::sm_classwxProcess ;wxProcess::sm_classwxProcess
@@ -4720,6 +4726,8 @@ EXPORTS
OnTerminate__9wxProcessFiT1 OnTerminate__9wxProcessFiT1
;wxProcess::Detach() ;wxProcess::Detach()
Detach__9wxProcessFv Detach__9wxProcessFv
;wxProcess::IsInputAvailable() const
IsInputAvailable__9wxProcessCFv
;From object file: ..\common\protocol.cpp ;From object file: ..\common\protocol.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxProtocol::wxProtocol() ;wxProtocol::wxProtocol()
@@ -5212,10 +5220,12 @@ EXPORTS
Add__7wxSizerFP7wxSizeriN22P8wxObject Add__7wxSizerFP7wxSizeriN22P8wxObject
;wxSizer::Prepend(int,int,int,int,int,wxObject*) ;wxSizer::Prepend(int,int,int,int,int,wxObject*)
Prepend__7wxSizerFiN41P8wxObject Prepend__7wxSizerFiN41P8wxObject
;wxFlexGridSizer::AddGrowableCol(unsigned int) ;wxGridSizer::CalcRowsCols(int&,int&) const
AddGrowableCol__15wxFlexGridSizerFUi CalcRowsCols__11wxGridSizerCFRiT1
;wxBoxSizer::wxBoxSizer(int) ;wxBoxSizer::wxBoxSizer(int)
__ct__10wxBoxSizerFi __ct__10wxBoxSizerFi
;wxFlexGridSizer::AddGrowableCol(unsigned int)
AddGrowableCol__15wxFlexGridSizerFUi
;wxSizerItem::IsSizer() ;wxSizerItem::IsSizer()
IsSizer__11wxSizerItemFv IsSizer__11wxSizerItemFv
;wxNotebookSizer::sm_classwxNotebookSizer ;wxNotebookSizer::sm_classwxNotebookSizer
@@ -7196,15 +7206,15 @@ EXPORTS
wxGetTopLevelParent__FP8wxWindow wxGetTopLevelParent__FP8wxWindow
;From object file: ..\common\wxchar.cpp ;From object file: ..\common\wxchar.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxVsnprintf_(char*,unsigned int,const char*,char*)
wxVsnprintf___FPcUiPCcT1
wcslen wcslen
;wxMB2WC(wchar_t*,const char*,unsigned int) ;wxMB2WC(wchar_t*,const char*,unsigned int)
wxMB2WC__FPwPCcUi wxMB2WC__FPwPCcUi
;wxVsnprintf(char*,unsigned int,const char*,char*) ;wxSnprintf_(char*,unsigned int,const char*,...)
wxVsnprintf__FPcUiPCcT1 wxSnprintf___FPcUiPCce
;wxWC2MB(char*,const wchar_t*,unsigned int) ;wxWC2MB(char*,const wchar_t*,unsigned int)
wxWC2MB__FPcPCwUi wxWC2MB__FPcPCwUi
;wxSnprintf(char*,unsigned int,const char*,...)
wxSnprintf__FPcUiPCce
;wxOKlibc() ;wxOKlibc()
wxOKlibc__Fv wxOKlibc__Fv
;From object file: ..\common\wxexpr.cpp ;From object file: ..\common\wxexpr.cpp
@@ -9129,8 +9139,6 @@ EXPORTS
SetItem__17wxGenericListCtrlFR10wxListItem SetItem__17wxGenericListCtrlFR10wxListItem
;wxListLineData::SetItem(int,const wxListItem&) ;wxListLineData::SetItem(int,const wxListItem&)
SetItem__14wxListLineDataFiRC10wxListItem SetItem__14wxListLineDataFiRC10wxListItem
;wxGenericListCtrl::SetImageList(wxGenericImageList*,int)
SetImageList__17wxGenericListCtrlFP18wxGenericImageListi
;wxGenericListCtrl::SetColumnWidth(int,int) ;wxGenericListCtrl::SetColumnWidth(int,int)
SetColumnWidth__17wxGenericListCtrlFiT1 SetColumnWidth__17wxGenericListCtrlFiT1
;wxGenericListCtrl::ScrollList(int,int) ;wxGenericListCtrl::ScrollList(int,int)
@@ -9223,8 +9231,8 @@ EXPORTS
SetItem__16wxListHeaderDataFRC10wxListItem SetItem__16wxListHeaderDataFRC10wxListItem
;wxListMainWindow::SetItemState(long,long,long) ;wxListMainWindow::SetItemState(long,long,long)
SetItemState__16wxListMainWindowFlN21 SetItemState__16wxListMainWindowFlN21
;wxListMainWindow::SetImageList(wxGenericImageList*,int) ;wxListMainWindow::SetImageList(wxImageList*,int)
SetImageList__16wxListMainWindowFP18wxGenericImageListi SetImageList__16wxListMainWindowFP11wxImageListi
;wxGenericListCtrl::SetColumn(int,wxListItem&) ;wxGenericListCtrl::SetColumn(int,wxListItem&)
SetColumn__17wxGenericListCtrlFiR10wxListItem SetColumn__17wxGenericListCtrlFiR10wxListItem
;wxListMainWindow::SetColumnWidth(int,int) ;wxListMainWindow::SetColumnWidth(int,int)
@@ -9253,6 +9261,8 @@ EXPORTS
DeleteColumn__17wxGenericListCtrlFi DeleteColumn__17wxGenericListCtrlFi
;wxListMainWindow::CacheLineData(unsigned int) ;wxListMainWindow::CacheLineData(unsigned int)
CacheLineData__16wxListMainWindowFUi CacheLineData__16wxListMainWindowFUi
;wxGenericListCtrl::AssignImageList(wxImageList*,int)
AssignImageList__17wxGenericListCtrlFP11wxImageListi
;wxGenericListCtrl::GetNextItem(long,int,int) const ;wxGenericListCtrl::GetNextItem(long,int,int) const
GetNextItem__17wxGenericListCtrlCFliT2 GetNextItem__17wxGenericListCtrlCFliT2
;wxConstructorForwxListCtrl() ;wxConstructorForwxListCtrl()
@@ -9374,8 +9384,6 @@ EXPORTS
DrawImage__16wxListMainWindowFiP4wxDCN21 DrawImage__16wxListMainWindowFiP4wxDCN21
;wxListMainWindow::ChangeCurrent(unsigned int) ;wxListMainWindow::ChangeCurrent(unsigned int)
ChangeCurrent__16wxListMainWindowFUi ChangeCurrent__16wxListMainWindowFUi
;wxGenericListCtrl::AssignImageList(wxGenericImageList*,int)
AssignImageList__17wxGenericListCtrlFP18wxGenericImageListi
;wxGenericListCtrl::~wxGenericListCtrl() ;wxGenericListCtrl::~wxGenericListCtrl()
__dt__17wxGenericListCtrlFv __dt__17wxGenericListCtrlFv
wxEVT_COMMAND_LIST_KEY_DOWN wxEVT_COMMAND_LIST_KEY_DOWN
@@ -9590,6 +9598,8 @@ EXPORTS
SetItem__16wxListMainWindowFR10wxListItem SetItem__16wxListMainWindowFR10wxListItem
;wxListItemData::SetItem(const wxListItem&) ;wxListItemData::SetItem(const wxListItem&)
SetItem__14wxListItemDataFRC10wxListItem SetItem__14wxListItemDataFRC10wxListItem
;wxGenericListCtrl::SetImageList(wxImageList*,int)
SetImageList__17wxGenericListCtrlFP11wxImageListi
;wxListMainWindow::SetColumn(int,wxListItem&) ;wxListMainWindow::SetColumn(int,wxListItem&)
SetColumn__16wxListMainWindowFiR10wxListItem SetColumn__16wxListMainWindowFiR10wxListItem
;wxListLineDataArray::RemoveAt(unsigned int,unsigned int) ;wxListLineDataArray::RemoveAt(unsigned int,unsigned int)
@@ -11788,6 +11798,8 @@ EXPORTS
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxButton::Command(wxCommandEvent&) ;wxButton::Command(wxCommandEvent&)
Command__8wxButtonFR14wxCommandEvent Command__8wxButtonFR14wxCommandEvent
;wxButton::SetDefaultStyle(wxButton*,unsigned long)
SetDefaultStyle__8wxButtonFP8wxButtonUl
;wxButton::SetTmpDefault() ;wxButton::SetTmpDefault()
SetTmpDefault__8wxButtonFv SetTmpDefault__8wxButtonFv
;wxButton::WindowProc(unsigned int,void*,void*) ;wxButton::WindowProc(unsigned int,void*,void*)
@@ -11804,8 +11816,6 @@ EXPORTS
__dt__8wxButtonFv __dt__8wxButtonFv
;wxButton::SendClickEvent() ;wxButton::SendClickEvent()
SendClickEvent__8wxButtonFv SendClickEvent__8wxButtonFv
;wxButton::UpdateDefaultStyle(wxWindow*,wxWindow*)
UpdateDefaultStyle__8wxButtonFP8wxWindowT1
;wxConstructorForwxButton() ;wxConstructorForwxButton()
wxConstructorForwxButton__Fv wxConstructorForwxButton__Fv
;wxButton::GetDefaultSize() ;wxButton::GetDefaultSize()
@@ -12817,6 +12827,8 @@ EXPORTS
HandleMenuSelect__7wxFrameFUsT1Ul HandleMenuSelect__7wxFrameFUsT1Ul
;wxFrame::OS2TranslateMessage(void**) ;wxFrame::OS2TranslateMessage(void**)
OS2TranslateMessage__7wxFrameFPPv OS2TranslateMessage__7wxFrameFPPv
;wxFrame::SendSizeEvent()
SendSizeEvent__7wxFrameFv
;wxFrame::HandlePaint() ;wxFrame::HandlePaint()
HandlePaint__7wxFrameFv HandlePaint__7wxFrameFv
;wxFrame::OnCreateStatusBar(int,long,int,const wxString&) ;wxFrame::OnCreateStatusBar(int,long,int,const wxString&)
@@ -13577,14 +13589,14 @@ EXPORTS
GetDescription__14wxFileTypeImplCFP8wxString GetDescription__14wxFileTypeImplCFP8wxString
;wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString&) ;wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString&)
EnumAllFileTypes__22wxMimeTypesManagerImplFR13wxArrayString EnumAllFileTypes__22wxMimeTypesManagerImplFR13wxArrayString
;wxFileTypeImpl::GetIcon(wxIcon*,wxString*,int*) const
GetIcon__14wxFileTypeImplCFP6wxIconP8wxStringPi
;wxFileTypeImpl::GetOpenCommand(wxString*,const wxFileType::MessageParameters&) const ;wxFileTypeImpl::GetOpenCommand(wxString*,const wxFileType::MessageParameters&) const
GetOpenCommand__14wxFileTypeImplCFP8wxStringRCQ2_10wxFileType17MessageParameters GetOpenCommand__14wxFileTypeImplCFP8wxStringRCQ2_10wxFileType17MessageParameters
;wxFileTypeImpl::GetPrintCommand(wxString*,const wxFileType::MessageParameters&) const ;wxFileTypeImpl::GetPrintCommand(wxString*,const wxFileType::MessageParameters&) const
GetPrintCommand__14wxFileTypeImplCFP8wxStringRCQ2_10wxFileType17MessageParameters GetPrintCommand__14wxFileTypeImplCFP8wxStringRCQ2_10wxFileType17MessageParameters
;wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString&) ;wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString&)
GetFileTypeFromExtension__22wxMimeTypesManagerImplFRC8wxString GetFileTypeFromExtension__22wxMimeTypesManagerImplFRC8wxString
;wxFileTypeImpl::GetIcon(wxIcon*) const
GetIcon__14wxFileTypeImplCFP6wxIcon
;wxFileTypeImpl::GetCommand(const char*) const ;wxFileTypeImpl::GetCommand(const char*) const
GetCommand__14wxFileTypeImplCFPCc GetCommand__14wxFileTypeImplCFPCc
;wxFileTypeImpl::GetMimeTypes(wxArrayString&) const ;wxFileTypeImpl::GetMimeTypes(wxArrayString&) const
@@ -14183,6 +14195,8 @@ EXPORTS
m_svAllSpins__10wxSpinCtrl m_svAllSpins__10wxSpinCtrl
;wxSpinCtrl::DoGetPosition(int*,int*) const ;wxSpinCtrl::DoGetPosition(int*,int*) const
DoGetPosition__10wxSpinCtrlCFPiT1 DoGetPosition__10wxSpinCtrlCFPiT1
;wxSpinCtrl::SetSelection(long,long)
SetSelection__10wxSpinCtrlFlT1
;wxSpinCtrl::DoMoveWindow(int,int,int,int) ;wxSpinCtrl::DoMoveWindow(int,int,int,int)
DoMoveWindow__10wxSpinCtrlFiN31 DoMoveWindow__10wxSpinCtrlFiN31
wxSpinCtrlWndProc wxSpinCtrlWndProc