OS/2 fixes for this week.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11015 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2001-07-13 17:42:49 +00:00
parent 2e57a9efc5
commit 893758d507
11 changed files with 498 additions and 237 deletions

View File

@@ -994,6 +994,16 @@ void wxApp::OnIdle(
wxLog::FlushActive(); wxLog::FlushActive();
#endif // wxUSE_LOG #endif // wxUSE_LOG
#if wxUSE_DC_CACHEING
// automated DC cache management: clear the cached DCs and bitmap
// if it's likely that the app has finished with them, that is, we
// get an idle event and we're not dragging anything.
if (!::WinGetKeyState(MK_LBUTTON) &&
!::WinGetKeyState(MK_MBUTTON) &&
!::WinGetKeyState(MK_RBUTTON))
wxDC::ClearCache();
#endif // wxUSE_DC_CACHEING
// //
// Send OnIdle events to all windows // Send OnIdle events to all windows
// //

View File

@@ -277,7 +277,7 @@ void wxCheckListBox::Delete(int N)
// free memory // free memory
delete m_aItems[N]; delete m_aItems[N];
m_aItems.Remove(N); m_aItems.RemoveAt(N);
} }
void wxCheckListBox::InsertItems(int nItems, const wxString items[], int pos) void wxCheckListBox::InsertItems(int nItems, const wxString items[], int pos)

View File

@@ -149,6 +149,192 @@ int SetBkMode(
// implementation // implementation
// =========================================================================== // ===========================================================================
#if wxUSE_DC_CACHEING
/*
* This implementation is a bit ugly and uses the old-fashioned wxList class, so I will
* improve it in due course, either using arrays, or simply storing pointers to one
* entry for the bitmap, and two for the DCs. -- JACS
*/
// ---------------------------------------------------------------------------
// wxDCCacheEntry
// ---------------------------------------------------------------------------
wxList wxDC::m_svBitmapCache;
wxList wxDC::m_svDCCache;
wxDCCacheEntry::wxDCCacheEntry(
WXHBITMAP hBitmap
, int nWidth
, int nHeight
, int nDepth
)
{
m_hBitmap = hBitmap;
m_hPS = NULLHANDLE;
m_nWidth = nWidth;
m_nHeight = nHeight;
m_nDepth = nDepth;
} // end of wxDCCacheEntry::wxDCCacheEntry
wxDCCacheEntry::wxDCCacheEntry(
HPS hPS
, int nDepth
)
{
m_hBitmap = NULLHANDLE;
m_hPS = hPS;
m_nWidth = 0;
m_nHeight = 0;
m_nDepth = nDepth;
} // end of wxDCCacheEntry::wxDCCacheEntry
wxDCCacheEntry::~wxDCCacheEntry()
{
if (m_hBitmap)
::GpiDeleteBitmap(m_hBitmap);
if (m_hPS)
::GpiDestroyPS(m_hPS);
} // end of wxDCCacheEntry::~wxDCCacheEntry
wxDCCacheEntry* wxDC::FindBitmapInCache(
HPS hPS
, int nWidth
, int nHeight
)
{
int nDepth = 24 // we'll fix this later ::GetDeviceCaps((HDC) dc, PLANES) * ::GetDeviceCaps((HDC) dc, BITSPIXEL);
wxNode* pNode = m_svBitmapCache.First();
BITMAPINFOHEADER2 vBmpHdr;
while(pNode)
{
wxDCCacheEntry* pEntry = (wxDCCacheEntry*)pNode->Data();
if (pEntry->m_nDepth == nDepth)
{
memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2));
if (pEntry->m_nWidth < nWidth || pEntry->m_nHeight < nHeight)
{
::GpiDeleteBitmap((HBITMAP)pEntry->m_hBitmap);
vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2);
vBmpHdr.cx = nWidth;
vBmpHdr.cy = nHeight;
vBmpHdr.cPlanes = 1;
vBmpHdr.cBitCount = nDepth;
pEntry->m_hBitmap = (WXHBITMAP) ::GpiCreateBitmap( hPS
,&vBmpHdr
,0L, NULL, NULL
);
if (!pEntry->m_hBitmap)
{
wxLogLastError(wxT("CreateCompatibleBitmap"));
}
pEntry->m_nWidth = nWidth;
pEntry->m_nHeight = nHeight;
return pEntry;
}
return pEntry;
}
pNode = pNode->Next();
}
memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2));
vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2);
vBmpHdr.cx = nWidth;
vBmpHdr.cy = nHeight;
vBmpHdr.cPlanes = 1;
vBmpHdr.cBitCount = nDepth;
WXHBITMAP hBitmap = (WXHBITMAP) ::GpiCreateBitmap( hPS
,&vBmpHdr
,0L, NULL, NULL
);
if (!hBitmap)
{
wxLogLastError(wxT("CreateCompatibleBitmap"));
}
wxDCCacheEntry* pEntry = new wxDCCacheEntry( hBitmap
,nWidth
,nHeight
,nDepth
);
AddToBitmapCache(pEntry);
return pEntry;
} // end of FindBitmapInCache
wxDCCacheEntry* wxDC::FindDCInCache(
wxDCCacheEntry* pNotThis
, HPS hPS
)
{
int nDepth = 24; // we'll fix this up later ::GetDeviceCaps((HDC) dc, PLANES) * ::GetDeviceCaps((HDC) dc, BITSPIXEL);
wxNode* pNode = m_svDCCache.First();
while(pNode)
{
wxDCCacheEntry* pEntry = (wxDCCacheEntry*)pNode->Data();
//
// Don't return the same one as we already have
//
if (!pNotThis || (pNotThis != pEntry))
{
if (pEntry->m_nDepth == nDepth)
{
return pEntry;
}
}
pNode = pNode->Next();
}
wxDCCacheEntry* pEntry = new wxDCCacheEntry( hPS
,nDepth
);
AddToDCCache(pEntry);
return pEntry;
} // end of wxDC::FindDCInCache
void wxDC::AddToBitmapCache(
wxDCCacheEntry* pEntry
)
{
m_svBitmapCache.Append(pEntry);
} // end of wxDC::AddToBitmapCache
void wxDC::AddToDCCache(
wxDCCacheEntry* pEntry
)
{
m_svDCCache.Append(pEntry);
} // end of wxDC::AddToDCCache
void wxDC::ClearCache()
{
m_svBitmapCache.DeleteContents(TRUE);
m_svBitmapCache.Clear();
m_svBitmapCache.DeleteContents(FALSE);
m_svDCCache.DeleteContents(TRUE);
m_svDCCache.Clear();
m_svDCCache.DeleteContents(FALSE);
} // end of wxDC::ClearCache
// Clean up cache at app exit
class wxDCModule : public wxModule
{
public:
virtual bool OnInit() { return TRUE; }
virtual void OnExit() { wxDC::ClearCache(); }
private:
DECLARE_DYNAMIC_CLASS(wxDCModule)
}; // end of CLASS wxDCModule
IMPLEMENT_DYNAMIC_CLASS(wxDCModule, wxModule)
#endif // ndef for wxUSE_DC_CACHEING
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// wxDC // wxDC
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
@@ -1745,6 +1931,8 @@ bool wxDC::DoBlit(
, wxCoord vYsrc , wxCoord vYsrc
, int nRop , int nRop
, bool bUseMask , bool bUseMask
, wxCoord vXsrcMask
, wxCoord vYsrcMask
) )
{ {
wxMask* pMask = NULL; wxMask* pMask = NULL;
@@ -1827,14 +2015,10 @@ bool wxDC::DoBlit(
HPS hPSBuffer; HPS hPSBuffer;
DEVOPENSTRUC vDOP = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; DEVOPENSTRUC vDOP = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L};
BITMAPINFOHEADER2 vBmpHdr; BITMAPINFOHEADER2 vBmpHdr;
HBITMAP hBufBitmap;
SIZEL vSize = {0, 0}; SIZEL vSize = {0, 0};
LONG rc; LONG rc;
hDCMask = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE);
hDCBuffer = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE);
hPSMask = ::GpiCreatePS(vHabmain, hDCMask, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC);
hPSBuffer = ::GpiCreatePS(vHabmain, hDCBuffer, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC);
memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2)); memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2));
vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2); vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2);
vBmpHdr.cx = vWidth; vBmpHdr.cx = vWidth;
@@ -1842,7 +2026,37 @@ bool wxDC::DoBlit(
vBmpHdr.cPlanes = 1; vBmpHdr.cPlanes = 1;
vBmpHdr.cBitCount = 24; vBmpHdr.cBitCount = 24;
HBITMAP hBufBitmap = ::GpiCreateBitmap(GetHPS(), &vBmpHdr, 0L, NULL, NULL); #if wxUSE_DC_CACHEING
if (TRUE)
{
//
// create a temp buffer bitmap and DCs to access it and the mask
//
wxDCCacheEntry* pDCCacheEntry1 = FindDCInCache( NULL
,pSource->GetHPS()
);
wxDCCacheEntry* pDCCacheEntry2 = FindDCInCache( pDCCacheEntry1
,GetHPS()
);
wxDCCacheEntry* pBitmapCacheEntry = FindBitmapInCache( GetHPS()
,vWidth
,vHeight
);
hPSMask = pDCCacheEntry1->m_hPS;
hDCBuffer = (HDC)pDCCacheEntry2->m_hPS;
hBufBitmap = (HBITMAP)pBitmapCacheEntry->m_hBitmap;
}
else
#endif
{
hDCMask = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE);
hDCBuffer = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE);
hPSMask = ::GpiCreatePS(vHabmain, hDCMask, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC);
hPSBuffer = ::GpiCreatePS(vHabmain, hDCBuffer, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC);
hBufBitmap = ::GpiCreateBitmap(GetHPS(), &vBmpHdr, 0L, NULL, NULL);
}
POINTL aPoint1[4] = { 0, 0 POINTL aPoint1[4] = { 0, 0
,vWidth, vHeight ,vWidth, vHeight
,vXdest, vYdest ,vXdest, vYdest
@@ -1961,11 +2175,13 @@ bool wxDC::DoBlit(
// //
::GpiSetBitmap(hPSMask, NULLHANDLE); ::GpiSetBitmap(hPSMask, NULLHANDLE);
::GpiSetBitmap(hPSBuffer, NULLHANDLE); ::GpiSetBitmap(hPSBuffer, NULLHANDLE);
#if !wxUSE_DC_CACHEING
::GpiDestroyPS(hPSMask); ::GpiDestroyPS(hPSMask);
::GpiDestroyPS(hPSBuffer); ::GpiDestroyPS(hPSBuffer);
::DevCloseDC(hDCMask); ::DevCloseDC(hDCMask);
::DevCloseDC(hDCBuffer); ::DevCloseDC(hDCBuffer);
::GpiDeleteBitmap(hBufBitmap); ::GpiDeleteBitmap(hBufBitmap);
#endif
bSuccess = TRUE; bSuccess = TRUE;
} }
else // no mask, just BitBlt() it else // no mask, just BitBlt() it

View File

@@ -335,7 +335,7 @@ wxPaintDC::~wxPaintDC()
::WinEndPaint(m_hPS); ::WinEndPaint(m_hPS);
m_hPS = m_hOldPS; m_hPS = m_hOldPS;
m_bIsPaintTime = FALSE; m_bIsPaintTime = FALSE;
ms_cache.Remove(nIndex); ms_cache.RemoveAt(nIndex);
} }
//else: cached DC entry is still in use //else: cached DC entry is still in use

View File

@@ -617,6 +617,43 @@ void wxFrameOS2::SetMenuBar(
} }
} // end of wxFrameOS2::SetMenuBar } // end of wxFrameOS2::SetMenuBar
void wxFrameOS2::AttachMenuBar(
wxMenuBar* pMenubar
)
{
m_frameMenuBar = pMenubar;
if (!pMenubar)
{
//
// Actually remove the menu from the frame
//
m_hMenu = (WXHMENU)0;
InternalSetMenuBar();
}
else // Set new non NULL menu bar
{
//
// Can set a menubar several times.
//
if (pMenubar->GetHMenu())
{
m_hMenu = pMenubar->GetHMenu();
}
else
{
if (pMenubar->IsAttached())
pMenubar->Detach();
m_hMenu = pMenubar->Create();
if (!m_hMenu)
return;
}
InternalSetMenuBar();
}
} // end of wxFrameOS2::AttachMenuBar
void wxFrameOS2::InternalSetMenuBar() void wxFrameOS2::InternalSetMenuBar()
{ {
ERRORID vError; ERRORID vError;

View File

@@ -209,7 +209,7 @@ void wxListBox::Delete(int N)
#if wxUSE_OWNER_DRAWN #if wxUSE_OWNER_DRAWN
delete m_aItems[N]; delete m_aItems[N];
m_aItems.Remove(N); m_aItems.RemoveAt(N);
#else // !wxUSE_OWNER_DRAWN #else // !wxUSE_OWNER_DRAWN
if ( HasClientObjectData() ) if ( HasClientObjectData() )
{ {

View File

@@ -288,6 +288,7 @@ COMMONOBJS = \
..\common\$D\strconv.obj \ ..\common\$D\strconv.obj \
..\common\$D\stream.obj \ ..\common\$D\stream.obj \
..\common\$D\string.obj \ ..\common\$D\string.obj \
..\common\$D\sysopt.obj \
..\common\$D\tbarbase.obj \ ..\common\$D\tbarbase.obj \
..\common\$D\textcmn.obj \ ..\common\$D\textcmn.obj \
..\common\$D\textfile.obj \ ..\common\$D\textfile.obj \
@@ -409,6 +410,7 @@ COMLIBOBJS3 = \
strconv.obj \ strconv.obj \
stream.obj \ stream.obj \
string.obj \ string.obj \
sysopt.obj \
tbarbase.obj \ tbarbase.obj \
textcmn.obj \ textcmn.obj \
textfile.obj \ textfile.obj \
@@ -758,6 +760,7 @@ $(COMLIBOBJS3):
copy ..\common\$D\strconv.obj copy ..\common\$D\strconv.obj
copy ..\common\$D\stream.obj copy ..\common\$D\stream.obj
copy ..\common\$D\string.obj copy ..\common\$D\string.obj
copy ..\common\$D\sysopt.obj
copy ..\common\$D\tbarbase.obj copy ..\common\$D\tbarbase.obj
copy ..\common\$D\textcmn.obj copy ..\common\$D\textcmn.obj
copy ..\common\$D\textfile.obj copy ..\common\$D\textfile.obj

View File

@@ -244,7 +244,7 @@ void wxMenu::UpdateAccel(
if (pAccel) if (pAccel)
m_vAccels[n] = pAccel; m_vAccels[n] = pAccel;
else else
m_vAccels.Remove(n); m_vAccels.RemoveAt(n);
} }
if (IsAttached()) if (IsAttached())
@@ -448,7 +448,7 @@ wxMenuItem* wxMenu::DoRemove(
if (n != wxNOT_FOUND) if (n != wxNOT_FOUND)
{ {
delete m_vAccels[n]; delete m_vAccels[n];
m_vAccels.Remove(n); m_vAccels.RemoveAt(n);
} }
#endif // wxUSE_ACCEL #endif // wxUSE_ACCEL

View File

@@ -275,7 +275,7 @@ bool wxNotebook::DeletePage(int nPage)
// TODO: delete native widget page // TODO: delete native widget page
delete m_aPages[nPage]; delete m_aPages[nPage];
m_aPages.Remove(nPage); m_aPages.RemoveAt(nPage);
return TRUE; return TRUE;
} }
@@ -285,7 +285,7 @@ bool wxNotebook::RemovePage(int nPage)
{ {
wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, wxT("notebook page out of range") ); wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, wxT("notebook page out of range") );
m_aPages.Remove(nPage); m_aPages.RemoveAt(nPage);
return TRUE; return TRUE;
} }

View File

@@ -356,66 +356,3 @@ int wxSystemSettings::GetSystemMetric(int index)
return 0; return 0;
} }
// Option functions (arbitrary name/value mapping)
void wxSystemSettings::SetOption(
const wxString& rsName
, const wxString& rsValue
)
{
int nIdx = wxSystemSettingsModule::sm_optionNames.Index( rsName
,FALSE
);
if (nIdx == wxNOT_FOUND)
{
wxSystemSettingsModule::sm_optionNames.Add(rsName);
wxSystemSettingsModule::sm_optionValues.Add(rsValue);
}
else
{
wxSystemSettingsModule::sm_optionNames[nIdx] = rsName;
wxSystemSettingsModule::sm_optionValues[nIdx] = rsValue;
}
}
void wxSystemSettings::SetOption(
const wxString& rsName
, int nValue
)
{
wxString sValStr;
sValStr.Printf(wxT("%d"), nValue);
SetOption( rsName
,sValStr
);
} // end of
wxString wxSystemSettings::GetOption(
const wxString& rsName
)
{
int nIdx = wxSystemSettingsModule::sm_optionNames.Index( rsName
,FALSE
);
if (nIdx == wxNOT_FOUND)
return wxEmptyString;
else
return wxSystemSettingsModule::sm_optionValues[nIdx];
} // end of
int wxSystemSettings::GetOptionInt(
const wxString& rsName
)
{
return wxAtoi(GetOption(rsName));
} // end of
bool wxSystemSettings::HasOption(
const wxString& rsName
)
{
return (wxSystemSettingsModule::sm_optionNames.Index(rsName, FALSE) != wxNOT_FOUND);
} // end of wxSystemSettings::HasOption

View File

@@ -4,19 +4,29 @@ DATA MULTIPLE NONSHARED READWRITE LOADONCALL
CODE LOADONCALL CODE LOADONCALL
EXPORTS EXPORTS
;From library: H:\DEV\WX2\WXWINDOWS\lib\wx.lib ;From library: H:\Dev\wx2\Wxwindows\lib\wx.lib
;From object file: dummy.cpp ;From object file: dummy.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
wxDummyChar wxDummyChar
;From object file: ..\common\appcmn.cpp ;From object file: ..\common\appcmn.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxOnAssert(const char*,int,const char*)
wxOnAssert__FPCciT1
;wxAppBase::OnInitGui() ;wxAppBase::OnInitGui()
OnInitGui__9wxAppBaseFv OnInitGui__9wxAppBaseFv
__vft9wxAppBase8wxObject __vft9wxAppBase8wxObject
;wxTrap()
wxTrap__Fv
;wxAppBase::OnAssert(const char*,int,const char*)
OnAssert__9wxAppBaseFPCciT1
;wxAppBase::OnExit() ;wxAppBase::OnExit()
OnExit__9wxAppBaseFv OnExit__9wxAppBaseFv
;wxAssertIsEqual(int,int)
wxAssertIsEqual__FiT1
;wxAppBase::wxAppBase() ;wxAppBase::wxAppBase()
__ct__9wxAppBaseFv __ct__9wxAppBaseFv
;wxAppBase::OnInit()
OnInit__9wxAppBaseFv
;wxAppBase::ProcessPendingEvents() ;wxAppBase::ProcessPendingEvents()
ProcessPendingEvents__9wxAppBaseFv ProcessPendingEvents__9wxAppBaseFv
;wxAppBase::SetActive(unsigned long,wxWindow*) ;wxAppBase::SetActive(unsigned long,wxWindow*)
@@ -1148,6 +1158,8 @@ EXPORTS
__dt__11wxBaseArrayFv __dt__11wxBaseArrayFv
;wxBaseArray::Sort(int(*)(const void*,const void*)) ;wxBaseArray::Sort(int(*)(const void*,const void*))
Sort__11wxBaseArrayFPFPCvT1_i Sort__11wxBaseArrayFPFPCvT1_i
;wxBaseArray::IndexForInsert(long,int(*)(const void*,const void*)) const
IndexForInsert__11wxBaseArrayCFlPFPCvT1_i
;wxBaseArray::wxBaseArray() ;wxBaseArray::wxBaseArray()
__ct__11wxBaseArrayFv __ct__11wxBaseArrayFv
;wxBaseArray::Clear() ;wxBaseArray::Clear()
@@ -1610,6 +1622,27 @@ EXPORTS
ConvertToIeeeExtended ConvertToIeeeExtended
ConvertFromIeeeExtended ConvertFromIeeeExtended
;From object file: ..\common\ffile.cpp ;From object file: ..\common\ffile.cpp
;PUBDEFs (Symbols available from object file):
;wxFFile::Seek(long,wxSeekMode)
Seek__7wxFFileFl10wxSeekMode
;wxFFile::Read(void*,unsigned int)
Read__7wxFFileFPvUi
;wxFFile::Close()
Close__7wxFFileFv
;wxFFile::Length() const
Length__7wxFFileCFv
;wxFFile::wxFFile(const char*,const char*)
__ct__7wxFFileFPCcT1
;wxFFile::Tell() const
Tell__7wxFFileCFv
;wxFFile::Write(const void*,unsigned int)
Write__7wxFFileFPCvUi
;wxFFile::Open(const char*,const char*)
Open__7wxFFileFPCcT1
;wxFFile::Flush()
Flush__7wxFFileFv
;wxFFile::ReadAll(wxString*)
ReadAll__7wxFFileFP8wxString
;From object file: ..\common\file.cpp ;From object file: ..\common\file.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxFile::Tell() const ;wxFile::Tell() const
@@ -2060,6 +2093,10 @@ EXPORTS
DoScreenToClient__11wxFrameBaseCFPiT1 DoScreenToClient__11wxFrameBaseCFPiT1
;wxFrameBase::DeleteAllBars() ;wxFrameBase::DeleteAllBars()
DeleteAllBars__11wxFrameBaseFv DeleteAllBars__11wxFrameBaseFv
;wxFrameBase::SetMenuBar(wxMenuBar*)
SetMenuBar__11wxFrameBaseFP9wxMenuBar
;wxFrameBase::DetachMenuBar()
DetachMenuBar__11wxFrameBaseFv
;wxFrameBase::CreateStatusBar(int,long,int,const wxString&) ;wxFrameBase::CreateStatusBar(int,long,int,const wxString&)
CreateStatusBar__11wxFrameBaseFilT1RC8wxString CreateStatusBar__11wxFrameBaseFilT1RC8wxString
;wxFrameBase::OnCreateToolBar(long,int,const wxString&) ;wxFrameBase::OnCreateToolBar(long,int,const wxString&)
@@ -2096,6 +2133,8 @@ EXPORTS
ShowMenuHelp__11wxFrameBaseFP11wxStatusBari ShowMenuHelp__11wxFrameBaseFP11wxStatusBari
;wxFrameBase::GetEventTable() const ;wxFrameBase::GetEventTable() const
GetEventTable__11wxFrameBaseCFv GetEventTable__11wxFrameBaseCFv
;wxFrameBase::AttachMenuBar(wxMenuBar*)
AttachMenuBar__11wxFrameBaseFP9wxMenuBar
;wxFrameBase::SendIconizeEvent(unsigned long) ;wxFrameBase::SendIconizeEvent(unsigned long)
SendIconizeEvent__11wxFrameBaseFUl SendIconizeEvent__11wxFrameBaseFUl
__vft11wxFrameBase8wxObject __vft11wxFrameBase8wxObject
@@ -2933,12 +2972,12 @@ EXPORTS
GetString__12wxMsgCatalogCFPCc GetString__12wxMsgCatalogCFPCc
;wxLocale::FindCatalog(const char*) const ;wxLocale::FindCatalog(const char*) const
FindCatalog__8wxLocaleCFPCc FindCatalog__8wxLocaleCFPCc
;wxLanguageInfoArray::RemoveAt(unsigned int)
RemoveAt__19wxLanguageInfoArrayFUi
;wxLanguageInfoArray::operator=(const wxLanguageInfoArray&)
__as__19wxLanguageInfoArrayFRC19wxLanguageInfoArray
;wxLanguageInfoArray::DoCopy(const wxLanguageInfoArray&) ;wxLanguageInfoArray::DoCopy(const wxLanguageInfoArray&)
DoCopy__19wxLanguageInfoArrayFRC19wxLanguageInfoArray DoCopy__19wxLanguageInfoArrayFRC19wxLanguageInfoArray
;wxLanguageInfoArray::operator=(const wxLanguageInfoArray&)
__as__19wxLanguageInfoArrayFRC19wxLanguageInfoArray
;wxLanguageInfoArray::RemoveAt(unsigned int)
RemoveAt__19wxLanguageInfoArrayFUi
;wxMsgCatalog::GetHash(const char*) ;wxMsgCatalog::GetHash(const char*)
GetHash__12wxMsgCatalogFPCc GetHash__12wxMsgCatalogFPCc
;wxLocale::IsLoaded(const char*) const ;wxLocale::IsLoaded(const char*) const
@@ -3100,8 +3139,6 @@ EXPORTS
DoLog__5wxLogFUlPCcl DoLog__5wxLogFUlPCcl
;wxLogStream::DoLogString(const char*,long) ;wxLogStream::DoLogString(const char*,long)
DoLogString__11wxLogStreamFPCcl DoLogString__11wxLogStreamFPCcl
;wxOnAssert(const char*,int,const char*)
wxOnAssert__FPCciT1
;wxLogGeneric(unsigned long,const char*,...) ;wxLogGeneric(unsigned long,const char*,...)
wxLogGeneric__FUlPCce wxLogGeneric__FUlPCce
;wxLogDebug(const char*,...) ;wxLogDebug(const char*,...)
@@ -3110,6 +3147,8 @@ EXPORTS
__ct__5wxLogFv __ct__5wxLogFv
;wxLog::Flush() ;wxLog::Flush()
Flush__5wxLogFv Flush__5wxLogFv
;wxLogChain::Flush()
Flush__10wxLogChainFv
;wxLog::SetActiveTarget(wxLog*) ;wxLog::SetActiveTarget(wxLog*)
SetActiveTarget__5wxLogFP5wxLog SetActiveTarget__5wxLogFP5wxLog
;wxLog::ms_doLog ;wxLog::ms_doLog
@@ -3124,10 +3163,10 @@ EXPORTS
wxLogStatus__FPCce wxLogStatus__FPCce
;wxLog::ClearTraceMasks() ;wxLog::ClearTraceMasks()
ClearTraceMasks__5wxLogFv ClearTraceMasks__5wxLogFv
;wxTrap()
wxTrap__Fv
;wxLog::RemoveTraceMask(const wxString&) ;wxLog::RemoveTraceMask(const wxString&)
RemoveTraceMask__5wxLogFRC8wxString RemoveTraceMask__5wxLogFRC8wxString
;wxLog::ms_bVerbose
ms_bVerbose__5wxLog
;wxSysErrorMsg(unsigned long) ;wxSysErrorMsg(unsigned long)
wxSysErrorMsg__FUl wxSysErrorMsg__FUl
;wxLog::DoLogString(const char*,long) ;wxLog::DoLogString(const char*,long)
@@ -3142,14 +3181,19 @@ EXPORTS
DontCreateOnDemand__5wxLogFv DontCreateOnDemand__5wxLogFv
;wxLog::TimeStamp(wxString*) ;wxLog::TimeStamp(wxString*)
TimeStamp__5wxLogFP8wxString TimeStamp__5wxLogFP8wxString
__vft10wxLogChain5wxLog
;wxLogChain::wxLogChain(wxLog*)
__ct__10wxLogChainFP5wxLog
;wxLogInfo(const char*,...) ;wxLogInfo(const char*,...)
wxLogInfo__FPCce wxLogInfo__FPCce
;wxLogSysError(long,const char*,...) ;wxLogSysError(long,const char*,...)
wxLogSysError__FlPCce wxLogSysError__FlPCce
;wxAssertIsEqual(int,int)
wxAssertIsEqual__FiT1
;wxLogStream::wxLogStream(ostream*) ;wxLogStream::wxLogStream(ostream*)
__ct__11wxLogStreamFP7ostream __ct__11wxLogStreamFP7ostream
;wxLogPassThrough::wxLogPassThrough()
__ct__16wxLogPassThroughFv
;wxLogChain::SetLog(wxLog*)
SetLog__10wxLogChainFP5wxLog
;wxLog::ms_suspendCount ;wxLog::ms_suspendCount
ms_suspendCount__5wxLog ms_suspendCount__5wxLog
;wxLog::ms_bAutoCreate ;wxLog::ms_bAutoCreate
@@ -3158,6 +3202,8 @@ EXPORTS
__vft11wxLogStderr5wxLog __vft11wxLogStderr5wxLog
;wxLogStderr::DoLogString(const char*,long) ;wxLogStderr::DoLogString(const char*,long)
DoLogString__11wxLogStderrFPCcl DoLogString__11wxLogStderrFPCcl
;wxLogChain::DoLog(unsigned long,const char*,long)
DoLog__10wxLogChainFUlPCcl
;wxLogError(const char*,...) ;wxLogError(const char*,...)
wxLogError__FPCce wxLogError__FPCce
;wxLogTrace(const char*,...) ;wxLogTrace(const char*,...)
@@ -5034,6 +5080,7 @@ EXPORTS
AssignCopy__8wxStringFUiPCc AssignCopy__8wxStringFUiPCc
;wxString::AfterFirst(char) const ;wxString::AfterFirst(char) const
AfterFirst__8wxStringCFc AfterFirst__8wxStringCFc
;From object file: ..\common\sysopt.cpp
;From object file: ..\common\tbarbase.cpp ;From object file: ..\common\tbarbase.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxToolBarBase::EnableTool(int,unsigned long) ;wxToolBarBase::EnableTool(int,unsigned long)
@@ -5194,18 +5241,27 @@ EXPORTS
Create__10wxTextFileFRC8wxString Create__10wxTextFileFRC8wxString
;From object file: ..\common\timercmn.cpp ;From object file: ..\common\timercmn.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxTimerEvent::sm_classwxTimerEvent
sm_classwxTimerEvent__12wxTimerEvent
;wxGetLocalTimeMillis() ;wxGetLocalTimeMillis()
wxGetLocalTimeMillis__Fv wxGetLocalTimeMillis__Fv
__vft11wxTimerBase8wxObject
;wxStopWatch::GetElapsedTime() const ;wxStopWatch::GetElapsedTime() const
GetElapsedTime__11wxStopWatchCFv GetElapsedTime__11wxStopWatchCFv
;wxStopWatch::Time() const ;wxStopWatch::Time() const
Time__11wxStopWatchCFv Time__11wxStopWatchCFv
;wxTimerBase::Notify()
Notify__11wxTimerBaseFv
;wxStopWatch::Start(long) ;wxStopWatch::Start(long)
Start__11wxStopWatchFl Start__11wxStopWatchFl
;wxGetElapsedTime(unsigned long) ;wxGetElapsedTime(unsigned long)
wxGetElapsedTime__FUl wxGetElapsedTime__FUl
;wxGetLocalTime() ;wxGetLocalTime()
wxGetLocalTime__Fv wxGetLocalTime__Fv
;wxTimerBase::Start(int,unsigned long)
Start__11wxTimerBaseFiUl
;wxConstructorForwxTimerEvent()
wxConstructorForwxTimerEvent__Fv
;wxStartTimer() ;wxStartTimer()
wxStartTimer__Fv wxStartTimer__Fv
;wxGetUTCTime() ;wxGetUTCTime()
@@ -6813,6 +6869,8 @@ EXPORTS
DoCrossHair__14wxPostScriptDCFiT1 DoCrossHair__14wxPostScriptDCFiT1
;wxPostScriptDC::DoDrawArc(int,int,int,int,int,int) ;wxPostScriptDC::DoDrawArc(int,int,int,int,int,int)
DoDrawArc__14wxPostScriptDCFiN51 DoDrawArc__14wxPostScriptDCFiN51
;wxPostScriptDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long,int,int)
DoBlit__14wxPostScriptDCFiN31P4wxDCN31UlN21
;wxPostScriptDC::~wxPostScriptDC() ;wxPostScriptDC::~wxPostScriptDC()
__dt__14wxPostScriptDCFv __dt__14wxPostScriptDCFv
;wxGetPrinterOptions() ;wxGetPrinterOptions()
@@ -6848,8 +6906,6 @@ EXPORTS
__vft16wxPrintSetupData8wxObject __vft16wxPrintSetupData8wxObject
;wxPostScriptDC::SetBrush(const wxBrush&) ;wxPostScriptDC::SetBrush(const wxBrush&)
SetBrush__14wxPostScriptDCFRC7wxBrush SetBrush__14wxPostScriptDCFRC7wxBrush
;wxPostScriptDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long)
DoBlit__14wxPostScriptDCFiN31P4wxDCN31Ul
;wxPostScriptDC::DoGetSize(int*,int*) const ;wxPostScriptDC::DoGetSize(int*,int*) const
DoGetSize__14wxPostScriptDCCFPiT1 DoGetSize__14wxPostScriptDCCFPiT1
;wxSetPrinterTranslation(int,int) ;wxSetPrinterTranslation(int,int)
@@ -7068,8 +7124,8 @@ EXPORTS
ChangeCursorMode__6wxGridFQ2_6wxGrid10CursorModeP8wxWindowUl ChangeCursorMode__6wxGridFQ2_6wxGrid10CursorModeP8wxWindowUl
;wxGridCellTextEditor::BeginEdit(int,int,wxGrid*) ;wxGridCellTextEditor::BeginEdit(int,int,wxGrid*)
BeginEdit__20wxGridCellTextEditorFiT1P6wxGrid BeginEdit__20wxGridCellTextEditorFiT1P6wxGrid
;wxGridStringArray::RemoveAt(unsigned int) ;wxGrid::SetOrCalcRowSizes(unsigned long,unsigned long)
RemoveAt__17wxGridStringArrayFUi SetOrCalcRowSizes__6wxGridFUlT1
;wxGridCellFloatRenderer::wxGridCellFloatRenderer(int,int) ;wxGridCellFloatRenderer::wxGridCellFloatRenderer(int,int)
__ct__23wxGridCellFloatRendererFiT1 __ct__23wxGridCellFloatRendererFiT1
;wxGrid::XToEdgeOfCol(int) ;wxGrid::XToEdgeOfCol(int)
@@ -7080,12 +7136,12 @@ EXPORTS
SetRowAttr__22wxGridCellAttrProviderFP14wxGridCellAttri SetRowAttr__22wxGridCellAttrProviderFP14wxGridCellAttri
;wxGridTableBase::SetRowAttr(wxGridCellAttr*,int) ;wxGridTableBase::SetRowAttr(wxGridCellAttr*,int)
SetRowAttr__15wxGridTableBaseFP14wxGridCellAttri SetRowAttr__15wxGridTableBaseFP14wxGridCellAttri
;wxGrid::SetOrCalcRowSizes(unsigned long,unsigned long)
SetOrCalcRowSizes__6wxGridFUlT1
;wxGrid::SetColMinimalWidth(int,int) ;wxGrid::SetColMinimalWidth(int,int)
SetColMinimalWidth__6wxGridFiT1 SetColMinimalWidth__6wxGridFiT1
;wxGridCellWithAttrArray::RemoveAt(unsigned int) ;wxGridCellWithAttrArray::RemoveAt(unsigned int)
RemoveAt__23wxGridCellWithAttrArrayFUi RemoveAt__23wxGridCellWithAttrArrayFUi
;wxGridStringArray::RemoveAt(unsigned int)
RemoveAt__17wxGridStringArrayFUi
;wxGrid::ProcessTableMessage(wxGridTableMessage&) ;wxGrid::ProcessTableMessage(wxGridTableMessage&)
ProcessTableMessage__6wxGridFR18wxGridTableMessage ProcessTableMessage__6wxGridFR18wxGridTableMessage
;wxGridCellCoordsArray::Insert(const wxGridCellCoords&,unsigned int) ;wxGridCellCoordsArray::Insert(const wxGridCellCoords&,unsigned int)
@@ -8212,8 +8268,8 @@ EXPORTS
sm_eventTableEntries__18wxSashLayoutWindow sm_eventTableEntries__18wxSashLayoutWindow
;From object file: ..\generic\listctrl.cpp ;From object file: ..\generic\listctrl.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxListItemData::SetData(long) ;wxSelectionStore::SelectItem(unsigned int,unsigned long)
SetData__14wxListItemDataFl SelectItem__16wxSelectionStoreFUiUl
wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;wxListTextCtrl::sm_eventTable ;wxListTextCtrl::sm_eventTable
sm_eventTable__14wxListTextCtrl sm_eventTable__14wxListTextCtrl
@@ -8223,6 +8279,8 @@ EXPORTS
SortItems__10wxListCtrlFPFlN21_il SortItems__10wxListCtrlFPFlN21_il
;wxListCtrl::SetItemPosition(long,const wxPoint&) ;wxListCtrl::SetItemPosition(long,const wxPoint&)
SetItemPosition__10wxListCtrlFlRC7wxPoint SetItemPosition__10wxListCtrlFlRC7wxPoint
;wxListMainWindow::SendNotify(unsigned int,int,wxPoint)
SendNotify__16wxListMainWindowFUii7wxPoint
;wxListHeaderWindow::OnSetFocus(wxFocusEvent&) ;wxListHeaderWindow::OnSetFocus(wxFocusEvent&)
OnSetFocus__18wxListHeaderWindowFR12wxFocusEvent OnSetFocus__18wxListHeaderWindowFR12wxFocusEvent
;wxListMainWindow::OnPaint(wxPaintEvent&) ;wxListMainWindow::OnPaint(wxPaintEvent&)
@@ -8231,6 +8289,8 @@ EXPORTS
OnKillFocus__14wxListTextCtrlFR12wxFocusEvent OnKillFocus__14wxListTextCtrlFR12wxFocusEvent
;wxListCtrl::OnIdle(wxIdleEvent&) ;wxListCtrl::OnIdle(wxIdleEvent&)
OnIdle__10wxListCtrlFR11wxIdleEvent OnIdle__10wxListCtrlFR11wxIdleEvent
;wxListMainWindow::HighlightAll(unsigned long)
HighlightAll__16wxListMainWindowFUl
;wxListMainWindow::DeleteItem(long) ;wxListMainWindow::DeleteItem(long)
DeleteItem__16wxListMainWindowFl DeleteItem__16wxListMainWindowFl
;wxListLineDataArray::wxListLineDataArray(const wxListLineDataArray&) ;wxListLineDataArray::wxListLineDataArray(const wxListLineDataArray&)
@@ -8241,36 +8301,38 @@ EXPORTS
SetSize__14wxListItemDataFiT1 SetSize__14wxListItemDataFiT1
;wxListLineData::SetItem(int,const wxListItem&) ;wxListLineData::SetItem(int,const wxListItem&)
SetItem__14wxListLineDataFiRC10wxListItem SetItem__14wxListLineDataFiRC10wxListItem
;wxListMainWindow::RefreshLine(wxListLineData*) ;wxListMainWindow::RefreshLine(unsigned int)
RefreshLine__16wxListMainWindowFP14wxListLineData RefreshLine__16wxListMainWindowFUi
;wxSelectionStore::OnItemDelete(unsigned int)
OnItemDelete__16wxSelectionStoreFUi
;wxListMainWindow::InsertColumn(long,wxListItem&) ;wxListMainWindow::InsertColumn(long,wxListItem&)
InsertColumn__16wxListMainWindowFlR10wxListItem InsertColumn__16wxListMainWindowFlR10wxListItem
;wxListLineData::GetLabelExtent(int&,int&,int&,int&) ;wxListMainWindow::GetLineRect(unsigned int) const
GetLabelExtent__14wxListLineDataFRiN31 GetLineRect__16wxListMainWindowCFUi
;wxListMainWindow::GetLineLabelRect(unsigned int) const
GetLineLabelRect__16wxListMainWindowCFUi
;wxListMainWindow::GetItem(wxListItem&) ;wxListMainWindow::GetItem(wxListItem&)
GetItem__16wxListMainWindowFR10wxListItem GetItem__16wxListMainWindowFR10wxListItem
;wxListItemData::GetItem(wxListItem&) const ;wxListItemData::GetItem(wxListItem&) const
GetItem__14wxListItemDataCFR10wxListItem GetItem__14wxListItemDataCFR10wxListItem
;wxListMainWindow::GetColumn(int,wxListItem&)
GetColumn__16wxListMainWindowFiR10wxListItem
;wxListMainWindow::GetColumnWidth(int)
GetColumnWidth__16wxListMainWindowFi
;wxListCtrl::FindItem(long,long) ;wxListCtrl::FindItem(long,long)
FindItem__10wxListCtrlFlT1 FindItem__10wxListCtrlFlT1
;wxListHeaderData::wxListHeaderData() ;wxListItemData::Init()
__ct__16wxListHeaderDataFv Init__14wxListItemDataFv
;wxConstructorForwxListTextCtrl() ;wxConstructorForwxListTextCtrl()
wxConstructorForwxListTextCtrl__Fv wxConstructorForwxListTextCtrl__Fv
;wxListHeaderWindow::~wxListHeaderWindow() ;wxListHeaderWindow::~wxListHeaderWindow()
__dt__18wxListHeaderWindowFv __dt__18wxListHeaderWindowFv
;wxListMainWindow::wxListMainWindow() ;wxListMainWindow::wxListMainWindow()
__ct__16wxListMainWindowFv __ct__16wxListMainWindowFv
;wxListHeaderData::wxListHeaderData()
__ct__16wxListHeaderDataFv
;wxListCtrl::SetFocus() ;wxListCtrl::SetFocus()
SetFocus__10wxListCtrlFv SetFocus__10wxListCtrlFv
;wxListCtrl::SetCursor(const wxCursor&) ;wxListCtrl::SetCursor(const wxCursor&)
SetCursor__10wxListCtrlFRC8wxCursor SetCursor__10wxListCtrlFRC8wxCursor
;wxListMainWindow::RealizeChanges() ;wxListLineData::ReverseHighlight()
RealizeChanges__16wxListMainWindowFv ReverseHighlight__14wxListLineDataFv
;wxListMainWindow::OnRenameAccept() ;wxListMainWindow::OnRenameAccept()
OnRenameAccept__16wxListMainWindowFv OnRenameAccept__16wxListMainWindowFv
;wxListRenameTimer::Notify() ;wxListRenameTimer::Notify()
@@ -8283,6 +8345,8 @@ EXPORTS
GetTopItem__10wxListCtrlCFv GetTopItem__10wxListCtrlCFv
;wxListCtrl::GetItemCount() const ;wxListCtrl::GetItemCount() const
GetItemCount__10wxListCtrlCFv GetItemCount__10wxListCtrlCFv
;wxListMainWindow::GetImageSize(int,int&,int&) const
GetImageSize__16wxListMainWindowCFiRiT2
;wxListHeaderWindow::DoDrawRect(wxDC*,int,int,int,int) ;wxListHeaderWindow::DoDrawRect(wxDC*,int,int,int,int)
DoDrawRect__18wxListHeaderWindowFP4wxDCiN32 DoDrawRect__18wxListHeaderWindowFP4wxDCiN32
wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
@@ -8291,8 +8355,6 @@ EXPORTS
wxEVT_COMMAND_LIST_ITEM_DESELECTED wxEVT_COMMAND_LIST_ITEM_DESELECTED
wxEVT_COMMAND_LIST_ITEM_ACTIVATED wxEVT_COMMAND_LIST_ITEM_ACTIVATED
__vft14wxListTextCtrl8wxObject __vft14wxListTextCtrl8wxObject
;wxListMainWindow::SetMode(long)
SetMode__16wxListMainWindowFl
;wxListCtrl::SetItemSpacing(int,unsigned long) ;wxListCtrl::SetItemSpacing(int,unsigned long)
SetItemSpacing__10wxListCtrlFiUl SetItemSpacing__10wxListCtrlFiUl
;wxListMainWindow::SetItemCount(long) ;wxListMainWindow::SetItemCount(long)
@@ -8301,13 +8363,13 @@ EXPORTS
SetDropTarget__10wxListCtrlFP12wxDropTarget SetDropTarget__10wxListCtrlFP12wxDropTarget
;wxListMainWindow::OnKeyDown(wxKeyEvent&) ;wxListMainWindow::OnKeyDown(wxKeyEvent&)
OnKeyDown__16wxListMainWindowFR10wxKeyEvent OnKeyDown__16wxListMainWindowFR10wxKeyEvent
;wxListMainWindow::OnArrowChar(unsigned int,const wxKeyEvent&)
OnArrowChar__16wxListMainWindowFUiRC10wxKeyEvent
;wxListEvent::CopyObject(wxObject&) const ;wxListEvent::CopyObject(wxObject&) const
CopyObject__11wxListEventCFR8wxObject CopyObject__11wxListEventCFR8wxObject
;wxListLineDataArray::operator=(const wxListLineDataArray&) ;wxListLineDataArray::operator=(const wxListLineDataArray&)
__as__19wxListLineDataArrayFRC19wxListLineDataArray __as__19wxListLineDataArrayFRC19wxListLineDataArray
wxEVT_COMMAND_LIST_INSERT_ITEM wxEVT_COMMAND_LIST_INSERT_ITEM
;wxListLineData::sm_classwxListLineData
sm_classwxListLineData__14wxListLineData
;wxListItem::sm_classwxListItem ;wxListItem::sm_classwxListItem
sm_classwxListItem__10wxListItem sm_classwxListItem__10wxListItem
list_ctrl_compare_func_1 list_ctrl_compare_func_1
@@ -8322,8 +8384,6 @@ EXPORTS
SetImageList__16wxListMainWindowFP11wxImageListi SetImageList__16wxListMainWindowFP11wxImageListi
;wxListMainWindow::SetColumnWidth(int,int) ;wxListMainWindow::SetColumnWidth(int,int)
SetColumnWidth__16wxListMainWindowFiT1 SetColumnWidth__16wxListMainWindowFiT1
;wxListMainWindow::SelectLine(wxListLineData*)
SelectLine__16wxListMainWindowFP14wxListLineData
;wxListCtrl::OnGetItemText(long,long) const ;wxListCtrl::OnGetItemText(long,long) const
OnGetItemText__10wxListCtrlCFlT1 OnGetItemText__10wxListCtrlCFlT1
;wxListHeaderData::IsHit(int,int) const ;wxListHeaderData::IsHit(int,int) const
@@ -8336,10 +8396,10 @@ EXPORTS
HitTest__16wxListMainWindowFiT1Ri HitTest__16wxListMainWindowFiT1Ri
;wxListCtrl::HitTest(const wxPoint&,int&) ;wxListCtrl::HitTest(const wxPoint&,int&)
HitTest__10wxListCtrlFRC7wxPointRi HitTest__10wxListCtrlFRC7wxPointRi
;wxListMainWindow::FocusLine(wxListLineData*) ;wxListMainWindow::GetColumn(int,wxListItem&) const
FocusLine__16wxListMainWindowFP14wxListLineData GetColumn__16wxListMainWindowCFiR10wxListItem
;wxListMainWindow::DeselectLine(wxListLineData*) ;wxListMainWindow::CacheLineData(unsigned int)
DeselectLine__16wxListMainWindowFP14wxListLineData CacheLineData__16wxListMainWindowFUi
;wxwxListItemDataListNode::DeleteData() ;wxwxListItemDataListNode::DeleteData()
DeleteData__24wxwxListItemDataListNodeFv DeleteData__24wxwxListItemDataListNodeFv
;wxConstructorForwxListHeaderData() ;wxConstructorForwxListHeaderData()
@@ -8351,24 +8411,22 @@ EXPORTS
__dt__16wxListMainWindowFv __dt__16wxListMainWindowFv
;wxListHeaderWindow::wxListHeaderWindow() ;wxListHeaderWindow::wxListHeaderWindow()
__ct__18wxListHeaderWindowFv __ct__18wxListHeaderWindowFv
;wxListLineData::SetPosition(wxDC*,int,int,int) ;wxListLineData::SetAttr(wxListItemAttr*)
SetPosition__14wxListLineDataFP4wxDCiN22 SetAttr__14wxListLineDataFP14wxListItemAttr
;wxListMainWindow::OnRenameTimer() ;wxListMainWindow::OnRenameTimer()
OnRenameTimer__16wxListMainWindowFv OnRenameTimer__16wxListMainWindowFv
;wxListItemData::GetX() const ;wxListItemData::GetX() const
GetX__14wxListItemDataCFv GetX__14wxListItemDataCFv
;wxListCtrl::GetTextColour() const ;wxListCtrl::GetTextColour() const
GetTextColour__10wxListCtrlCFv GetTextColour__10wxListCtrlCFv
;wxListMainWindow::GetHeaderWidth() const
GetHeaderWidth__16wxListMainWindowCFv
;wxListTextCtrl::GetEventTable() const ;wxListTextCtrl::GetEventTable() const
GetEventTable__14wxListTextCtrlCFv GetEventTable__14wxListTextCtrlCFv
;wxListMainWindow::GetCountPerPage()
GetCountPerPage__16wxListMainWindowFv
;wxListLineData::DoDraw(wxDC*,unsigned long,unsigned long)
DoDraw__14wxListLineDataFP4wxDCUlT2
;wxListItem::ClearAttributes() ;wxListItem::ClearAttributes()
ClearAttributes__10wxListItemFv ClearAttributes__10wxListItemFv
;wxListRenameTimer::wxListRenameTimer(wxListMainWindow*) ;wxListLineData::wxListLineData(wxListMainWindow*)
__ct__17wxListRenameTimerFP16wxListMainWindow __ct__14wxListLineDataFP16wxListMainWindow
wxEVT_COMMAND_LIST_SET_INFO wxEVT_COMMAND_LIST_SET_INFO
wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
@@ -8378,10 +8436,10 @@ EXPORTS
sm_eventTableEntries__18wxListHeaderWindow sm_eventTableEntries__18wxListHeaderWindow
;wxListMainWindow::sm_classwxListMainWindow ;wxListMainWindow::sm_classwxListMainWindow
sm_classwxListMainWindow__16wxListMainWindow sm_classwxListMainWindow__16wxListMainWindow
;wxListRenameTimer::wxListRenameTimer(wxListMainWindow*)
__ct__17wxListRenameTimerFP16wxListMainWindow
;wxListCtrl::InsertColumn(long,const wxString&,int,int) ;wxListCtrl::InsertColumn(long,const wxString&,int,int)
InsertColumn__10wxListCtrlFlRC8wxStringiT3 InsertColumn__10wxListCtrlFlRC8wxStringiT3
;wxListMainWindow::GetTextLength(wxString&)
GetTextLength__16wxListMainWindowFR8wxString
;wxListCtrl::Edit(long) ;wxListCtrl::Edit(long)
Edit__10wxListCtrlFl Edit__10wxListCtrlFl
;wxListEvent::sm_classwxListEvent ;wxListEvent::sm_classwxListEvent
@@ -8399,26 +8457,18 @@ EXPORTS
SetItemSpacing__16wxListMainWindowFiUl SetItemSpacing__16wxListMainWindowFiUl
;wxListCtrl::SetItemCount(long) ;wxListCtrl::SetItemCount(long)
SetItemCount__10wxListCtrlFl SetItemCount__10wxListCtrlFl
;wxListMainWindow::SendNotify(wxListLineData*,int,wxPoint)
SendNotify__16wxListMainWindowFP14wxListLineDatai7wxPoint
;wxListCtrl::OnSize(wxSizeEvent&) ;wxListCtrl::OnSize(wxSizeEvent&)
OnSize__10wxListCtrlFR11wxSizeEvent OnSize__10wxListCtrlFR11wxSizeEvent
;wxListHeaderWindow::OnMouse(wxMouseEvent&) ;wxListHeaderWindow::OnMouse(wxMouseEvent&)
OnMouse__18wxListHeaderWindowFR12wxMouseEvent OnMouse__18wxListHeaderWindowFR12wxMouseEvent
;wxListTextCtrl::OnChar(wxKeyEvent&) ;wxListTextCtrl::OnChar(wxKeyEvent&)
OnChar__14wxListTextCtrlFR10wxKeyEvent OnChar__14wxListTextCtrlFR10wxKeyEvent
;wxListLineData::IsInRect(int,int,const wxRect&)
IsInRect__14wxListLineDataFiT1RC6wxRect
;wxListLineDataArray::Index(const wxListLineData&,unsigned long) const ;wxListLineDataArray::Index(const wxListLineData&,unsigned long) const
Index__19wxListLineDataArrayCFRC14wxListLineDataUl Index__19wxListLineDataArrayCFRC14wxListLineDataUl
;wxListLineData::Hilight(unsigned long)
Hilight__14wxListLineDataFUl
;wxListCtrl::FindItem(long,const wxString&,unsigned long) ;wxListCtrl::FindItem(long,const wxString&,unsigned long)
FindItem__10wxListCtrlFlRC8wxStringUl FindItem__10wxListCtrlFlRC8wxStringUl
;wxListLineData::DrawRubberBand(wxDC*,unsigned long) ;wxListLineData::SetImage(int,int)
DrawRubberBand__14wxListLineDataFP4wxDCUl SetImage__14wxListLineDataFiT1
;wxListLineDataArray::RemoveAt(unsigned int)
RemoveAt__19wxListLineDataArrayFUi
;wxListHeaderData::wxListHeaderData(const wxListItem&) ;wxListHeaderData::wxListHeaderData(const wxListItem&)
__ct__16wxListHeaderDataFRC10wxListItem __ct__16wxListHeaderDataFRC10wxListItem
;wxListHeaderData::SetWidth(int) ;wxListHeaderData::SetWidth(int)
@@ -8435,14 +8485,18 @@ EXPORTS
SetFormat__16wxListHeaderDataFi SetFormat__16wxListHeaderDataFi
;wxListCtrl::SetColumnWidth(int,int) ;wxListCtrl::SetColumnWidth(int,int)
SetColumnWidth__10wxListCtrlFiT1 SetColumnWidth__10wxListCtrlFiT1
;wxListLineDataArray::RemoveAt(unsigned int)
RemoveAt__19wxListLineDataArrayFUi
;wxListMainWindow::RefreshLines(unsigned int,unsigned int)
RefreshLines__16wxListMainWindowFUiT1
;wxListMainWindow::OnFocusLine(unsigned int)
OnFocusLine__16wxListMainWindowFUi
;wxListCtrl::InsertItem(long,int) ;wxListCtrl::InsertItem(long,int)
InsertItem__10wxListCtrlFli InsertItem__10wxListCtrlFli
;wxListMainWindow::GetVisibleLinesRange(unsigned int*,unsigned int*)
GetVisibleLinesRange__16wxListMainWindowFPUiT1
;wxListCtrl::GetItem(wxListItem&) const ;wxListCtrl::GetItem(wxListItem&) const
GetItem__10wxListCtrlCFR10wxListItem GetItem__10wxListCtrlCFR10wxListItem
;wxListMainWindow::GetIndexOfLine(const wxListLineData*)
GetIndexOfLine__16wxListMainWindowFPC14wxListLineData
;wxListLineData::GetExtent(int&,int&,int&,int&)
GetExtent__14wxListLineDataFRiN31
;wxListMainWindow::FindItem(long,long) ;wxListMainWindow::FindItem(long,long)
FindItem__16wxListMainWindowFlT1 FindItem__16wxListMainWindowFlT1
;wxListMainWindow::DrawImage(int,wxDC*,int,int) ;wxListMainWindow::DrawImage(int,wxDC*,int,int)
@@ -8456,23 +8510,23 @@ EXPORTS
wxEVT_COMMAND_LIST_KEY_DOWN wxEVT_COMMAND_LIST_KEY_DOWN
;wxConstructorForwxListMainWindow() ;wxConstructorForwxListMainWindow()
wxConstructorForwxListMainWindow__Fv wxConstructorForwxListMainWindow__Fv
;wxConstructorForwxListLineData()
wxConstructorForwxListLineData__Fv
;wxConstructorForwxListEvent() ;wxConstructorForwxListEvent()
wxConstructorForwxListEvent__Fv wxConstructorForwxListEvent__Fv
__vft16wxListMainWindow14wxScrollHelper __vft16wxListMainWindow14wxScrollHelper
;wxListMainWindow::UpdateCurrent()
UpdateCurrent__16wxListMainWindowFv
;wxListCtrl::SetItem(long,int,const wxString&,int) ;wxListCtrl::SetItem(long,int,const wxString&,int)
SetItem__10wxListCtrlFliRC8wxStringT2 SetItem__10wxListCtrlFliRC8wxStringT2
;wxListLineData::ReverseHilight() ;wxListMainWindow::InitScrolling()
ReverseHilight__14wxListLineDataFv InitScrolling__16wxListMainWindowFv
;wxListItemData::HasImage() const
HasImage__14wxListItemDataCFv
;wxListItemData::GetY() const ;wxListItemData::GetY() const
GetY__14wxListItemDataCFv GetY__14wxListItemDataCFv
;wxListMainWindow::GetSelectedItemCount() ;wxListMainWindow::GetSelectedItemCount()
GetSelectedItemCount__16wxListMainWindowFv GetSelectedItemCount__16wxListMainWindowFv
;wxListCtrl::GetNextItem(long,int,int) const ;wxListCtrl::GetNextItem(long,int,int) const
GetNextItem__10wxListCtrlCFliT2 GetNextItem__10wxListCtrlCFliT2
;wxListMainWindow::GetLineHeight() const
GetLineHeight__16wxListMainWindowCFv
;wxListItemData::GetHeight() const ;wxListItemData::GetHeight() const
GetHeight__14wxListItemDataCFv GetHeight__14wxListItemDataCFv
;wxListHeaderData::GetFormat() const ;wxListHeaderData::GetFormat() const
@@ -8481,12 +8535,12 @@ EXPORTS
GetEventTable__10wxListCtrlCFv GetEventTable__10wxListCtrlCFv
;wxListCtrl::GetCountPerPage() const ;wxListCtrl::GetCountPerPage() const
GetCountPerPage__10wxListCtrlCFv GetCountPerPage__10wxListCtrlCFv
;wxListMainWindow::GetColumnCount()
GetColumnCount__16wxListMainWindowFv
;wxListCtrl::GetBackgroundColour() const ;wxListCtrl::GetBackgroundColour() const
GetBackgroundColour__10wxListCtrlCFv GetBackgroundColour__10wxListCtrlCFv
;wxListLineData::AssignRect(wxRect&,int,int,int,int) ;wxListLineData::GetAttr() const
AssignRect__14wxListLineDataFR6wxRectiN32 GetAttr__14wxListLineDataCFv
;wxListCtrl::CreateHeaderWindow()
CreateHeaderWindow__10wxListCtrlFv
;wxListLineData::SetText(int,const wxString) ;wxListLineData::SetText(int,const wxString)
SetText__14wxListLineDataFiC8wxString SetText__14wxListLineDataFiC8wxString
;wxListMainWindow::sm_eventTable ;wxListMainWindow::sm_eventTable
@@ -8499,27 +8553,25 @@ EXPORTS
InsertItem__10wxListCtrlFlRC8wxString InsertItem__10wxListCtrlFlRC8wxString
;wxListLineData::Draw(wxDC*) ;wxListLineData::Draw(wxDC*)
Draw__14wxListLineDataFP4wxDC Draw__14wxListLineDataFP4wxDC
;wxListMainWindow::EditLabel(long) ;wxSelectionStore::SelectRange(unsigned int,unsigned int,unsigned long)
EditLabel__16wxListMainWindowFl SelectRange__16wxSelectionStoreFUiT1Ul
;wxListCtrl::sm_eventTable ;wxListCtrl::sm_eventTable
sm_eventTable__10wxListCtrl sm_eventTable__10wxListCtrl
__vft16wxListMainWindow8wxObject __vft16wxListMainWindow8wxObject
;wxListLineData::wxListLineData(wxListMainWindow*,int,wxBrush*)
__ct__14wxListLineDataFP16wxListMainWindowiP7wxBrush
;wxListCtrl::SetFont(const wxFont&) ;wxListCtrl::SetFont(const wxFont&)
SetFont__10wxListCtrlFRC6wxFont SetFont__10wxListCtrlFRC6wxFont
;wxListMainWindow::OnSize(wxSizeEvent&)
OnSize__16wxListMainWindowFR11wxSizeEvent
;wxListMainWindow::OnSetFocus(wxFocusEvent&) ;wxListMainWindow::OnSetFocus(wxFocusEvent&)
OnSetFocus__16wxListMainWindowFR12wxFocusEvent OnSetFocus__16wxListMainWindowFR12wxFocusEvent
;wxListMainWindow::OnKillFocus(wxFocusEvent&) ;wxListMainWindow::OnKillFocus(wxFocusEvent&)
OnKillFocus__16wxListMainWindowFR12wxFocusEvent OnKillFocus__16wxListMainWindowFR12wxFocusEvent
;wxListCtrl::OnGetItemImage(long) const ;wxListCtrl::OnGetItemImage(long) const
OnGetItemImage__10wxListCtrlCFl OnGetItemImage__10wxListCtrlCFl
;wxListMainWindow::OnArrowChar(wxListLineData*,unsigned long) ;wxListCtrl::OnGetItemAttr(long) const
OnArrowChar__16wxListMainWindowFP14wxListLineDataUl OnGetItemAttr__10wxListCtrlCFl
;wxListLineData::GetRect(wxRect&) ;wxListLineData::Highlight(unsigned long)
GetRect__14wxListLineDataFR6wxRect Highlight__14wxListLineDataFUl
;wxListMainWindow::HighlightLines(unsigned int,unsigned int,unsigned long)
HighlightLines__16wxListMainWindowFUiT1Ul
;wxListMainWindow::GetItemSpacing(unsigned long) ;wxListMainWindow::GetItemSpacing(unsigned long)
GetItemSpacing__16wxListMainWindowFUl GetItemSpacing__16wxListMainWindowFUl
;wxListMainWindow::GetItemPosition(long,wxPoint&) ;wxListMainWindow::GetItemPosition(long,wxPoint&)
@@ -8528,41 +8580,46 @@ EXPORTS
GetItemPosition__10wxListCtrlCFlR7wxPoint GetItemPosition__10wxListCtrlCFlR7wxPoint
;wxListMainWindow::FindItem(long,const wxString&,unsigned long) ;wxListMainWindow::FindItem(long,const wxString&,unsigned long)
FindItem__16wxListMainWindowFlRC8wxStringUl FindItem__16wxListMainWindowFlRC8wxStringUl
;wxListMainWindow::EditLabel(long)
EditLabel__16wxListMainWindowFl
;wxListCtrl::DeleteItem(long) ;wxListCtrl::DeleteItem(long)
DeleteItem__10wxListCtrlFl DeleteItem__10wxListCtrlFl
;wxListLineData::AssignRect(wxRect&,const wxRect&) ;wxListLineData::GetImage(int) const
AssignRect__14wxListLineDataFR6wxRectRC6wxRect GetImage__14wxListLineDataCFi
;wxListLineDataArray::DoCopy(const wxListLineDataArray&)
DoCopy__19wxListLineDataArrayFRC19wxListLineDataArray
wxEVT_COMMAND_LIST_DELETE_ITEM wxEVT_COMMAND_LIST_DELETE_ITEM
;wxListMainWindow::UnfocusLine(wxListLineData*)
UnfocusLine__16wxListMainWindowFP14wxListLineData
;wxListItemData::SetImage(int)
SetImage__14wxListItemDataFi
;wxListCtrl::SetColumn(int,wxListItem&) ;wxListCtrl::SetColumn(int,wxListItem&)
SetColumn__10wxListCtrlFiR10wxListItem SetColumn__10wxListCtrlFiR10wxListItem
;wxListMainWindow::RefreshAfter(unsigned int)
RefreshAfter__16wxListMainWindowFUi
;wxListMainWindow::OnUnfocusLine(unsigned int)
OnUnfocusLine__16wxListMainWindowFUi
;wxListLineData::InitItems(int) ;wxListLineData::InitItems(int)
InitItems__14wxListLineDataFi InitItems__14wxListLineDataFi
;wxListMainWindow::GetLineY(unsigned int) const
GetLineY__16wxListMainWindowCFUi
;wxListMainWindow::GetLineHighlightRect(unsigned int) const
GetLineHighlightRect__16wxListMainWindowCFUi
;wxListHeaderData::GetItem(wxListItem&) ;wxListHeaderData::GetItem(wxListItem&)
GetItem__16wxListHeaderDataFR10wxListItem GetItem__16wxListHeaderDataFR10wxListItem
;wxListLineData::GetItem(int,wxListItem&) ;wxListLineData::GetItem(int,wxListItem&)
GetItem__14wxListLineDataFiR10wxListItem GetItem__14wxListLineDataFiR10wxListItem
;wxListCtrl::GetItemState(long,long) const ;wxListCtrl::GetItemState(long,long) const
GetItemState__10wxListCtrlCFlT1 GetItemState__10wxListCtrlCFlT1
;wxListLineData::GetImage(int)
GetImage__14wxListLineDataFi
;wxListCtrl::GetImageList(int) const ;wxListCtrl::GetImageList(int) const
GetImageList__10wxListCtrlCFi GetImageList__10wxListCtrlCFi
;wxListCtrl::GetColumn(int,wxListItem&) const ;wxListCtrl::GetColumn(int,wxListItem&) const
GetColumn__10wxListCtrlCFiR10wxListItem GetColumn__10wxListCtrlCFiR10wxListItem
;wxListLineDataArray::DoCopy(const wxListLineDataArray&)
DoCopy__19wxListLineDataArrayFRC19wxListLineDataArray
;wxListMainWindow::DeleteColumn(int) ;wxListMainWindow::DeleteColumn(int)
DeleteColumn__16wxListMainWindowFi DeleteColumn__16wxListMainWindowFi
;wxListLineData::CalculateSize(wxDC*,int) ;wxListLineData::CalculateSize(wxDC*,int)
CalculateSize__14wxListLineDataFP4wxDCi CalculateSize__14wxListLineDataFP4wxDCi
;wxListLineDataArray::~wxListLineDataArray() wxSizeTCmpFn
__dt__19wxListLineDataArrayFv
;wxConstructorForwxListItem() ;wxConstructorForwxListItem()
wxConstructorForwxListItem__Fv wxConstructorForwxListItem__Fv
;wxListLineDataArray::~wxListLineDataArray()
__dt__19wxListLineDataArrayFv
;wxListCtrl::~wxListCtrl() ;wxListCtrl::~wxListCtrl()
__dt__10wxListCtrlFv __dt__10wxListCtrlFv
;wxListItem::wxListItem() ;wxListItem::wxListItem()
@@ -8571,18 +8628,14 @@ EXPORTS
SetItemImage__10wxListCtrlFliT2 SetItemImage__10wxListCtrlFliT2
;wxListCtrl::SetForegroundColour(const wxColour&) ;wxListCtrl::SetForegroundColour(const wxColour&)
SetForegroundColour__10wxListCtrlFRC8wxColour SetForegroundColour__10wxListCtrlFRC8wxColour
;wxListLineData::IsHilighted()
IsHilighted__14wxListLineDataFv
;wxListMainWindow::Init() ;wxListMainWindow::Init()
Init__16wxListMainWindowFv Init__16wxListMainWindowFv
;wxListCtrl::GetSelectedItemCount() const ;wxListCtrl::GetSelectedItemCount() const
GetSelectedItemCount__10wxListCtrlCFv GetSelectedItemCount__10wxListCtrlCFv
;wxListMainWindow::GetMode() const
GetMode__16wxListMainWindowCFv
;wxListMainWindow::GetImageSize(int,int&,int&)
GetImageSize__16wxListMainWindowFiRiT2
;wxListHeaderWindow::GetEventTable() const ;wxListHeaderWindow::GetEventTable() const
GetEventTable__18wxListHeaderWindowCFv GetEventTable__18wxListHeaderWindowCFv
;wxListMainWindow::GetDummyLine() const
GetDummyLine__16wxListMainWindowCFv
;wxListCtrl::GetDropTarget() const ;wxListCtrl::GetDropTarget() const
GetDropTarget__10wxListCtrlCFv GetDropTarget__10wxListCtrlCFv
;wxListCtrl::GetColumnCount() const ;wxListCtrl::GetColumnCount() const
@@ -8595,15 +8648,15 @@ EXPORTS
DeleteAllItems__16wxListMainWindowFv DeleteAllItems__16wxListMainWindowFv
;wxListCtrl::DeleteAllColumns() ;wxListCtrl::DeleteAllColumns()
DeleteAllColumns__10wxListCtrlFv DeleteAllColumns__10wxListCtrlFv
;wxListMainWindow::CalculatePositions()
CalculatePositions__16wxListMainWindowFv
;wxListCtrl::Create(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxValidator&,const wxString&) ;wxListCtrl::Create(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxValidator&,const wxString&)
Create__10wxListCtrlFP8wxWindowiRC7wxPointRC6wxSizelRC11wxValidatorRC8wxString Create__10wxListCtrlFP8wxWindowiRC7wxPointRC6wxSizelRC11wxValidatorRC8wxString
wxEVT_COMMAND_LIST_GET_INFO wxEVT_COMMAND_LIST_GET_INFO
;wxListMainWindow::sm_eventTableEntries ;wxListMainWindow::sm_eventTableEntries
sm_eventTableEntries__16wxListMainWindow sm_eventTableEntries__16wxListMainWindow
;wxListLineData::SetAttributes(wxDC*,const wxListItemAttr*,const wxColour&,const wxFont&,unsigned long) ;wxListMainWindow::GetTextLength(const wxString&) const
SetAttributes__14wxListLineDataFP4wxDCPC14wxListItemAttrRC8wxColourRC6wxFontUl GetTextLength__16wxListMainWindowCFRC8wxString
;wxListMainWindow::HighlightLine(unsigned int,unsigned long)
HighlightLine__16wxListMainWindowFUiUl
wxEVT_COMMAND_LIST_ITEM_SELECTED wxEVT_COMMAND_LIST_ITEM_SELECTED
wxEVT_COMMAND_LIST_END_LABEL_EDIT wxEVT_COMMAND_LIST_END_LABEL_EDIT
;wxListTextCtrl::sm_eventTableEntries ;wxListTextCtrl::sm_eventTableEntries
@@ -8613,6 +8666,8 @@ EXPORTS
__vft10wxListCtrl8wxObject __vft10wxListCtrl8wxObject
;wxListCtrl::SetWindowStyleFlag(long) ;wxListCtrl::SetWindowStyleFlag(long)
SetWindowStyleFlag__10wxListCtrlFl SetWindowStyleFlag__10wxListCtrlFl
;wxListLineData::SetAttributes(wxDC*,const wxListItemAttr*,const wxColour&,const wxFont&,unsigned long)
SetAttributes__14wxListLineDataFP4wxDCPC14wxListItemAttrRC8wxColourRC6wxFontUl
;wxListMainWindow::OnScroll(wxScrollWinEvent&) ;wxListMainWindow::OnScroll(wxScrollWinEvent&)
OnScroll__16wxListMainWindowFR16wxScrollWinEvent OnScroll__16wxListMainWindowFR16wxScrollWinEvent
;wxListHeaderWindow::OnPaint(wxPaintEvent&) ;wxListHeaderWindow::OnPaint(wxPaintEvent&)
@@ -8623,8 +8678,6 @@ EXPORTS
OnKeyUp__14wxListTextCtrlFR10wxKeyEvent OnKeyUp__14wxListTextCtrlFR10wxKeyEvent
;wxListMainWindow::OnChar(wxKeyEvent&) ;wxListMainWindow::OnChar(wxKeyEvent&)
OnChar__16wxListMainWindowFR10wxKeyEvent OnChar__16wxListMainWindowFR10wxKeyEvent
;wxListMainWindow::HilightAll(unsigned long)
HilightAll__16wxListMainWindowFUl
;wxListCtrl::GetItemText(long) const ;wxListCtrl::GetItemText(long) const
GetItemText__10wxListCtrlCFl GetItemText__10wxListCtrlCFl
;wxListCtrl::GetItemSpacing(unsigned long) const ;wxListCtrl::GetItemSpacing(unsigned long) const
@@ -8635,16 +8688,16 @@ EXPORTS
EnsureVisible__16wxListMainWindowFl EnsureVisible__16wxListMainWindowFl
;wxListCtrl::EnsureVisible(long) ;wxListCtrl::EnsureVisible(long)
EnsureVisible__10wxListCtrlFl EnsureVisible__10wxListCtrlFl
;wxListLineDataArray::Add(const wxListLineData&) ;wxListLineData::DrawInReportMode(wxDC*,const wxRect&,const wxRect&,unsigned long)
Add__19wxListLineDataArrayFRC14wxListLineData DrawInReportMode__14wxListLineDataFP4wxDCRC6wxRectT2Ul
;wxListItemData::sm_classwxListItemData ;wxListLineData::GetText(int) const
sm_classwxListItemData__14wxListItemData GetText__14wxListLineDataCFi
;wxListHeaderData::sm_classwxListHeaderData ;wxListHeaderData::sm_classwxListHeaderData
sm_classwxListHeaderData__16wxListHeaderData sm_classwxListHeaderData__16wxListHeaderData
__vft26wxwxListHeaderDataListNode10wxNodeBase __vft26wxwxListHeaderDataListNode10wxNodeBase
__vft24wxwxListItemDataListNode10wxNodeBase __vft24wxwxListItemDataListNode10wxNodeBase
;wxListItemData::wxListItemData(const wxListItem&) ;wxListLineData::SetPosition(int,int,int,int)
__ct__14wxListItemDataFRC10wxListItem SetPosition__14wxListLineDataFiN31
;wxListMainWindow::SetItem(wxListItem&) ;wxListMainWindow::SetItem(wxListItem&)
SetItem__16wxListMainWindowFR10wxListItem SetItem__16wxListMainWindowFR10wxListItem
;wxListItemData::SetItem(const wxListItem&) ;wxListItemData::SetItem(const wxListItem&)
@@ -8655,12 +8708,12 @@ EXPORTS
SetImageList__10wxListCtrlFP11wxImageListi SetImageList__10wxListCtrlFP11wxImageListi
;wxListMainWindow::SetColumn(int,wxListItem&) ;wxListMainWindow::SetColumn(int,wxListItem&)
SetColumn__16wxListMainWindowFiR10wxListItem SetColumn__16wxListMainWindowFiR10wxListItem
;wxListLineData::SetColumnPosition(int,int)
SetColumnPosition__14wxListLineDataFiT1
;wxListCtrl::ScrollList(int,int) ;wxListCtrl::ScrollList(int,int)
ScrollList__10wxListCtrlFiT1 ScrollList__10wxListCtrlFiT1
;wxListLineData::IsHit(int,int) ;wxSelectionStore::IsSelected(unsigned int) const
IsHit__14wxListLineDataFiT1 IsSelected__16wxSelectionStoreCFUi
;wxListMainWindow::IsHighlighted(unsigned int) const
IsHighlighted__16wxListMainWindowCFUi
;wxListLineDataArray::Insert(const wxListLineData&,unsigned int) ;wxListLineDataArray::Insert(const wxListLineData&,unsigned int)
Insert__19wxListLineDataArrayFRC14wxListLineDataUi Insert__19wxListLineDataArrayFRC14wxListLineDataUi
;wxListMainWindow::InsertItem(wxListItem&) ;wxListMainWindow::InsertItem(wxListItem&)
@@ -8669,38 +8722,40 @@ EXPORTS
InsertItem__10wxListCtrlFlRC8wxStringi InsertItem__10wxListCtrlFlRC8wxStringi
;wxListCtrl::InsertColumn(long,wxListItem&) ;wxListCtrl::InsertColumn(long,wxListItem&)
InsertColumn__10wxListCtrlFlR10wxListItem InsertColumn__10wxListCtrlFlR10wxListItem
;wxListLineData::GetText(int) const ;wxListMainWindow::GetLineIconRect(unsigned int) const
GetText__14wxListLineDataCFi GetLineIconRect__16wxListMainWindowCFUi
;wxListLineData::GetSize(int&,int&)
GetSize__14wxListLineDataFRiT1
;wxListMainWindow::GetItemState(long,long) ;wxListMainWindow::GetItemState(long,long)
GetItemState__16wxListMainWindowFlT1 GetItemState__16wxListMainWindowFlT1
;wxListCtrl::GetItemRect(long,wxRect&,int) const ;wxListCtrl::GetItemRect(long,wxRect&,int) const
GetItemRect__10wxListCtrlCFlR6wxRecti GetItemRect__10wxListCtrlCFlR6wxRecti
;wxListMainWindow::GetColumnWidth(int) const
GetColumnWidth__16wxListMainWindowCFi
;wxListCtrl::GetColumnWidth(int) const ;wxListCtrl::GetColumnWidth(int) const
GetColumnWidth__10wxListCtrlCFi GetColumnWidth__10wxListCtrlCFi
;wxListCtrl::FindItem(long,const wxPoint&,int) ;wxListCtrl::FindItem(long,const wxPoint&,int)
FindItem__10wxListCtrlFlRC7wxPointi FindItem__10wxListCtrlFlRC7wxPointi
;wxListMainWindow::DeleteLine(wxListLineData*)
DeleteLine__16wxListMainWindowFP14wxListLineData
;wxListCtrl::AssignImageList(wxImageList*,int) ;wxListCtrl::AssignImageList(wxImageList*,int)
AssignImageList__10wxListCtrlFP11wxImageListi AssignImageList__10wxListCtrlFP11wxImageListi
;wxListLineDataArray::Add(const wxListLineData&)
Add__19wxListLineDataArrayFRC14wxListLineData
;wxListLineDataArray::DoEmpty() ;wxListLineDataArray::DoEmpty()
DoEmpty__19wxListLineDataArrayFv DoEmpty__19wxListLineDataArrayFv
;wxConstructorForwxListItemData()
wxConstructorForwxListItemData__Fv
;wxConstructorForwxListHeaderWindow() ;wxConstructorForwxListHeaderWindow()
wxConstructorForwxListHeaderWindow__Fv wxConstructorForwxListHeaderWindow__Fv
;wxListTextCtrl::wxListTextCtrl(wxWindow*,const int,unsigned long*,wxString*,wxListMainWindow*,const wxString&,const wxPoint&,const wxSize&,int,const wxValidator&,const wxString&) ;wxListTextCtrl::wxListTextCtrl(wxWindow*,const int,unsigned long*,wxString*,wxListMainWindow*,const wxString&,const wxPoint&,const wxSize&,int,const wxValidator&,const wxString&)
__ct__14wxListTextCtrlFP8wxWindowCiPUlP8wxStringP16wxListMainWindowRC8wxStringRC7wxPointRC6wxSizeiRC11wxValidatorT6 __ct__14wxListTextCtrlFP8wxWindowCiPUlP8wxStringP16wxListMainWindowRC8wxStringRC7wxPointRC6wxSizeiRC11wxValidatorT6
;wxListItemData::wxListItemData()
__ct__14wxListItemDataFv
;wxListCtrl::wxListCtrl() ;wxListCtrl::wxListCtrl()
__ct__10wxListCtrlFv __ct__10wxListCtrlFv
;wxListCtrl::SetTextColour(const wxColour&) ;wxListCtrl::SetTextColour(const wxColour&)
SetTextColour__10wxListCtrlFRC8wxColour SetTextColour__10wxListCtrlFRC8wxColour
;wxListCtrl::SetBackgroundColour(const wxColour&) ;wxListCtrl::SetBackgroundColour(const wxColour&)
SetBackgroundColour__10wxListCtrlFRC8wxColour SetBackgroundColour__10wxListCtrlFRC8wxColour
;wxListMainWindow::RefreshAll()
RefreshAll__16wxListMainWindowFv
;wxListMainWindow::RecalculatePositions()
RecalculatePositions__16wxListMainWindowFv
;wxListMainWindow::HitTestLine(unsigned int,int,int) const
HitTestLine__16wxListMainWindowCFUiiT2
;wxListHeaderData::HasImage() const ;wxListHeaderData::HasImage() const
HasImage__16wxListHeaderDataCFv HasImage__16wxListHeaderDataCFv
;wxListItemData::GetWidth() const ;wxListItemData::GetWidth() const
@@ -8709,12 +8764,12 @@ EXPORTS
GetNextItem__16wxListMainWindowFliT2 GetNextItem__16wxListMainWindowFliT2
;wxListHeaderData::GetImage() const ;wxListHeaderData::GetImage() const
GetImage__16wxListHeaderDataCFv GetImage__16wxListHeaderDataCFv
;wxListItemData::GetImage() const
GetImage__14wxListItemDataCFv
;wxListCtrl::GetForegroundColour() const ;wxListCtrl::GetForegroundColour() const
GetForegroundColour__10wxListCtrlCFv GetForegroundColour__10wxListCtrlCFv
;wxListMainWindow::GetEventTable() const ;wxListMainWindow::GetEventTable() const
GetEventTable__16wxListMainWindowCFv GetEventTable__16wxListMainWindowCFv
;wxListMainWindow::GetCountPerPage() const
GetCountPerPage__16wxListMainWindowCFv
;wxListHeaderWindow::DrawCurrent() ;wxListHeaderWindow::DrawCurrent()
DrawCurrent__18wxListHeaderWindowFv DrawCurrent__18wxListHeaderWindowFv
;wxListCtrl::DoPopupMenu(wxMenu*,int,int) ;wxListCtrl::DoPopupMenu(wxMenu*,int,int)
@@ -8725,11 +8780,13 @@ EXPORTS
Clear__10wxListItemFv Clear__10wxListItemFv
;wxListCtrl::ClearAll() ;wxListCtrl::ClearAll()
ClearAll__10wxListCtrlFv ClearAll__10wxListCtrlFv
;wxListHeaderWindow::wxListHeaderWindow(wxWindow*,int,wxListMainWindow*,const wxPoint&,const wxSize&,long,const wxString&) ;wxListItemData::wxListItemData(wxListMainWindow*)
__ct__18wxListHeaderWindowFP8wxWindowiP16wxListMainWindowRC7wxPointRC6wxSizelRC8wxString __ct__14wxListItemDataFP16wxListMainWindow
wxEVT_COMMAND_LIST_COL_CLICK wxEVT_COMMAND_LIST_COL_CLICK
wxEVT_COMMAND_LIST_BEGIN_RDRAG wxEVT_COMMAND_LIST_BEGIN_RDRAG
wxEVT_COMMAND_LIST_BEGIN_DRAG wxEVT_COMMAND_LIST_BEGIN_DRAG
;wxListHeaderWindow::wxListHeaderWindow(wxWindow*,int,wxListMainWindow*,const wxPoint&,const wxSize&,long,const wxString&)
__ct__18wxListHeaderWindowFP8wxWindowiP16wxListMainWindowRC7wxPointRC6wxSizelRC8wxString
;wxListMainWindow::wxListMainWindow(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxString&) ;wxListMainWindow::wxListMainWindow(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxString&)
__ct__16wxListMainWindowFP8wxWindowiRC7wxPointRC6wxSizelRC8wxString __ct__16wxListMainWindowFP8wxWindowiRC7wxPointRC6wxSizelRC8wxString
;wxListHeaderWindow::AdjustDC(wxDC&) ;wxListHeaderWindow::AdjustDC(wxDC&)
@@ -8811,8 +8868,6 @@ EXPORTS
OnFrameDelete__11wxLogWindowFP7wxFrame OnFrameDelete__11wxLogWindowFP7wxFrame
;wxLogDialog::~wxLogDialog() ;wxLogDialog::~wxLogDialog()
__dt__11wxLogDialogFv __dt__11wxLogDialogFv
;wxLogWindow::Flush()
Flush__11wxLogWindowFv
;wxLogFrame::wxLogFrame(wxFrame*,wxLogWindow*,const char*) ;wxLogFrame::wxLogFrame(wxFrame*,wxLogWindow*,const char*)
__ct__10wxLogFrameFP7wxFrameP11wxLogWindowPCc __ct__10wxLogFrameFP7wxFrameP11wxLogWindowPCc
;wxLogWindow::wxLogWindow(wxFrame*,const char*,unsigned long,unsigned long) ;wxLogWindow::wxLogWindow(wxFrame*,const char*,unsigned long,unsigned long)
@@ -9718,16 +9773,16 @@ EXPORTS
Index__18wxHtmlBookRecArrayCFRC16wxHtmlBookRecordUl Index__18wxHtmlBookRecArrayCFRC16wxHtmlBookRecordUl
__vft14wxHtmlHelpData8wxObject __vft14wxHtmlHelpData8wxObject
__vft13HP_TagHandler8wxObject __vft13HP_TagHandler8wxObject
;wxHtmlBookRecArray::RemoveAt(unsigned int) ;wxHtmlBookRecArray::operator=(const wxHtmlBookRecArray&)
RemoveAt__18wxHtmlBookRecArrayFUi __as__18wxHtmlBookRecArrayFRC18wxHtmlBookRecArray
;wxHtmlHelpData::sm_classwxHtmlHelpData ;wxHtmlHelpData::sm_classwxHtmlHelpData
sm_classwxHtmlHelpData__14wxHtmlHelpData sm_classwxHtmlHelpData__14wxHtmlHelpData
;wxHtmlBookRecArray::wxHtmlBookRecArray(const wxHtmlBookRecArray&) ;wxHtmlBookRecArray::wxHtmlBookRecArray(const wxHtmlBookRecArray&)
__ct__18wxHtmlBookRecArrayFRC18wxHtmlBookRecArray __ct__18wxHtmlBookRecArrayFRC18wxHtmlBookRecArray
;wxHtmlBookRecArray::operator=(const wxHtmlBookRecArray&)
__as__18wxHtmlBookRecArrayFRC18wxHtmlBookRecArray
;HP_TagHandler::WriteOut(wxHtmlContentsItem*&,int&) ;HP_TagHandler::WriteOut(wxHtmlContentsItem*&,int&)
WriteOut__13HP_TagHandlerFRP18wxHtmlContentsItemRi WriteOut__13HP_TagHandlerFRP18wxHtmlContentsItemRi
;wxHtmlBookRecArray::RemoveAt(unsigned int)
RemoveAt__18wxHtmlBookRecArrayFUi
;wxHtmlBookRecArray::DoEmpty() ;wxHtmlBookRecArray::DoEmpty()
DoEmpty__18wxHtmlBookRecArrayFv DoEmpty__18wxHtmlBookRecArrayFv
;wxHtmlBookRecArray::Add(const wxHtmlBookRecord&) ;wxHtmlBookRecArray::Add(const wxHtmlBookRecord&)
@@ -9915,12 +9970,8 @@ EXPORTS
Find__10wxHtmlCellCFiPCv Find__10wxHtmlCellCFiPCv
;wxHtmlFontCell::Draw(wxDC&,int,int,int,int) ;wxHtmlFontCell::Draw(wxDC&,int,int,int,int)
Draw__14wxHtmlFontCellFR4wxDCiN32 Draw__14wxHtmlFontCellFR4wxDCiN32
;wxHtmlCell::Draw(wxDC&,int,int,int,int)
Draw__10wxHtmlCellFR4wxDCiN32
;wxHtmlWidgetCell::DrawInvisible(wxDC&,int,int) ;wxHtmlWidgetCell::DrawInvisible(wxDC&,int,int)
DrawInvisible__16wxHtmlWidgetCellFR4wxDCiT2 DrawInvisible__16wxHtmlWidgetCellFR4wxDCiT2
;wxHtmlCell::DrawInvisible(wxDC&,int,int)
DrawInvisible__10wxHtmlCellFR4wxDCiT2
;From object file: ..\html\htmlfilt.cpp ;From object file: ..\html\htmlfilt.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
__vft21wxHtmlFilterPlainText8wxObject __vft21wxHtmlFilterPlainText8wxObject
@@ -10028,14 +10079,14 @@ EXPORTS
sm_classwxHtmlTag__9wxHtmlTag sm_classwxHtmlTag__9wxHtmlTag
;From object file: ..\html\htmlwin.cpp ;From object file: ..\html\htmlwin.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxHtmlHistoryArray::RemoveAt(unsigned int) ;wxHtmlHistoryArray::DoCopy(const wxHtmlHistoryArray&)
RemoveAt__18wxHtmlHistoryArrayFUi DoCopy__18wxHtmlHistoryArrayFRC18wxHtmlHistoryArray
;wxHtmlWinModule::sm_classwxHtmlWinModule ;wxHtmlWinModule::sm_classwxHtmlWinModule
sm_classwxHtmlWinModule__15wxHtmlWinModule sm_classwxHtmlWinModule__15wxHtmlWinModule
;wxHtmlWindow::SetFonts(wxString,wxString,const int*) ;wxHtmlWindow::SetFonts(wxString,wxString,const int*)
SetFonts__12wxHtmlWindowF8wxStringT1PCi SetFonts__12wxHtmlWindowF8wxStringT1PCi
;wxHtmlHistoryArray::DoCopy(const wxHtmlHistoryArray&) ;wxHtmlHistoryArray::RemoveAt(unsigned int)
DoCopy__18wxHtmlHistoryArrayFRC18wxHtmlHistoryArray RemoveAt__18wxHtmlHistoryArrayFUi
;wxHtmlHistoryArray::Add(const wxHtmlHistoryItem&) ;wxHtmlHistoryArray::Add(const wxHtmlHistoryItem&)
Add__18wxHtmlHistoryArrayFRC17wxHtmlHistoryItem Add__18wxHtmlHistoryArrayFRC17wxHtmlHistoryItem
;wxHtmlHistoryArray::~wxHtmlHistoryArray() ;wxHtmlHistoryArray::~wxHtmlHistoryArray()
@@ -11239,8 +11290,6 @@ EXPORTS
;wxDC::DoGetTextExtent(const wxString&,int*,int*,int*,int*,wxFont*) const ;wxDC::DoGetTextExtent(const wxString&,int*,int*,int*,int*,wxFont*) const
DoGetTextExtent__4wxDCCFRC8wxStringPiN32P6wxFont DoGetTextExtent__4wxDCCFRC8wxStringPiN32P6wxFont
__vft4wxDC8wxObject __vft4wxDC8wxObject
;wxDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long)
DoBlit__4wxDCFiN31P4wxDCN31Ul
;wxDC::DoFloodFill(int,int,const wxColour&,int) ;wxDC::DoFloodFill(int,int,const wxColour&,int)
DoFloodFill__4wxDCFiT1RC8wxColourT1 DoFloodFill__4wxDCFiT1RC8wxColourT1
;wxDC::SetLogicalFunction(int) ;wxDC::SetLogicalFunction(int)
@@ -11277,6 +11326,8 @@ EXPORTS
DoDrawLine__4wxDCFiN31 DoDrawLine__4wxDCFiN31
;wxDC::DoDrawEllipticArc(int,int,int,int,double,double) ;wxDC::DoDrawEllipticArc(int,int,int,int,double,double)
DoDrawEllipticArc__4wxDCFiN31dT5 DoDrawEllipticArc__4wxDCFiN31dT5
;wxDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long,int,int)
DoBlit__4wxDCFiN31P4wxDCN31UlN21
;wxDCBase::DeviceToLogicalY(int) const ;wxDCBase::DeviceToLogicalY(int) const
DeviceToLogicalY__8wxDCBaseCFi DeviceToLogicalY__8wxDCBaseCFi
;wxDCBase::DeviceToLogicalXRel(int) const ;wxDCBase::DeviceToLogicalXRel(int) const
@@ -11317,6 +11368,8 @@ EXPORTS
wxConstructorForwxPaintDC__Fv wxConstructorForwxPaintDC__Fv
;wxWindowDC::InitDC() ;wxWindowDC::InitDC()
InitDC__10wxWindowDCFv InitDC__10wxWindowDCFv
;wxClientDC::InitDC()
InitDC__10wxClientDCFv
;wxArrayDCInfo::DoCopy(const wxArrayDCInfo&) ;wxArrayDCInfo::DoCopy(const wxArrayDCInfo&)
DoCopy__13wxArrayDCInfoFRC13wxArrayDCInfo DoCopy__13wxArrayDCInfoFRC13wxArrayDCInfo
;wxArrayDCInfo::Add(const wxPaintDCInfo&) ;wxArrayDCInfo::Add(const wxPaintDCInfo&)
@@ -11347,10 +11400,13 @@ EXPORTS
FindInCache__9wxPaintDCCFPUi FindInCache__9wxPaintDCCFPUi
;wxArrayDCInfo::DoEmpty() ;wxArrayDCInfo::DoEmpty()
DoEmpty__13wxArrayDCInfoFv DoEmpty__13wxArrayDCInfoFv
;wxClientDC::~wxClientDC()
__dt__10wxClientDCFv
;wxClientDC::sm_classwxClientDC ;wxClientDC::sm_classwxClientDC
sm_classwxClientDC__10wxClientDC sm_classwxClientDC__10wxClientDC
;wxPaintDC::sm_classwxPaintDC ;wxPaintDC::sm_classwxPaintDC
sm_classwxPaintDC__9wxPaintDC sm_classwxPaintDC__9wxPaintDC
__vft10wxClientDC8wxObject
__vft9wxPaintDC8wxObject __vft9wxPaintDC8wxObject
;wxArrayDCInfo::~wxArrayDCInfo() ;wxArrayDCInfo::~wxArrayDCInfo()
__dt__13wxArrayDCInfoFv __dt__13wxArrayDCInfoFv
@@ -11390,12 +11446,12 @@ EXPORTS
CreateCompatible__10wxMemoryDCFP4wxDC CreateCompatible__10wxMemoryDCFP4wxDC
;From object file: ..\os2\dcprint.cpp ;From object file: ..\os2\dcprint.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxPrinterDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long,int,int)
DoBlit__11wxPrinterDCFiN31P4wxDCN31UlN21
;wxPrinterDC::EndDoc() ;wxPrinterDC::EndDoc()
EndDoc__11wxPrinterDCFv EndDoc__11wxPrinterDCFv
;wxPrinterDC::EndPage() ;wxPrinterDC::EndPage()
EndPage__11wxPrinterDCFv EndPage__11wxPrinterDCFv
;wxPrinterDC::DoBlit(int,int,int,int,wxDC*,int,int,int,unsigned long)
DoBlit__11wxPrinterDCFiN31P4wxDCN31Ul
;wxGetPrinterDC(const wxPrintData&) ;wxGetPrinterDC(const wxPrintData&)
wxGetPrinterDC__FRC11wxPrintData wxGetPrinterDC__FRC11wxPrintData
;wxPrinterDC::sm_classwxPrinterDC ;wxPrinterDC::sm_classwxPrinterDC
@@ -11722,10 +11778,14 @@ EXPORTS
DoGetSize__10wxFrameOS2CFPiT1 DoGetSize__10wxFrameOS2CFPiT1
;wxFrameOS2::~wxFrameOS2() ;wxFrameOS2::~wxFrameOS2()
__dt__10wxFrameOS2Fv __dt__10wxFrameOS2Fv
;wxConstructorForwxFrame()
wxConstructorForwxFrame__Fv
;wxFrameOS2::InternalSetMenuBar() ;wxFrameOS2::InternalSetMenuBar()
InternalSetMenuBar__10wxFrameOS2Fv InternalSetMenuBar__10wxFrameOS2Fv
;wxFrameOS2::GetClient() ;wxFrameOS2::GetClient()
GetClient__10wxFrameOS2Fv GetClient__10wxFrameOS2Fv
;wxFrameOS2::AttachMenuBar(wxMenuBar*)
AttachMenuBar__10wxFrameOS2FP9wxMenuBar
;wxFrameOS2::SetClient(wxWindow*) ;wxFrameOS2::SetClient(wxWindow*)
SetClient__10wxFrameOS2FP8wxWindow SetClient__10wxFrameOS2FP8wxWindow
;wxFrameOS2::ShowFullScreen(unsigned long,long) ;wxFrameOS2::ShowFullScreen(unsigned long,long)
@@ -11734,6 +11794,8 @@ EXPORTS
SetClient__10wxFrameOS2FUl SetClient__10wxFrameOS2FUl
;wxFrameOS2::IconizeChildFrames(unsigned long) ;wxFrameOS2::IconizeChildFrames(unsigned long)
IconizeChildFrames__10wxFrameOS2FUl IconizeChildFrames__10wxFrameOS2FUl
;wxFrame::sm_classwxFrame
sm_classwxFrame__7wxFrame
;wxFrameOS2::GetEventTable() const ;wxFrameOS2::GetEventTable() const
GetEventTable__10wxFrameOS2CFv GetEventTable__10wxFrameOS2CFv
;wxFrameOS2::SetMenuBar(wxMenuBar*) ;wxFrameOS2::SetMenuBar(wxMenuBar*)
@@ -12521,6 +12583,8 @@ EXPORTS
ChangePage__10wxNotebookFiT1 ChangePage__10wxNotebookFiT1
;wxNotebook::SetTabSize(const wxSize&) ;wxNotebook::SetTabSize(const wxSize&)
SetTabSize__10wxNotebookFRC6wxSize SetTabSize__10wxNotebookFRC6wxSize
;wxNotebook::SetPageSize(const wxSize&)
SetPageSize__10wxNotebookFRC6wxSize
;wxNotebook::AddPage(wxWindow*,const wxString&,unsigned long,int) ;wxNotebook::AddPage(wxWindow*,const wxString&,unsigned long,int)
AddPage__10wxNotebookFP8wxWindowRC8wxStringUli AddPage__10wxNotebookFP8wxWindowRC8wxStringUli
;wxNotebook::OnSize(wxSizeEvent&) ;wxNotebook::OnSize(wxSizeEvent&)
@@ -12547,6 +12611,8 @@ EXPORTS
OnNavigationKey__10wxNotebookFR20wxNavigationKeyEvent OnNavigationKey__10wxNotebookFR20wxNavigationKeyEvent
;wxNotebook::GetPageText(int) const ;wxNotebook::GetPageText(int) const
GetPageText__10wxNotebookCFi GetPageText__10wxNotebookCFi
;wxNotebook::SetPadding(const wxSize&)
SetPadding__10wxNotebookFRC6wxSize
;wxConstructorForwxNotebook() ;wxConstructorForwxNotebook()
wxConstructorForwxNotebook__Fv wxConstructorForwxNotebook__Fv
;wxConstructorForwxNotebookEvent() ;wxConstructorForwxNotebookEvent()
@@ -12944,21 +13010,15 @@ EXPORTS
sm_eventTable__11wxScrollBar sm_eventTable__11wxScrollBar
;From object file: ..\os2\settings.cpp ;From object file: ..\os2\settings.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxSystemSettings::SetOption(const wxString&,const wxString&)
SetOption__16wxSystemSettingsFRC8wxStringT1
;wxSystemSettingsModule::sm_classwxSystemSettingsModule ;wxSystemSettingsModule::sm_classwxSystemSettingsModule
sm_classwxSystemSettingsModule__22wxSystemSettingsModule sm_classwxSystemSettingsModule__22wxSystemSettingsModule
;wxSystemSettingsModule::OnInit() ;wxSystemSettingsModule::OnInit()
OnInit__22wxSystemSettingsModuleFv OnInit__22wxSystemSettingsModuleFv
;wxSystemSettings::GetOption(const wxString&)
GetOption__16wxSystemSettingsFRC8wxString
__vft22wxSystemSettingsModule8wxObject __vft22wxSystemSettingsModule8wxObject
;wxSystemSettings::GetSystemColour(int) ;wxSystemSettings::GetSystemColour(int)
GetSystemColour__16wxSystemSettingsFi GetSystemColour__16wxSystemSettingsFi
;wxSystemSettings::GetSystemMetric(int) ;wxSystemSettings::GetSystemMetric(int)
GetSystemMetric__16wxSystemSettingsFi GetSystemMetric__16wxSystemSettingsFi
;wxSystemSettings::HasOption(const wxString&)
HasOption__16wxSystemSettingsFRC8wxString
;wxSystemSettingsModule::sm_optionNames ;wxSystemSettingsModule::sm_optionNames
sm_optionNames__22wxSystemSettingsModule sm_optionNames__22wxSystemSettingsModule
;wxSystemSettingsModule::OnExit() ;wxSystemSettingsModule::OnExit()
@@ -12967,12 +13027,8 @@ EXPORTS
sm_optionValues__22wxSystemSettingsModule sm_optionValues__22wxSystemSettingsModule
;wxConstructorForwxSystemSettingsModule() ;wxConstructorForwxSystemSettingsModule()
wxConstructorForwxSystemSettingsModule__Fv wxConstructorForwxSystemSettingsModule__Fv
;wxSystemSettings::GetOptionInt(const wxString&)
GetOptionInt__16wxSystemSettingsFRC8wxString
;wxSystemSettings::GetSystemFont(int) ;wxSystemSettings::GetSystemFont(int)
GetSystemFont__16wxSystemSettingsFi GetSystemFont__16wxSystemSettingsFi
;wxSystemSettings::SetOption(const wxString&,int)
SetOption__16wxSystemSettingsFRC8wxStringi
;From object file: ..\os2\slider.cpp ;From object file: ..\os2\slider.cpp
;PUBDEFs (Symbols available from object file): ;PUBDEFs (Symbols available from object file):
;wxSlider::SetValue(int) ;wxSlider::SetValue(int)
@@ -13813,6 +13869,8 @@ EXPORTS
GetScrollThumb__8wxWindowCFi GetScrollThumb__8wxWindowCFi
;wxWindow::DoGetClientSize(int*,int*) const ;wxWindow::DoGetClientSize(int*,int*) const
DoGetClientSize__8wxWindowCFPiT1 DoGetClientSize__8wxWindowCFPiT1
;wxWindowBase::GetCapture()
GetCapture__12wxWindowBaseFv
;wxWindow::SetFocus() ;wxWindow::SetFocus()
SetFocus__8wxWindowFv SetFocus__8wxWindowFv
;wxWindow::ReleaseMouse() ;wxWindow::ReleaseMouse()