Weekly catch up and slider fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -104,7 +104,7 @@ void wxSlider::AdjustSubControls(
|
|||||||
,(LONG)nXOffset - (nMinLen + nCx)
|
,(LONG)nXOffset - (nMinLen + nCx)
|
||||||
,(LONG)nYOffset
|
,(LONG)nYOffset
|
||||||
,(LONG)nMinLen
|
,(LONG)nMinLen
|
||||||
,(LONG)nCy
|
,(LONG)nCyf
|
||||||
,SWP_SIZE | SWP_MOVE
|
,SWP_SIZE | SWP_MOVE
|
||||||
);
|
);
|
||||||
nXOffset += nWidth + nCx;
|
nXOffset += nWidth + nCx;
|
||||||
@@ -114,7 +114,7 @@ void wxSlider::AdjustSubControls(
|
|||||||
,(LONG)nXOffset
|
,(LONG)nXOffset
|
||||||
,(LONG)nYOffset
|
,(LONG)nYOffset
|
||||||
,(LONG)nMaxLen
|
,(LONG)nMaxLen
|
||||||
,(LONG)nCy
|
,(LONG)nCyf
|
||||||
,SWP_ZORDER | SWP_SHOW
|
,SWP_ZORDER | SWP_SHOW
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -125,20 +125,20 @@ void wxSlider::AdjustSubControls(
|
|||||||
// Now deal with a vertical slider
|
// Now deal with a vertical slider
|
||||||
//
|
//
|
||||||
|
|
||||||
if (m_lWindowStyle & winSL_LABELS )
|
if (m_windowStyle & wxSL_LABELS )
|
||||||
{
|
{
|
||||||
int nMinLen = 0;
|
int nMinLen = 0;
|
||||||
int nMaxLen = 0;
|
int nMaxLen = 0;
|
||||||
|
|
||||||
::WinQueryWindowText((HWND)m_hStaticMin, 300, zBuf);
|
::WinQueryWindowText((HWND)m_hStaticMin, 300, zBuf);
|
||||||
GetTextExtent(zBuf, &lMinLen, &nCyf, NULL, NULL, &this->GetFont());
|
GetTextExtent(zBuf, &nMinLen, &nCyf, NULL, NULL, &this->GetFont());
|
||||||
|
|
||||||
::WinQueryWindowText((HWND)m_hStaticMax, 300, zBuf);
|
::WinQueryWindowText((HWND)m_hStaticMax, 300, zBuf);
|
||||||
GetTextExtent(zBuf, &lMaxLen, &nCyf, NULL, NULL, &this->GetFont());
|
GetTextExtent(zBuf, &nMaxLen, &nCyf, NULL, NULL, &this->GetFont());
|
||||||
|
|
||||||
if (m_hStaticValue)
|
if (m_hStaticValue)
|
||||||
{
|
{
|
||||||
int nNewWidth = (DAWUTL_MAX(nMinLen, nMaxLen));
|
int nNewWidth = (wxMax(nMinLen, nMaxLen));
|
||||||
|
|
||||||
::WinSetWindowPos( (HWND)m_hStaticValue
|
::WinSetWindowPos( (HWND)m_hStaticValue
|
||||||
,HWND_TOP
|
,HWND_TOP
|
||||||
@@ -392,6 +392,8 @@ bool wxSlider::Create(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SetXComp(0);
|
||||||
|
SetYComp(0);
|
||||||
SetSize( nX
|
SetSize( nX
|
||||||
,nY
|
,nY
|
||||||
,nWidth
|
,nWidth
|
||||||
@@ -461,7 +463,6 @@ bool wxSlider::Create(
|
|||||||
,(PVOID)&lColor
|
,(PVOID)&lColor
|
||||||
);
|
);
|
||||||
SetValue(nValue);
|
SetValue(nValue);
|
||||||
delete pTextFont;
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
} // end of wxSlider::Create
|
} // end of wxSlider::Create
|
||||||
|
|
||||||
@@ -590,6 +591,14 @@ void wxSlider::DoSetSize(
|
|||||||
,(LONG)nSliderHeight
|
,(LONG)nSliderHeight
|
||||||
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
||||||
);
|
);
|
||||||
|
::WinQueryWindowPos(GetHwnd(), GetSwp());
|
||||||
|
::WinSendMsg( GetHwnd()
|
||||||
|
,SLM_SETSLIDERINFO
|
||||||
|
,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
|
||||||
|
,0
|
||||||
|
)
|
||||||
|
,MPFROMLONG((ULONG)(nSliderHeight/2))
|
||||||
|
);
|
||||||
nXOffset += nSliderLength + nCx;
|
nXOffset += nSliderLength + nCx;
|
||||||
|
|
||||||
::WinSetWindowPos( (HWND)m_hStaticMax
|
::WinSetWindowPos( (HWND)m_hStaticMax
|
||||||
@@ -648,8 +657,6 @@ void wxSlider::DoSetSize(
|
|||||||
int nNewWidth = wxMax(nMinLen, nMaxLen);
|
int nNewWidth = wxMax(nMinLen, nMaxLen);
|
||||||
int nValueHeight = nCyf;
|
int nValueHeight = nCyf;
|
||||||
|
|
||||||
nNewWidth += nCx;
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// The height needs to be a bit bigger under Win95 if using native
|
// The height needs to be a bit bigger under Win95 if using native
|
||||||
// 3D effects.
|
// 3D effects.
|
||||||
@@ -657,17 +664,17 @@ void wxSlider::DoSetSize(
|
|||||||
::WinSetWindowPos( (HWND)m_hStaticValue
|
::WinSetWindowPos( (HWND)m_hStaticValue
|
||||||
,HWND_TOP
|
,HWND_TOP
|
||||||
,(LONG)nXOffset
|
,(LONG)nXOffset
|
||||||
,(LONG)nYOffset + lHeight
|
,(LONG)nYOffset + nHeight
|
||||||
,(LONG)nNewWidth
|
,(LONG)nNewWidth
|
||||||
,(LONG)nValueHeight
|
,(LONG)nValueHeight
|
||||||
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
||||||
);
|
);
|
||||||
nUsedHeight += nCy;
|
nUsedHeight += nCyf;
|
||||||
}
|
}
|
||||||
::WinSetWindowPos( (HWND)m_hStaticMin
|
::WinSetWindowPos( (HWND)m_hStaticMin
|
||||||
,HWND_TOP
|
,HWND_TOP
|
||||||
,(LONG)nXOffset
|
,(LONG)nXOffset
|
||||||
,(LONG)nYOffset + lHeight -lCyf
|
,(LONG)nYOffset + nHeight - nCyf
|
||||||
,(LONG)nMinLen
|
,(LONG)nMinLen
|
||||||
,(LONG)nCy
|
,(LONG)nCy
|
||||||
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
||||||
@@ -689,16 +696,24 @@ void wxSlider::DoSetSize(
|
|||||||
::WinSetWindowPos( GetHwnd()
|
::WinSetWindowPos( GetHwnd()
|
||||||
,HWND_TOP
|
,HWND_TOP
|
||||||
,(LONG)nXOffset
|
,(LONG)nXOffset
|
||||||
,(LONG)nYOffset
|
,(LONG)nYOffset + nCyf
|
||||||
,(LONG)nSliderWidth
|
,(LONG)nSliderWidth
|
||||||
,(LONG)nSliderLength
|
,(LONG)nSliderLength
|
||||||
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
||||||
);
|
);
|
||||||
|
::WinQueryWindowPos(GetHwnd(), GetSwp());
|
||||||
|
::WinSendMsg( GetHwnd()
|
||||||
|
,SLM_SETSLIDERINFO
|
||||||
|
,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
|
||||||
|
,0
|
||||||
|
)
|
||||||
|
,MPFROMLONG((ULONG)(nSliderWidth/2))
|
||||||
|
);
|
||||||
nUsedHeight += nSliderLength;
|
nUsedHeight += nSliderLength;
|
||||||
::WinSetWindowPos( (HWND)m_hStaticMax
|
::WinSetWindowPos( (HWND)m_hStaticMax
|
||||||
,HWND_TOP
|
,HWND_TOP
|
||||||
,(LONG)nXOffset
|
,(LONG)nXOffset
|
||||||
,(LONG)nYOffset
|
,(LONG)nYOffset - nCyf
|
||||||
,(LONG)nMaxLen
|
,(LONG)nMaxLen
|
||||||
,(LONG)nCy
|
,(LONG)nCy
|
||||||
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
,SWP_ZORDER | SWP_SIZE | SWP_MOVE | SWP_SHOW
|
||||||
|
520
src/os2/wx23.def
520
src/os2/wx23.def
@@ -159,6 +159,8 @@ EXPORTS
|
|||||||
Insert__14wxArrayOptionsFRC15wxCmdLineOptionUiT2
|
Insert__14wxArrayOptionsFRC15wxCmdLineOptionUiT2
|
||||||
;wxCmdLineParserData::wxCmdLineParserData()
|
;wxCmdLineParserData::wxCmdLineParserData()
|
||||||
__ct__19wxCmdLineParserDataFv
|
__ct__19wxCmdLineParserDataFv
|
||||||
|
;wxCmdLineParser::AreLongOptionsEnabled()
|
||||||
|
AreLongOptionsEnabled__15wxCmdLineParserFv
|
||||||
;wxCmdLineParser::SetCmdLine(const wxString&)
|
;wxCmdLineParser::SetCmdLine(const wxString&)
|
||||||
SetCmdLine__15wxCmdLineParserFRC8wxString
|
SetCmdLine__15wxCmdLineParserFRC8wxString
|
||||||
;wxArrayParams::wxArrayParams(const wxArrayParams&)
|
;wxArrayParams::wxArrayParams(const wxArrayParams&)
|
||||||
@@ -4355,8 +4357,8 @@ EXPORTS
|
|||||||
OnSysTell__20wxMemoryOutputStreamCFv
|
OnSysTell__20wxMemoryOutputStreamCFv
|
||||||
;From object file: ..\common\nbkbase.cpp
|
;From object file: ..\common\nbkbase.cpp
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
;wxNotebookBase::AssignImageList(wxImageList*)
|
;wxNotebookBase::SetImageList(wxGenericImageList*)
|
||||||
AssignImageList__14wxNotebookBaseFP11wxImageList
|
SetImageList__14wxNotebookBaseFP18wxGenericImageList
|
||||||
__vft14wxNotebookBase8wxObject
|
__vft14wxNotebookBase8wxObject
|
||||||
;wxNotebookBase::DoRemovePage(int)
|
;wxNotebookBase::DoRemovePage(int)
|
||||||
DoRemovePage__14wxNotebookBaseFi
|
DoRemovePage__14wxNotebookBaseFi
|
||||||
@@ -4364,8 +4366,8 @@ EXPORTS
|
|||||||
__dt__14wxNotebookBaseFv
|
__dt__14wxNotebookBaseFv
|
||||||
;wxNotebookBase::GetNextPage(unsigned long) const
|
;wxNotebookBase::GetNextPage(unsigned long) const
|
||||||
GetNextPage__14wxNotebookBaseCFUl
|
GetNextPage__14wxNotebookBaseCFUl
|
||||||
;wxNotebookBase::SetImageList(wxImageList*)
|
;wxNotebookBase::AssignImageList(wxGenericImageList*)
|
||||||
SetImageList__14wxNotebookBaseFP11wxImageList
|
AssignImageList__14wxNotebookBaseFP18wxGenericImageList
|
||||||
;wxNotebookBase::DeletePage(int)
|
;wxNotebookBase::DeletePage(int)
|
||||||
DeletePage__14wxNotebookBaseFi
|
DeletePage__14wxNotebookBaseFi
|
||||||
;wxNotebookBase::CalcSizeFromPage(const wxSize&)
|
;wxNotebookBase::CalcSizeFromPage(const wxSize&)
|
||||||
@@ -9008,39 +9010,39 @@ EXPORTS
|
|||||||
KeywordSearch__24wxHTMLHelpControllerBaseFRC8wxString
|
KeywordSearch__24wxHTMLHelpControllerBaseFRC8wxString
|
||||||
;From object file: ..\generic\imaglist.cpp
|
;From object file: ..\generic\imaglist.cpp
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
__vft11wxImageList8wxObject
|
;wxGenericImageList::sm_classwxGenericImageList
|
||||||
;wxImageList::Add(const wxBitmap&,const wxColour&)
|
sm_classwxGenericImageList__18wxGenericImageList
|
||||||
Add__11wxImageListFRC8wxBitmapRC8wxColour
|
;wxGenericImageList::Create()
|
||||||
;wxImageList::Add(const wxBitmap&,const wxBitmap&)
|
Create__18wxGenericImageListFv
|
||||||
Add__11wxImageListFRC8wxBitmapT1
|
;wxGenericImageList::GetSize(int,int&,int&) const
|
||||||
;wxImageList::Remove(int)
|
GetSize__18wxGenericImageListCFiRiT2
|
||||||
Remove__11wxImageListFi
|
;wxGenericImageList::Draw(int,wxDC&,int,int,int,unsigned long)
|
||||||
;wxImageList::Create()
|
Draw__18wxGenericImageListFiR4wxDCN31Ul
|
||||||
Create__11wxImageListFv
|
;wxGenericImageList::GetImageCount() const
|
||||||
;wxImageList::Add(const wxBitmap&)
|
GetImageCount__18wxGenericImageListCFv
|
||||||
Add__11wxImageListFRC8wxBitmap
|
;wxGenericImageList::RemoveAll()
|
||||||
;wxImageList::sm_classwxImageList
|
RemoveAll__18wxGenericImageListFv
|
||||||
sm_classwxImageList__11wxImageList
|
;wxGenericImageList::Replace(int,const wxBitmap&)
|
||||||
;wxImageList::Replace(int,const wxBitmap&)
|
Replace__18wxGenericImageListFiRC8wxBitmap
|
||||||
Replace__11wxImageListFiRC8wxBitmap
|
;wxGenericImageList::Remove(int)
|
||||||
;wxImageList::wxImageList(int,int,unsigned long,int)
|
Remove__18wxGenericImageListFi
|
||||||
__ct__11wxImageListFiT1UlT1
|
;wxConstructorForwxGenericImageList()
|
||||||
;wxImageList::Create(int,int,unsigned long,int)
|
wxConstructorForwxGenericImageList__Fv
|
||||||
Create__11wxImageListFiT1UlT1
|
;wxGenericImageList::~wxGenericImageList()
|
||||||
;wxImageList::~wxImageList()
|
__dt__18wxGenericImageListFv
|
||||||
__dt__11wxImageListFv
|
__vft18wxGenericImageList8wxObject
|
||||||
;wxImageList::GetSize(int,int&,int&) const
|
;wxGenericImageList::Add(const wxBitmap&,const wxBitmap&)
|
||||||
GetSize__11wxImageListCFiRiT2
|
Add__18wxGenericImageListFRC8wxBitmapT1
|
||||||
;wxImageList::Draw(int,wxDC&,int,int,int,unsigned long)
|
;wxGenericImageList::Add(const wxBitmap&,const wxColour&)
|
||||||
Draw__11wxImageListFiR4wxDCN31Ul
|
Add__18wxGenericImageListFRC8wxBitmapRC8wxColour
|
||||||
;wxImageList::GetImageCount() const
|
;wxGenericImageList::Add(const wxBitmap&)
|
||||||
GetImageCount__11wxImageListCFv
|
Add__18wxGenericImageListFRC8wxBitmap
|
||||||
;wxImageList::GetBitmap(int) const
|
;wxGenericImageList::wxGenericImageList(int,int,unsigned long,int)
|
||||||
GetBitmap__11wxImageListCFi
|
__ct__18wxGenericImageListFiT1UlT1
|
||||||
;wxConstructorForwxImageList()
|
;wxGenericImageList::GetBitmap(int) const
|
||||||
wxConstructorForwxImageList__Fv
|
GetBitmap__18wxGenericImageListCFi
|
||||||
;wxImageList::RemoveAll()
|
;wxGenericImageList::Create(int,int,unsigned long,int)
|
||||||
RemoveAll__11wxImageListFv
|
Create__18wxGenericImageListFiT1UlT1
|
||||||
;From object file: ..\generic\laywin.cpp
|
;From object file: ..\generic\laywin.cpp
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
;wxSashLayoutWindow::OnCalculateLayout(wxCalculateLayoutEvent&)
|
;wxSashLayoutWindow::OnCalculateLayout(wxCalculateLayoutEvent&)
|
||||||
@@ -9083,24 +9085,20 @@ EXPORTS
|
|||||||
wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
|
wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
|
||||||
;wxListTextCtrl::sm_eventTable
|
;wxListTextCtrl::sm_eventTable
|
||||||
sm_eventTable__14wxListTextCtrl
|
sm_eventTable__14wxListTextCtrl
|
||||||
;wxListCtrl::sm_eventTableEntries
|
;wxGenericListCtrl::SetSingleStyle(long,unsigned long)
|
||||||
sm_eventTableEntries__10wxListCtrl
|
SetSingleStyle__17wxGenericListCtrlFlUl
|
||||||
;wxListCtrl::SortItems(int(*)(long,long,long),long)
|
|
||||||
SortItems__10wxListCtrlFPFlN21_il
|
|
||||||
;wxListCtrl::SetItemPosition(long,const wxPoint&)
|
|
||||||
SetItemPosition__10wxListCtrlFlRC7wxPoint
|
|
||||||
;wxListMainWindow::SendNotify(unsigned int,int,wxPoint)
|
;wxListMainWindow::SendNotify(unsigned int,int,wxPoint)
|
||||||
SendNotify__16wxListMainWindowFUii7wxPoint
|
SendNotify__16wxListMainWindowFUii7wxPoint
|
||||||
;wxSelectionStore::SelectRange(unsigned int,unsigned int,unsigned long,wxArrayInt*)
|
;wxSelectionStore::SelectRange(unsigned int,unsigned int,unsigned long,wxArrayInt*)
|
||||||
SelectRange__16wxSelectionStoreFUiT1UlP10wxArrayInt
|
SelectRange__16wxSelectionStoreFUiT1UlP10wxArrayInt
|
||||||
|
;wxGenericListCtrl::RefreshItem(long)
|
||||||
|
RefreshItem__17wxGenericListCtrlFl
|
||||||
;wxListHeaderWindow::OnSetFocus(wxFocusEvent&)
|
;wxListHeaderWindow::OnSetFocus(wxFocusEvent&)
|
||||||
OnSetFocus__18wxListHeaderWindowFR12wxFocusEvent
|
OnSetFocus__18wxListHeaderWindowFR12wxFocusEvent
|
||||||
;wxListMainWindow::OnPaint(wxPaintEvent&)
|
;wxListMainWindow::OnPaint(wxPaintEvent&)
|
||||||
OnPaint__16wxListMainWindowFR12wxPaintEvent
|
OnPaint__16wxListMainWindowFR12wxPaintEvent
|
||||||
;wxListTextCtrl::OnKillFocus(wxFocusEvent&)
|
;wxListTextCtrl::OnKillFocus(wxFocusEvent&)
|
||||||
OnKillFocus__14wxListTextCtrlFR12wxFocusEvent
|
OnKillFocus__14wxListTextCtrlFR12wxFocusEvent
|
||||||
;wxListCtrl::OnIdle(wxIdleEvent&)
|
|
||||||
OnIdle__10wxListCtrlFR11wxIdleEvent
|
|
||||||
;wxListMainWindow::HighlightAll(unsigned long)
|
;wxListMainWindow::HighlightAll(unsigned long)
|
||||||
HighlightAll__16wxListMainWindowFUl
|
HighlightAll__16wxListMainWindowFUl
|
||||||
;wxListMainWindow::DeleteItem(long)
|
;wxListMainWindow::DeleteItem(long)
|
||||||
@@ -9111,8 +9109,16 @@ EXPORTS
|
|||||||
__ct__14wxListTextCtrlFP16wxListMainWindowUi
|
__ct__14wxListTextCtrlFP16wxListMainWindowUi
|
||||||
;wxListItemData::SetSize(int,int)
|
;wxListItemData::SetSize(int,int)
|
||||||
SetSize__14wxListItemDataFiT1
|
SetSize__14wxListItemDataFiT1
|
||||||
|
;wxGenericListCtrl::SetItem(wxListItem&)
|
||||||
|
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)
|
||||||
|
SetColumnWidth__17wxGenericListCtrlFiT1
|
||||||
|
;wxGenericListCtrl::ScrollList(int,int)
|
||||||
|
ScrollList__17wxGenericListCtrlFiT1
|
||||||
;wxListMainWindow::RefreshLine(unsigned int)
|
;wxListMainWindow::RefreshLine(unsigned int)
|
||||||
RefreshLine__16wxListMainWindowFUi
|
RefreshLine__16wxListMainWindowFUi
|
||||||
;wxSelectionStore::OnItemDelete(unsigned int)
|
;wxSelectionStore::OnItemDelete(unsigned int)
|
||||||
@@ -9125,8 +9131,6 @@ EXPORTS
|
|||||||
GetLineLabelRect__16wxListMainWindowCFUi
|
GetLineLabelRect__16wxListMainWindowCFUi
|
||||||
;wxListItemData::GetItem(wxListItem&) const
|
;wxListItemData::GetItem(wxListItem&) const
|
||||||
GetItem__14wxListItemDataCFR10wxListItem
|
GetItem__14wxListItemDataCFR10wxListItem
|
||||||
;wxListCtrl::FindItem(long,long)
|
|
||||||
FindItem__10wxListCtrlFlT1
|
|
||||||
;wxListItemData::Init()
|
;wxListItemData::Init()
|
||||||
Init__14wxListItemDataFv
|
Init__14wxListItemDataFv
|
||||||
;wxListHeaderWindow::~wxListHeaderWindow()
|
;wxListHeaderWindow::~wxListHeaderWindow()
|
||||||
@@ -9135,10 +9139,12 @@ EXPORTS
|
|||||||
__ct__16wxListMainWindowFv
|
__ct__16wxListMainWindowFv
|
||||||
;wxListHeaderData::wxListHeaderData()
|
;wxListHeaderData::wxListHeaderData()
|
||||||
__ct__16wxListHeaderDataFv
|
__ct__16wxListHeaderDataFv
|
||||||
;wxListCtrl::SetFocus()
|
;wxGenericListCtrl::Thaw()
|
||||||
SetFocus__10wxListCtrlFv
|
Thaw__17wxGenericListCtrlFv
|
||||||
;wxListCtrl::SetCursor(const wxCursor&)
|
;wxGenericListCtrl::SetTextColour(const wxColour&)
|
||||||
SetCursor__10wxListCtrlFRC8wxCursor
|
SetTextColour__17wxGenericListCtrlFRC8wxColour
|
||||||
|
;wxGenericListCtrl::SetForegroundColour(const wxColour&)
|
||||||
|
SetForegroundColour__17wxGenericListCtrlFRC8wxColour
|
||||||
;wxListLineData::ReverseHighlight()
|
;wxListLineData::ReverseHighlight()
|
||||||
ReverseHighlight__14wxListLineDataFv
|
ReverseHighlight__14wxListLineDataFv
|
||||||
;wxListRenameTimer::Notify()
|
;wxListRenameTimer::Notify()
|
||||||
@@ -9147,85 +9153,99 @@ EXPORTS
|
|||||||
Init__18wxListHeaderWindowFv
|
Init__18wxListHeaderWindowFv
|
||||||
;wxListHeaderData::GetWidth() const
|
;wxListHeaderData::GetWidth() const
|
||||||
GetWidth__16wxListHeaderDataCFv
|
GetWidth__16wxListHeaderDataCFv
|
||||||
;wxListCtrl::GetTopItem() const
|
;wxGenericListCtrl::GetTopItem() const
|
||||||
GetTopItem__10wxListCtrlCFv
|
GetTopItem__17wxGenericListCtrlCFv
|
||||||
;wxListMainWindow::GetNextItem(long,int,int) const
|
;wxListMainWindow::GetNextItem(long,int,int) const
|
||||||
GetNextItem__16wxListMainWindowCFliT2
|
GetNextItem__16wxListMainWindowCFliT2
|
||||||
;wxListCtrl::GetItemCount() const
|
|
||||||
GetItemCount__10wxListCtrlCFv
|
|
||||||
;wxListMainWindow::GetImageSize(int,int&,int&) const
|
;wxListMainWindow::GetImageSize(int,int&,int&) const
|
||||||
GetImageSize__16wxListMainWindowCFiRiT2
|
GetImageSize__16wxListMainWindowCFiRiT2
|
||||||
;wxListCtrl::Freeze()
|
;wxGenericListCtrl::GetEventTable() const
|
||||||
Freeze__10wxListCtrlFv
|
GetEventTable__17wxGenericListCtrlCFv
|
||||||
|
;wxGenericListCtrl::GetDropTarget() const
|
||||||
|
GetDropTarget__17wxGenericListCtrlCFv
|
||||||
;wxListHeaderWindow::DoDrawRect(wxDC*,int,int,int,int)
|
;wxListHeaderWindow::DoDrawRect(wxDC*,int,int,int,int)
|
||||||
DoDrawRect__18wxListHeaderWindowFP4wxDCiN32
|
DoDrawRect__18wxListHeaderWindowFP4wxDCiN32
|
||||||
|
;wxGenericListCtrl::ClearAll()
|
||||||
|
ClearAll__17wxGenericListCtrlFv
|
||||||
;wxListMainWindow::OnRenameAccept(unsigned int,const wxString&)
|
;wxListMainWindow::OnRenameAccept(unsigned int,const wxString&)
|
||||||
OnRenameAccept__16wxListMainWindowFUiRC8wxString
|
OnRenameAccept__16wxListMainWindowFUiRC8wxString
|
||||||
wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
|
wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
|
||||||
wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
|
wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
|
||||||
;wxListMainWindow::OnArrowChar(unsigned int,const wxKeyEvent&)
|
;wxGenericListCtrl::SetItemText(long,const wxString&)
|
||||||
OnArrowChar__16wxListMainWindowFUiRC10wxKeyEvent
|
SetItemText__17wxGenericListCtrlFlRC8wxString
|
||||||
|
;wxGenericListCtrl::Edit(long)
|
||||||
|
Edit__17wxGenericListCtrlFl
|
||||||
wxEVT_COMMAND_LIST_ITEM_FOCUSED
|
wxEVT_COMMAND_LIST_ITEM_FOCUSED
|
||||||
wxEVT_COMMAND_LIST_ITEM_DESELECTED
|
wxEVT_COMMAND_LIST_ITEM_DESELECTED
|
||||||
wxEVT_COMMAND_LIST_ITEM_ACTIVATED
|
wxEVT_COMMAND_LIST_ITEM_ACTIVATED
|
||||||
wxEVT_COMMAND_LIST_CACHE_HINT
|
wxEVT_COMMAND_LIST_CACHE_HINT
|
||||||
|
;wxGenericListCtrl::sm_eventTable
|
||||||
|
sm_eventTable__17wxGenericListCtrl
|
||||||
__vft14wxListTextCtrl8wxObject
|
__vft14wxListTextCtrl8wxObject
|
||||||
;wxListCtrl::SetItemSpacing(int,unsigned long)
|
;wxGenericListCtrl::SetItemCount(long)
|
||||||
SetItemSpacing__10wxListCtrlFiUl
|
SetItemCount__17wxGenericListCtrlFl
|
||||||
;wxListMainWindow::SetItemCount(long)
|
;wxListMainWindow::SetItemCount(long)
|
||||||
SetItemCount__16wxListMainWindowFl
|
SetItemCount__16wxListMainWindowFl
|
||||||
;wxListCtrl::SetDropTarget(wxDropTarget*)
|
|
||||||
SetDropTarget__10wxListCtrlFP12wxDropTarget
|
|
||||||
;wxListMainWindow::RecalculatePositions(unsigned long)
|
;wxListMainWindow::RecalculatePositions(unsigned long)
|
||||||
RecalculatePositions__16wxListMainWindowFUl
|
RecalculatePositions__16wxListMainWindowFUl
|
||||||
;wxListMainWindow::OnKeyDown(wxKeyEvent&)
|
;wxListMainWindow::OnKeyDown(wxKeyEvent&)
|
||||||
OnKeyDown__16wxListMainWindowFR10wxKeyEvent
|
OnKeyDown__16wxListMainWindowFR10wxKeyEvent
|
||||||
;wxListLineDataArray::operator=(const wxListLineDataArray&)
|
;wxListMainWindow::OnArrowChar(unsigned int,const wxKeyEvent&)
|
||||||
__as__19wxListLineDataArrayFRC19wxListLineDataArray
|
OnArrowChar__16wxListMainWindowFUiRC10wxKeyEvent
|
||||||
|
;wxGenericListCtrl::GetItemData(long) const
|
||||||
|
GetItemData__17wxGenericListCtrlCFl
|
||||||
|
;wxGenericListCtrl::GetItemState(long,long) const
|
||||||
|
GetItemState__17wxGenericListCtrlCFlT1
|
||||||
wxEVT_COMMAND_LIST_INSERT_ITEM
|
wxEVT_COMMAND_LIST_INSERT_ITEM
|
||||||
;wxListItem::sm_classwxListItem
|
;wxListItem::sm_classwxListItem
|
||||||
sm_classwxListItem__10wxListItem
|
sm_classwxListItem__10wxListItem
|
||||||
list_ctrl_compare_func_1
|
list_ctrl_compare_func_1
|
||||||
list_ctrl_compare_data
|
list_ctrl_compare_data
|
||||||
|
;wxListLineDataArray::operator=(const wxListLineDataArray&)
|
||||||
|
__as__19wxListLineDataArrayFRC19wxListLineDataArray
|
||||||
;wxListHeaderData::SetItem(const wxListItem&)
|
;wxListHeaderData::SetItem(const wxListItem&)
|
||||||
SetItem__16wxListHeaderDataFRC10wxListItem
|
SetItem__16wxListHeaderDataFRC10wxListItem
|
||||||
;wxListCtrl::SetItem(wxListItem&)
|
|
||||||
SetItem__10wxListCtrlFR10wxListItem
|
|
||||||
;wxListMainWindow::SetItemState(long,long,long)
|
;wxListMainWindow::SetItemState(long,long,long)
|
||||||
SetItemState__16wxListMainWindowFlN21
|
SetItemState__16wxListMainWindowFlN21
|
||||||
;wxListMainWindow::SetImageList(wxImageList*,int)
|
;wxListMainWindow::SetImageList(wxGenericImageList*,int)
|
||||||
SetImageList__16wxListMainWindowFP11wxImageListi
|
SetImageList__16wxListMainWindowFP18wxGenericImageListi
|
||||||
|
;wxGenericListCtrl::SetColumn(int,wxListItem&)
|
||||||
|
SetColumn__17wxGenericListCtrlFiR10wxListItem
|
||||||
;wxListMainWindow::SetColumnWidth(int,int)
|
;wxListMainWindow::SetColumnWidth(int,int)
|
||||||
SetColumnWidth__16wxListMainWindowFiT1
|
SetColumnWidth__16wxListMainWindowFiT1
|
||||||
;wxListCtrl::OnGetItemText(long,long) const
|
;wxGenericListCtrl::RefreshItems(long,long)
|
||||||
OnGetItemText__10wxListCtrlCFlT1
|
RefreshItems__17wxGenericListCtrlFlT1
|
||||||
|
;wxGenericListCtrl::OnGetItemText(long,long) const
|
||||||
|
OnGetItemText__17wxGenericListCtrlCFlT1
|
||||||
;wxListMainWindow::MoveToItem(unsigned int)
|
;wxListMainWindow::MoveToItem(unsigned int)
|
||||||
MoveToItem__16wxListMainWindowFUi
|
MoveToItem__16wxListMainWindowFUi
|
||||||
;wxListHeaderData::IsHit(int,int) const
|
;wxListHeaderData::IsHit(int,int) const
|
||||||
IsHit__16wxListHeaderDataCFiT1
|
IsHit__16wxListHeaderDataCFiT1
|
||||||
;wxListItemData::IsHit(int,int) const
|
;wxListItemData::IsHit(int,int) const
|
||||||
IsHit__14wxListItemDataCFiT1
|
IsHit__14wxListItemDataCFiT1
|
||||||
;wxListCtrl::InsertItem(wxListItem&)
|
;wxGenericListCtrl::InsertItem(long,int)
|
||||||
InsertItem__10wxListCtrlFR10wxListItem
|
InsertItem__17wxGenericListCtrlFli
|
||||||
;wxListMainWindow::HitTest(int,int,int&)
|
;wxListMainWindow::HitTest(int,int,int&)
|
||||||
HitTest__16wxListMainWindowFiT1Ri
|
HitTest__16wxListMainWindowFiT1Ri
|
||||||
;wxListCtrl::HitTest(const wxPoint&,int&)
|
;wxGenericListCtrl::GetImageList(int) const
|
||||||
HitTest__10wxListCtrlFRC7wxPointRi
|
GetImageList__17wxGenericListCtrlCFi
|
||||||
|
;wxGenericListCtrl::GetColumn(int,wxListItem&) const
|
||||||
|
GetColumn__17wxGenericListCtrlCFiR10wxListItem
|
||||||
;wxListMainWindow::GetColumn(int,wxListItem&) const
|
;wxListMainWindow::GetColumn(int,wxListItem&) const
|
||||||
GetColumn__16wxListMainWindowCFiR10wxListItem
|
GetColumn__16wxListMainWindowCFiR10wxListItem
|
||||||
|
;wxGenericListCtrl::DeleteColumn(int)
|
||||||
|
DeleteColumn__17wxGenericListCtrlFi
|
||||||
;wxListMainWindow::CacheLineData(unsigned int)
|
;wxListMainWindow::CacheLineData(unsigned int)
|
||||||
CacheLineData__16wxListMainWindowFUi
|
CacheLineData__16wxListMainWindowFUi
|
||||||
;wxwxListItemDataListNode::DeleteData()
|
;wxGenericListCtrl::GetNextItem(long,int,int) const
|
||||||
DeleteData__24wxwxListItemDataListNodeFv
|
GetNextItem__17wxGenericListCtrlCFliT2
|
||||||
;wxConstructorForwxListCtrl()
|
|
||||||
wxConstructorForwxListCtrl__Fv
|
|
||||||
list_ctrl_compare_func_2
|
list_ctrl_compare_func_2
|
||||||
;wxListMainWindow::~wxListMainWindow()
|
;wxListMainWindow::~wxListMainWindow()
|
||||||
__dt__16wxListMainWindowFv
|
__dt__16wxListMainWindowFv
|
||||||
;wxListHeaderWindow::wxListHeaderWindow()
|
;wxListHeaderWindow::wxListHeaderWindow()
|
||||||
__ct__18wxListHeaderWindowFv
|
__ct__18wxListHeaderWindowFv
|
||||||
;wxListCtrl::SetItemTextColour(long,const wxColour&)
|
;wxGenericListCtrl::SetItem(long,int,const wxString&,int)
|
||||||
SetItemTextColour__10wxListCtrlFlRC8wxColour
|
SetItem__17wxGenericListCtrlFliRC8wxStringT2
|
||||||
;wxListLineData::SetAttr(wxListItemAttr*)
|
;wxListLineData::SetAttr(wxListItemAttr*)
|
||||||
SetAttr__14wxListLineDataFP14wxListItemAttr
|
SetAttr__14wxListLineDataFP14wxListItemAttr
|
||||||
;wxListMainWindow::RefreshSelected()
|
;wxListMainWindow::RefreshSelected()
|
||||||
@@ -9236,14 +9256,20 @@ EXPORTS
|
|||||||
Insert__19wxListLineDataArrayFRC14wxListLineDataUiT2
|
Insert__19wxListLineDataArrayFRC14wxListLineDataUiT2
|
||||||
;wxListItemData::GetX() const
|
;wxListItemData::GetX() const
|
||||||
GetX__14wxListItemDataCFv
|
GetX__14wxListItemDataCFv
|
||||||
;wxListCtrl::GetTextColour() const
|
;wxGenericListCtrl::GetTextColour() const
|
||||||
GetTextColour__10wxListCtrlCFv
|
GetTextColour__17wxGenericListCtrlCFv
|
||||||
;wxListMainWindow::GetHeaderWidth() const
|
;wxListMainWindow::GetHeaderWidth() const
|
||||||
GetHeaderWidth__16wxListMainWindowCFv
|
GetHeaderWidth__16wxListMainWindowCFv
|
||||||
|
;wxGenericListCtrl::GetForegroundColour() const
|
||||||
|
GetForegroundColour__17wxGenericListCtrlCFv
|
||||||
;wxListTextCtrl::GetEventTable() const
|
;wxListTextCtrl::GetEventTable() const
|
||||||
GetEventTable__14wxListTextCtrlCFv
|
GetEventTable__14wxListTextCtrlCFv
|
||||||
|
;wxGenericListCtrl::DoPopupMenu(wxMenu*,int,int)
|
||||||
|
DoPopupMenu__17wxGenericListCtrlFP6wxMenuiT2
|
||||||
;wxListMainWindow::DoDeleteAllItems()
|
;wxListMainWindow::DoDeleteAllItems()
|
||||||
DoDeleteAllItems__16wxListMainWindowFv
|
DoDeleteAllItems__16wxListMainWindowFv
|
||||||
|
;wxwxListItemDataListNode::DeleteData()
|
||||||
|
DeleteData__24wxwxListItemDataListNodeFv
|
||||||
;wxListLineData::wxListLineData(wxListMainWindow*)
|
;wxListLineData::wxListLineData(wxListMainWindow*)
|
||||||
__ct__14wxListLineDataFP16wxListMainWindow
|
__ct__14wxListLineDataFP16wxListMainWindow
|
||||||
wxEVT_COMMAND_LIST_SET_INFO
|
wxEVT_COMMAND_LIST_SET_INFO
|
||||||
@@ -9260,42 +9286,44 @@ EXPORTS
|
|||||||
sm_classwxListMainWindow__16wxListMainWindow
|
sm_classwxListMainWindow__16wxListMainWindow
|
||||||
;wxListRenameTimer::wxListRenameTimer(wxListMainWindow*)
|
;wxListRenameTimer::wxListRenameTimer(wxListMainWindow*)
|
||||||
__ct__17wxListRenameTimerFP16wxListMainWindow
|
__ct__17wxListRenameTimerFP16wxListMainWindow
|
||||||
;wxListCtrl::InsertColumn(long,const wxString&,int,int)
|
;wxGenericListCtrl::InsertColumn(long,const wxString&,int,int)
|
||||||
InsertColumn__10wxListCtrlFlRC8wxStringiT3
|
InsertColumn__17wxGenericListCtrlFlRC8wxStringiT3
|
||||||
;wxListCtrl::Edit(long)
|
|
||||||
Edit__10wxListCtrlFl
|
|
||||||
;wxListEvent::sm_classwxListEvent
|
|
||||||
sm_classwxListEvent__11wxListEvent
|
|
||||||
;wxListCtrl::sm_classwxListCtrl
|
|
||||||
sm_classwxListCtrl__10wxListCtrl
|
|
||||||
__vft18wxListHeaderWindow8wxObject
|
|
||||||
__vft17wxListRenameTimer8wxObject
|
|
||||||
;wxListMainWindow::SortItems(int(*)(long,long,long),long)
|
|
||||||
SortItems__16wxListMainWindowFPFlN21_il
|
|
||||||
;wxListCtrl::SetSingleStyle(long,unsigned long)
|
|
||||||
SetSingleStyle__10wxListCtrlFlUl
|
|
||||||
;wxListMainWindow::SetItemSpacing(int,unsigned long)
|
|
||||||
SetItemSpacing__16wxListMainWindowFiUl
|
|
||||||
;wxListCtrl::SetItemCount(long)
|
|
||||||
SetItemCount__10wxListCtrlFl
|
|
||||||
;wxListCtrl::OnSize(wxSizeEvent&)
|
|
||||||
OnSize__10wxListCtrlFR11wxSizeEvent
|
|
||||||
;wxListHeaderWindow::OnMouse(wxMouseEvent&)
|
|
||||||
OnMouse__18wxListHeaderWindowFR12wxMouseEvent
|
|
||||||
;wxListTextCtrl::OnChar(wxKeyEvent&)
|
|
||||||
OnChar__14wxListTextCtrlFR10wxKeyEvent
|
|
||||||
;wxListLineDataArray::Index(const wxListLineData&,unsigned long) const
|
;wxListLineDataArray::Index(const wxListLineData&,unsigned long) const
|
||||||
Index__19wxListLineDataArrayCFRC14wxListLineDataUl
|
Index__19wxListLineDataArrayCFRC14wxListLineDataUl
|
||||||
;wxListCtrl::GetItemTextColour(long) const
|
;wxGenericListCtrl::sm_eventTableEntries
|
||||||
GetItemTextColour__10wxListCtrlCFl
|
sm_eventTableEntries__17wxGenericListCtrl
|
||||||
|
;wxListEvent::sm_classwxListEvent
|
||||||
|
sm_classwxListEvent__11wxListEvent
|
||||||
|
__vft18wxListHeaderWindow8wxObject
|
||||||
|
__vft17wxListRenameTimer8wxObject
|
||||||
|
;wxGenericListCtrl::SortItems(int(*)(long,long,long),long)
|
||||||
|
SortItems__17wxGenericListCtrlFPFlN21_il
|
||||||
|
;wxListMainWindow::SortItems(int(*)(long,long,long),long)
|
||||||
|
SortItems__16wxListMainWindowFPFlN21_il
|
||||||
|
;wxGenericListCtrl::SetWindowStyleFlag(long)
|
||||||
|
SetWindowStyleFlag__17wxGenericListCtrlFl
|
||||||
|
;wxGenericListCtrl::SetItemSpacing(int,unsigned long)
|
||||||
|
SetItemSpacing__17wxGenericListCtrlFiUl
|
||||||
|
;wxListMainWindow::SetItemSpacing(int,unsigned long)
|
||||||
|
SetItemSpacing__16wxListMainWindowFiUl
|
||||||
|
;wxGenericListCtrl::SetItemPosition(long,const wxPoint&)
|
||||||
|
SetItemPosition__17wxGenericListCtrlFlRC7wxPoint
|
||||||
|
;wxListHeaderWindow::OnMouse(wxMouseEvent&)
|
||||||
|
OnMouse__18wxListHeaderWindowFR12wxMouseEvent
|
||||||
|
;wxGenericListCtrl::OnIdle(wxIdleEvent&)
|
||||||
|
OnIdle__17wxGenericListCtrlFR11wxIdleEvent
|
||||||
|
;wxGenericListCtrl::OnGetItemAttr(long) const
|
||||||
|
OnGetItemAttr__17wxGenericListCtrlCFl
|
||||||
|
;wxListTextCtrl::OnChar(wxKeyEvent&)
|
||||||
|
OnChar__14wxListTextCtrlFR10wxKeyEvent
|
||||||
|
;wxGenericListCtrl::GetItemText(long) const
|
||||||
|
GetItemText__17wxGenericListCtrlCFl
|
||||||
;wxListMainWindow::GetItemRect(long,wxRect&) const
|
;wxListMainWindow::GetItemRect(long,wxRect&) const
|
||||||
GetItemRect__16wxListMainWindowCFlR6wxRect
|
GetItemRect__16wxListMainWindowCFlR6wxRect
|
||||||
;wxListCtrl::GetItemBackgroundColour(long) const
|
;wxGenericListCtrl::GetItemPosition(long,wxPoint&) const
|
||||||
GetItemBackgroundColour__10wxListCtrlCFl
|
GetItemPosition__17wxGenericListCtrlCFlR7wxPoint
|
||||||
;wxListCtrl::FindItem(long,const wxString&,unsigned long)
|
;wxListLineData::SetImage(int,int)
|
||||||
FindItem__10wxListCtrlFlRC8wxStringUl
|
SetImage__14wxListLineDataFiT1
|
||||||
;wxListCtrl::SetItemState(long,long,long)
|
|
||||||
SetItemState__10wxListCtrlFlN21
|
|
||||||
;wxListHeaderData::wxListHeaderData(const wxListItem&)
|
;wxListHeaderData::wxListHeaderData(const wxListItem&)
|
||||||
__ct__16wxListHeaderDataFRC10wxListItem
|
__ct__16wxListHeaderDataFRC10wxListItem
|
||||||
;wxListHeaderData::SetWidth(int)
|
;wxListHeaderData::SetWidth(int)
|
||||||
@@ -9304,157 +9332,154 @@ EXPORTS
|
|||||||
SetPosition__16wxListHeaderDataFiT1
|
SetPosition__16wxListHeaderDataFiT1
|
||||||
;wxListItemData::SetPosition(int,int)
|
;wxListItemData::SetPosition(int,int)
|
||||||
SetPosition__14wxListItemDataFiT1
|
SetPosition__14wxListItemDataFiT1
|
||||||
;wxListLineData::SetImage(int,int)
|
|
||||||
SetImage__14wxListLineDataFiT1
|
|
||||||
;wxListHeaderData::SetHeight(int)
|
;wxListHeaderData::SetHeight(int)
|
||||||
SetHeight__16wxListHeaderDataFi
|
SetHeight__16wxListHeaderDataFi
|
||||||
;wxListHeaderData::SetFormat(int)
|
;wxListHeaderData::SetFormat(int)
|
||||||
SetFormat__16wxListHeaderDataFi
|
SetFormat__16wxListHeaderDataFi
|
||||||
;wxListCtrl::SetColumnWidth(int,int)
|
|
||||||
SetColumnWidth__10wxListCtrlFiT1
|
|
||||||
;wxListMainWindow::RefreshLines(unsigned int,unsigned int)
|
;wxListMainWindow::RefreshLines(unsigned int,unsigned int)
|
||||||
RefreshLines__16wxListMainWindowFUiT1
|
RefreshLines__16wxListMainWindowFUiT1
|
||||||
;wxListCtrl::InsertItem(long,int)
|
;wxGenericListCtrl::InsertColumn(long,wxListItem&)
|
||||||
InsertItem__10wxListCtrlFli
|
InsertColumn__17wxGenericListCtrlFlR10wxListItem
|
||||||
|
;wxGenericListCtrl::HitTest(const wxPoint&,int&)
|
||||||
|
HitTest__17wxGenericListCtrlFRC7wxPointRi
|
||||||
;wxListMainWindow::GetVisibleLinesRange(unsigned int*,unsigned int*)
|
;wxListMainWindow::GetVisibleLinesRange(unsigned int*,unsigned int*)
|
||||||
GetVisibleLinesRange__16wxListMainWindowFPUiT1
|
GetVisibleLinesRange__16wxListMainWindowFPUiT1
|
||||||
;wxListCtrl::GetItem(wxListItem&) const
|
;wxGenericListCtrl::GetColumnWidth(int) const
|
||||||
GetItem__10wxListCtrlCFR10wxListItem
|
GetColumnWidth__17wxGenericListCtrlCFi
|
||||||
|
;wxGenericListCtrl::FindItem(long,const wxPoint&,int)
|
||||||
|
FindItem__17wxGenericListCtrlFlRC7wxPointi
|
||||||
;wxListMainWindow::FindItem(long,long)
|
;wxListMainWindow::FindItem(long,long)
|
||||||
FindItem__16wxListMainWindowFlT1
|
FindItem__16wxListMainWindowFlT1
|
||||||
;wxListMainWindow::DrawImage(int,wxDC*,int,int)
|
;wxListMainWindow::DrawImage(int,wxDC*,int,int)
|
||||||
DrawImage__16wxListMainWindowFiP4wxDCN21
|
DrawImage__16wxListMainWindowFiP4wxDCN21
|
||||||
;wxListCtrl::DeleteColumn(int)
|
|
||||||
DeleteColumn__10wxListCtrlFi
|
|
||||||
;wxListMainWindow::ChangeCurrent(unsigned int)
|
;wxListMainWindow::ChangeCurrent(unsigned int)
|
||||||
ChangeCurrent__16wxListMainWindowFUi
|
ChangeCurrent__16wxListMainWindowFUi
|
||||||
;wxListCtrl::Arrange(int)
|
;wxGenericListCtrl::AssignImageList(wxGenericImageList*,int)
|
||||||
Arrange__10wxListCtrlFi
|
AssignImageList__17wxGenericListCtrlFP18wxGenericImageListi
|
||||||
;wxListCtrl::GetNextItem(long,int,int) const
|
;wxGenericListCtrl::~wxGenericListCtrl()
|
||||||
GetNextItem__10wxListCtrlCFliT2
|
__dt__17wxGenericListCtrlFv
|
||||||
wxEVT_COMMAND_LIST_KEY_DOWN
|
wxEVT_COMMAND_LIST_KEY_DOWN
|
||||||
;wxConstructorForwxListMainWindow()
|
;wxConstructorForwxListMainWindow()
|
||||||
wxConstructorForwxListMainWindow__Fv
|
wxConstructorForwxListMainWindow__Fv
|
||||||
;wxConstructorForwxListEvent()
|
;wxConstructorForwxListEvent()
|
||||||
wxConstructorForwxListEvent__Fv
|
wxConstructorForwxListEvent__Fv
|
||||||
|
;wxConstructorForwxGenericListCtrl()
|
||||||
|
wxConstructorForwxGenericListCtrl__Fv
|
||||||
__vft16wxListMainWindow14wxScrollHelper
|
__vft16wxListMainWindow14wxScrollHelper
|
||||||
;wxListMainWindow::UpdateCurrent()
|
;wxListMainWindow::UpdateCurrent()
|
||||||
UpdateCurrent__16wxListMainWindowFv
|
UpdateCurrent__16wxListMainWindowFv
|
||||||
;wxListMainWindow::Thaw()
|
;wxListMainWindow::Thaw()
|
||||||
Thaw__16wxListMainWindowFv
|
Thaw__16wxListMainWindowFv
|
||||||
;wxListCtrl::Thaw()
|
;wxGenericListCtrl::SetItemBackgroundColour(long,const wxColour&)
|
||||||
Thaw__10wxListCtrlFv
|
SetItemBackgroundColour__17wxGenericListCtrlFlRC8wxColour
|
||||||
;wxListCtrl::SetItem(long,int,const wxString&,int)
|
|
||||||
SetItem__10wxListCtrlFliRC8wxStringT2
|
|
||||||
;wxListCtrl::SetItemBackgroundColour(long,const wxColour&)
|
|
||||||
SetItemBackgroundColour__10wxListCtrlFlRC8wxColour
|
|
||||||
;wxListMainWindow::SetFocus()
|
;wxListMainWindow::SetFocus()
|
||||||
SetFocus__16wxListMainWindowFv
|
SetFocus__16wxListMainWindowFv
|
||||||
;wxListMainWindow::InitScrolling()
|
;wxListMainWindow::InitScrolling()
|
||||||
InitScrolling__16wxListMainWindowFv
|
InitScrolling__16wxListMainWindowFv
|
||||||
;wxListItemData::GetY() const
|
;wxListItemData::GetY() const
|
||||||
GetY__14wxListItemDataCFv
|
GetY__14wxListItemDataCFv
|
||||||
|
;wxGenericListCtrl::GetSelectedItemCount() const
|
||||||
|
GetSelectedItemCount__17wxGenericListCtrlCFv
|
||||||
;wxListMainWindow::GetLineHeight() const
|
;wxListMainWindow::GetLineHeight() const
|
||||||
GetLineHeight__16wxListMainWindowCFv
|
GetLineHeight__16wxListMainWindowCFv
|
||||||
|
;wxGenericListCtrl::GetItemCount() const
|
||||||
|
GetItemCount__17wxGenericListCtrlCFv
|
||||||
;wxListMainWindow::GetItemCount() const
|
;wxListMainWindow::GetItemCount() const
|
||||||
GetItemCount__16wxListMainWindowCFv
|
GetItemCount__16wxListMainWindowCFv
|
||||||
;wxListItemData::GetHeight() const
|
;wxListItemData::GetHeight() const
|
||||||
GetHeight__14wxListItemDataCFv
|
GetHeight__14wxListItemDataCFv
|
||||||
;wxListHeaderData::GetFormat() const
|
;wxListHeaderData::GetFormat() const
|
||||||
GetFormat__16wxListHeaderDataCFv
|
GetFormat__16wxListHeaderDataCFv
|
||||||
;wxListCtrl::GetEventTable() const
|
|
||||||
GetEventTable__10wxListCtrlCFv
|
|
||||||
;wxListCtrl::GetCountPerPage() const
|
|
||||||
GetCountPerPage__10wxListCtrlCFv
|
|
||||||
;wxListCtrl::GetBackgroundColour() const
|
|
||||||
GetBackgroundColour__10wxListCtrlCFv
|
|
||||||
;wxListLineData::GetAttr() const
|
;wxListLineData::GetAttr() const
|
||||||
GetAttr__14wxListLineDataCFv
|
GetAttr__14wxListLineDataCFv
|
||||||
|
;wxGenericListCtrl::Freeze()
|
||||||
|
Freeze__17wxGenericListCtrlFv
|
||||||
;wxListMainWindow::Freeze()
|
;wxListMainWindow::Freeze()
|
||||||
Freeze__16wxListMainWindowFv
|
Freeze__16wxListMainWindowFv
|
||||||
;wxListCtrl::CreateHeaderWindow()
|
;wxGenericListCtrl::DeleteAllItems()
|
||||||
CreateHeaderWindow__10wxListCtrlFv
|
DeleteAllItems__17wxGenericListCtrlFv
|
||||||
;wxListLineData::SetText(int,const wxString)
|
;wxGenericListCtrl::DeleteAllColumns()
|
||||||
SetText__14wxListLineDataFiC8wxString
|
DeleteAllColumns__17wxGenericListCtrlFv
|
||||||
|
;wxGenericListCtrl::Create(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxValidator&,const wxString&)
|
||||||
|
Create__17wxGenericListCtrlFP8wxWindowiRC7wxPointRC6wxSizelRC11wxValidatorRC8wxString
|
||||||
wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
|
wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
|
||||||
;wxListMainWindow::sm_eventTable
|
;wxListMainWindow::sm_eventTable
|
||||||
sm_eventTable__16wxListMainWindow
|
sm_eventTable__16wxListMainWindow
|
||||||
;wxListHeaderWindow::sm_classwxListHeaderWindow
|
;wxListHeaderWindow::sm_classwxListHeaderWindow
|
||||||
sm_classwxListHeaderWindow__18wxListHeaderWindow
|
sm_classwxListHeaderWindow__18wxListHeaderWindow
|
||||||
;wxListCtrl::SetItemText(long,const wxString&)
|
;wxListLineData::SetText(int,const wxString)
|
||||||
SetItemText__10wxListCtrlFlRC8wxString
|
SetText__14wxListLineDataFiC8wxString
|
||||||
;wxListCtrl::InsertItem(long,const wxString&)
|
|
||||||
InsertItem__10wxListCtrlFlRC8wxString
|
|
||||||
;wxListLineData::Draw(wxDC*)
|
;wxListLineData::Draw(wxDC*)
|
||||||
Draw__14wxListLineDataFP4wxDC
|
Draw__14wxListLineDataFP4wxDC
|
||||||
|
;wxGenericListCtrl::EnsureVisible(long)
|
||||||
|
EnsureVisible__17wxGenericListCtrlFl
|
||||||
|
;wxGenericListCtrl::sm_classwxGenericListCtrl
|
||||||
|
sm_classwxGenericListCtrl__17wxGenericListCtrl
|
||||||
|
__vft17wxGenericListCtrl8wxObject
|
||||||
|
__vft16wxListMainWindow8wxObject
|
||||||
;wxListLineData::SetAttributes(wxDC*,const wxListItemAttr*,unsigned long)
|
;wxListLineData::SetAttributes(wxDC*,const wxListItemAttr*,unsigned long)
|
||||||
SetAttributes__14wxListLineDataFP4wxDCPC14wxListItemAttrUl
|
SetAttributes__14wxListLineDataFP4wxDCPC14wxListItemAttrUl
|
||||||
;wxListCtrl::sm_eventTable
|
|
||||||
sm_eventTable__10wxListCtrl
|
|
||||||
__vft16wxListMainWindow8wxObject
|
|
||||||
;wxListCtrl::SetFont(const wxFont&)
|
|
||||||
SetFont__10wxListCtrlFRC6wxFont
|
|
||||||
;wxListHeaderWindow::SendListEvent(int,wxPoint)
|
;wxListHeaderWindow::SendListEvent(int,wxPoint)
|
||||||
SendListEvent__18wxListHeaderWindowFi7wxPoint
|
SendListEvent__18wxListHeaderWindowFi7wxPoint
|
||||||
;wxListCtrl::ResizeReportView(unsigned long)
|
;wxGenericListCtrl::ResizeReportView(unsigned long)
|
||||||
ResizeReportView__10wxListCtrlFUl
|
ResizeReportView__17wxGenericListCtrlFUl
|
||||||
;wxListMainWindow::OnSetFocus(wxFocusEvent&)
|
;wxListMainWindow::OnSetFocus(wxFocusEvent&)
|
||||||
OnSetFocus__16wxListMainWindowFR12wxFocusEvent
|
OnSetFocus__16wxListMainWindowFR12wxFocusEvent
|
||||||
;wxListMainWindow::OnKillFocus(wxFocusEvent&)
|
;wxListMainWindow::OnKillFocus(wxFocusEvent&)
|
||||||
OnKillFocus__16wxListMainWindowFR12wxFocusEvent
|
OnKillFocus__16wxListMainWindowFR12wxFocusEvent
|
||||||
;wxListCtrl::OnGetItemImage(long) const
|
;wxGenericListCtrl::OnGetItemImage(long) const
|
||||||
OnGetItemImage__10wxListCtrlCFl
|
OnGetItemImage__17wxGenericListCtrlCFl
|
||||||
;wxListCtrl::OnGetItemAttr(long) const
|
|
||||||
OnGetItemAttr__10wxListCtrlCFl
|
|
||||||
;wxListLineData::Highlight(unsigned long)
|
;wxListLineData::Highlight(unsigned long)
|
||||||
Highlight__14wxListLineDataFUl
|
Highlight__14wxListLineDataFUl
|
||||||
;wxListMainWindow::HighlightLines(unsigned int,unsigned int,unsigned long)
|
;wxListMainWindow::HighlightLines(unsigned int,unsigned int,unsigned long)
|
||||||
HighlightLines__16wxListMainWindowFUiT1Ul
|
HighlightLines__16wxListMainWindowFUiT1Ul
|
||||||
|
;wxGenericListCtrl::GetItemSpacing(unsigned long) const
|
||||||
|
GetItemSpacing__17wxGenericListCtrlCFUl
|
||||||
;wxListMainWindow::GetItemSpacing(unsigned long)
|
;wxListMainWindow::GetItemSpacing(unsigned long)
|
||||||
GetItemSpacing__16wxListMainWindowFUl
|
GetItemSpacing__16wxListMainWindowFUl
|
||||||
;wxListCtrl::GetItemPosition(long,wxPoint&) const
|
|
||||||
GetItemPosition__10wxListCtrlCFlR7wxPoint
|
|
||||||
;wxListMainWindow::FindItem(long,const wxString&,unsigned long)
|
;wxListMainWindow::FindItem(long,const wxString&,unsigned long)
|
||||||
FindItem__16wxListMainWindowFlRC8wxStringUl
|
FindItem__16wxListMainWindowFlRC8wxStringUl
|
||||||
;wxListMainWindow::EditLabel(long)
|
;wxListMainWindow::EditLabel(long)
|
||||||
EditLabel__16wxListMainWindowFl
|
EditLabel__16wxListMainWindowFl
|
||||||
;wxListCtrl::DeleteItem(long)
|
;wxGenericListCtrl::SetItemState(long,long,long)
|
||||||
DeleteItem__10wxListCtrlFl
|
SetItemState__17wxGenericListCtrlFlN21
|
||||||
;wxListCtrl::GetItemState(long,long) const
|
|
||||||
GetItemState__10wxListCtrlCFlT1
|
|
||||||
wxEVT_COMMAND_LIST_DELETE_ITEM
|
wxEVT_COMMAND_LIST_DELETE_ITEM
|
||||||
;wxListCtrl::SetColumn(int,wxListItem&)
|
;wxGenericListCtrl::SetItemData(long,long)
|
||||||
SetColumn__10wxListCtrlFiR10wxListItem
|
SetItemData__17wxGenericListCtrlFlT1
|
||||||
;wxListCtrl::RefreshItems(long,long)
|
|
||||||
RefreshItems__10wxListCtrlFlT1
|
|
||||||
;wxListMainWindow::RefreshAfter(unsigned int)
|
;wxListMainWindow::RefreshAfter(unsigned int)
|
||||||
RefreshAfter__16wxListMainWindowFUi
|
RefreshAfter__16wxListMainWindowFUi
|
||||||
|
;wxGenericListCtrl::InsertItem(long,const wxString&,int)
|
||||||
|
InsertItem__17wxGenericListCtrlFlRC8wxStringi
|
||||||
;wxListLineData::InitItems(int)
|
;wxListLineData::InitItems(int)
|
||||||
InitItems__14wxListLineDataFi
|
InitItems__14wxListLineDataFi
|
||||||
;wxListMainWindow::GetLineY(unsigned int) const
|
;wxListMainWindow::GetLineY(unsigned int) const
|
||||||
GetLineY__16wxListMainWindowCFUi
|
GetLineY__16wxListMainWindowCFUi
|
||||||
;wxListMainWindow::GetLineHighlightRect(unsigned int) const
|
;wxListMainWindow::GetLineHighlightRect(unsigned int) const
|
||||||
GetLineHighlightRect__16wxListMainWindowCFUi
|
GetLineHighlightRect__16wxListMainWindowCFUi
|
||||||
|
;wxGenericListCtrl::GetItem(wxListItem&) const
|
||||||
|
GetItem__17wxGenericListCtrlCFR10wxListItem
|
||||||
;wxListMainWindow::GetItem(wxListItem&) const
|
;wxListMainWindow::GetItem(wxListItem&) const
|
||||||
GetItem__16wxListMainWindowCFR10wxListItem
|
GetItem__16wxListMainWindowCFR10wxListItem
|
||||||
;wxListHeaderData::GetItem(wxListItem&)
|
;wxListHeaderData::GetItem(wxListItem&)
|
||||||
GetItem__16wxListHeaderDataFR10wxListItem
|
GetItem__16wxListHeaderDataFR10wxListItem
|
||||||
;wxListLineData::GetItem(int,wxListItem&)
|
;wxListLineData::GetItem(int,wxListItem&)
|
||||||
GetItem__14wxListLineDataFiR10wxListItem
|
GetItem__14wxListLineDataFiR10wxListItem
|
||||||
|
;wxGenericListCtrl::GetItemRect(long,wxRect&,int) const
|
||||||
|
GetItemRect__17wxGenericListCtrlCFlR6wxRecti
|
||||||
;wxListLineData::GetImage(int) const
|
;wxListLineData::GetImage(int) const
|
||||||
GetImage__14wxListLineDataCFi
|
GetImage__14wxListLineDataCFi
|
||||||
;wxListCtrl::GetImageList(int) const
|
;wxGenericListCtrl::FindItem(long,long)
|
||||||
GetImageList__10wxListCtrlCFi
|
FindItem__17wxGenericListCtrlFlT1
|
||||||
;wxListCtrl::GetColumn(int,wxListItem&) const
|
|
||||||
GetColumn__10wxListCtrlCFiR10wxListItem
|
|
||||||
;wxListLineDataArray::DoCopy(const wxListLineDataArray&)
|
;wxListLineDataArray::DoCopy(const wxListLineDataArray&)
|
||||||
DoCopy__19wxListLineDataArrayFRC19wxListLineDataArray
|
DoCopy__19wxListLineDataArrayFRC19wxListLineDataArray
|
||||||
;wxListMainWindow::DeleteColumn(int)
|
;wxListMainWindow::DeleteColumn(int)
|
||||||
DeleteColumn__16wxListMainWindowFi
|
DeleteColumn__16wxListMainWindowFi
|
||||||
;wxListLineData::CalculateSize(wxDC*,int)
|
;wxListLineData::CalculateSize(wxDC*,int)
|
||||||
CalculateSize__14wxListLineDataFP4wxDCi
|
CalculateSize__14wxListLineDataFP4wxDCi
|
||||||
;wxListCtrl::~wxListCtrl()
|
;wxGenericListCtrl::Arrange(int)
|
||||||
__dt__10wxListCtrlFv
|
Arrange__17wxGenericListCtrlFi
|
||||||
|
;wxGenericListCtrl::wxGenericListCtrl()
|
||||||
|
__ct__17wxGenericListCtrlFv
|
||||||
wxSizeTCmpFn
|
wxSizeTCmpFn
|
||||||
;wxConstructorForwxListItem()
|
;wxConstructorForwxListItem()
|
||||||
wxConstructorForwxListItem__Fv
|
wxConstructorForwxListItem__Fv
|
||||||
@@ -9462,26 +9487,24 @@ EXPORTS
|
|||||||
__dt__19wxListLineDataArrayFv
|
__dt__19wxListLineDataArrayFv
|
||||||
;wxListItemData::~wxListItemData()
|
;wxListItemData::~wxListItemData()
|
||||||
__dt__14wxListItemDataFv
|
__dt__14wxListItemDataFv
|
||||||
;wxListCtrl::SetItemImage(long,int,int)
|
;wxGenericListCtrl::SetItemTextColour(long,const wxColour&)
|
||||||
SetItemImage__10wxListCtrlFliT2
|
SetItemTextColour__17wxGenericListCtrlFlRC8wxColour
|
||||||
;wxListCtrl::SetForegroundColour(const wxColour&)
|
;wxGenericListCtrl::SetCursor(const wxCursor&)
|
||||||
SetForegroundColour__10wxListCtrlFRC8wxColour
|
SetCursor__17wxGenericListCtrlFRC8wxCursor
|
||||||
;wxListMainWindow::Init()
|
;wxListMainWindow::Init()
|
||||||
Init__16wxListMainWindowFv
|
Init__16wxListMainWindowFv
|
||||||
;wxListHeaderData::Init()
|
;wxListHeaderData::Init()
|
||||||
Init__16wxListHeaderDataFv
|
Init__16wxListHeaderDataFv
|
||||||
;wxListMainWindow::GetSelectedItemCount() const
|
;wxListMainWindow::GetSelectedItemCount() const
|
||||||
GetSelectedItemCount__16wxListMainWindowCFv
|
GetSelectedItemCount__16wxListMainWindowCFv
|
||||||
;wxListCtrl::GetSelectedItemCount() const
|
|
||||||
GetSelectedItemCount__10wxListCtrlCFv
|
|
||||||
;wxListHeaderWindow::GetEventTable() const
|
;wxListHeaderWindow::GetEventTable() const
|
||||||
GetEventTable__18wxListHeaderWindowCFv
|
GetEventTable__18wxListHeaderWindowCFv
|
||||||
;wxListMainWindow::GetDummyLine() const
|
;wxListMainWindow::GetDummyLine() const
|
||||||
GetDummyLine__16wxListMainWindowCFv
|
GetDummyLine__16wxListMainWindowCFv
|
||||||
;wxListCtrl::GetDropTarget() const
|
;wxGenericListCtrl::GetColumnCount() const
|
||||||
GetDropTarget__10wxListCtrlCFv
|
GetColumnCount__17wxGenericListCtrlCFv
|
||||||
;wxListCtrl::GetColumnCount() const
|
;wxGenericListCtrl::GetBackgroundColour() const
|
||||||
GetColumnCount__10wxListCtrlCFv
|
GetBackgroundColour__17wxGenericListCtrlCFv
|
||||||
;wxListTextCtrl::Finish()
|
;wxListTextCtrl::Finish()
|
||||||
Finish__14wxListTextCtrlFv
|
Finish__14wxListTextCtrlFv
|
||||||
;wxListMainWindow::DeleteEverything()
|
;wxListMainWindow::DeleteEverything()
|
||||||
@@ -9490,28 +9513,29 @@ EXPORTS
|
|||||||
DeleteData__26wxwxListHeaderDataListNodeFv
|
DeleteData__26wxwxListHeaderDataListNodeFv
|
||||||
;wxListMainWindow::DeleteAllItems()
|
;wxListMainWindow::DeleteAllItems()
|
||||||
DeleteAllItems__16wxListMainWindowFv
|
DeleteAllItems__16wxListMainWindowFv
|
||||||
;wxListCtrl::DeleteAllColumns()
|
;wxGenericListCtrl::CreateHeaderWindow()
|
||||||
DeleteAllColumns__10wxListCtrlFv
|
CreateHeaderWindow__17wxGenericListCtrlFv
|
||||||
;wxListTextCtrl::AcceptChanges()
|
;wxListTextCtrl::AcceptChanges()
|
||||||
AcceptChanges__14wxListTextCtrlFv
|
AcceptChanges__14wxListTextCtrlFv
|
||||||
;wxListCtrl::Create(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxValidator&,const wxString&)
|
;wxListMainWindow::GetTextLength(const wxString&) const
|
||||||
Create__10wxListCtrlFP8wxWindowiRC7wxPointRC6wxSizelRC11wxValidatorRC8wxString
|
GetTextLength__16wxListMainWindowCFRC8wxString
|
||||||
wxEVT_COMMAND_LIST_GET_INFO
|
wxEVT_COMMAND_LIST_GET_INFO
|
||||||
;wxListMainWindow::sm_eventTableEntries
|
;wxListMainWindow::sm_eventTableEntries
|
||||||
sm_eventTableEntries__16wxListMainWindow
|
sm_eventTableEntries__16wxListMainWindow
|
||||||
;wxListMainWindow::GetTextLength(const wxString&) const
|
;wxGenericListCtrl::InsertItem(long,const wxString&)
|
||||||
GetTextLength__16wxListMainWindowCFRC8wxString
|
InsertItem__17wxGenericListCtrlFlRC8wxString
|
||||||
;wxListCtrl::EnsureVisible(long)
|
;wxListMainWindow::HighlightLine(unsigned int,unsigned long)
|
||||||
EnsureVisible__10wxListCtrlFl
|
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
|
||||||
sm_eventTableEntries__14wxListTextCtrl
|
sm_eventTableEntries__14wxListTextCtrl
|
||||||
__vft10wxListCtrl8wxObject
|
;wxGenericListCtrl::SetFont(const wxFont&)
|
||||||
;wxListCtrl::SetWindowStyleFlag(long)
|
SetFont__17wxGenericListCtrlFRC6wxFont
|
||||||
SetWindowStyleFlag__10wxListCtrlFl
|
;wxGenericListCtrl::SetDropTarget(wxDropTarget*)
|
||||||
;wxListCtrl::RefreshItem(long)
|
SetDropTarget__17wxGenericListCtrlFP12wxDropTarget
|
||||||
RefreshItem__10wxListCtrlFl
|
;wxGenericListCtrl::OnSize(wxSizeEvent&)
|
||||||
|
OnSize__17wxGenericListCtrlFR11wxSizeEvent
|
||||||
;wxListMainWindow::OnScroll(wxScrollWinEvent&)
|
;wxListMainWindow::OnScroll(wxScrollWinEvent&)
|
||||||
OnScroll__16wxListMainWindowFR16wxScrollWinEvent
|
OnScroll__16wxListMainWindowFR16wxScrollWinEvent
|
||||||
;wxListHeaderWindow::OnPaint(wxPaintEvent&)
|
;wxListHeaderWindow::OnPaint(wxPaintEvent&)
|
||||||
@@ -9522,20 +9546,20 @@ EXPORTS
|
|||||||
OnKeyUp__14wxListTextCtrlFR10wxKeyEvent
|
OnKeyUp__14wxListTextCtrlFR10wxKeyEvent
|
||||||
;wxListMainWindow::OnChar(wxKeyEvent&)
|
;wxListMainWindow::OnChar(wxKeyEvent&)
|
||||||
OnChar__16wxListMainWindowFR10wxKeyEvent
|
OnChar__16wxListMainWindowFR10wxKeyEvent
|
||||||
;wxListMainWindow::HighlightLine(unsigned int,unsigned long)
|
;wxGenericListCtrl::GetItemTextColour(long) const
|
||||||
HighlightLine__16wxListMainWindowFUiUl
|
GetItemTextColour__17wxGenericListCtrlCFl
|
||||||
;wxListCtrl::GetItemText(long) const
|
|
||||||
GetItemText__10wxListCtrlCFl
|
|
||||||
;wxListCtrl::GetItemSpacing(unsigned long) const
|
|
||||||
GetItemSpacing__10wxListCtrlCFUl
|
|
||||||
;wxListMainWindow::GetItemPosition(long,wxPoint&) const
|
;wxListMainWindow::GetItemPosition(long,wxPoint&) const
|
||||||
GetItemPosition__16wxListMainWindowCFlR7wxPoint
|
GetItemPosition__16wxListMainWindowCFlR7wxPoint
|
||||||
;wxListCtrl::GetItemData(long) const
|
;wxGenericListCtrl::GetItemBackgroundColour(long) const
|
||||||
GetItemData__10wxListCtrlCFl
|
GetItemBackgroundColour__17wxGenericListCtrlCFl
|
||||||
|
;wxGenericListCtrl::FindItem(long,const wxString&,unsigned long)
|
||||||
|
FindItem__17wxGenericListCtrlFlRC8wxStringUl
|
||||||
;wxListMainWindow::EnsureVisible(long)
|
;wxListMainWindow::EnsureVisible(long)
|
||||||
EnsureVisible__16wxListMainWindowFl
|
EnsureVisible__16wxListMainWindowFl
|
||||||
;wxListLineData::DrawInReportMode(wxDC*,const wxRect&,const wxRect&,unsigned long)
|
;wxListLineData::DrawInReportMode(wxDC*,const wxRect&,const wxRect&,unsigned long)
|
||||||
DrawInReportMode__14wxListLineDataFP4wxDCRC6wxRectT2Ul
|
DrawInReportMode__14wxListLineDataFP4wxDCRC6wxRectT2Ul
|
||||||
|
;wxGenericListCtrl::DeleteItem(long)
|
||||||
|
DeleteItem__17wxGenericListCtrlFl
|
||||||
;wxListLineData::GetText(int) const
|
;wxListLineData::GetText(int) const
|
||||||
GetText__14wxListLineDataCFi
|
GetText__14wxListLineDataCFi
|
||||||
__vft26wxwxListHeaderDataListNode10wxNodeBase
|
__vft26wxwxListHeaderDataListNode10wxNodeBase
|
||||||
@@ -9546,52 +9570,38 @@ EXPORTS
|
|||||||
SetItem__16wxListMainWindowFR10wxListItem
|
SetItem__16wxListMainWindowFR10wxListItem
|
||||||
;wxListItemData::SetItem(const wxListItem&)
|
;wxListItemData::SetItem(const wxListItem&)
|
||||||
SetItem__14wxListItemDataFRC10wxListItem
|
SetItem__14wxListItemDataFRC10wxListItem
|
||||||
;wxListCtrl::SetItemData(long,long)
|
|
||||||
SetItemData__10wxListCtrlFlT1
|
|
||||||
;wxListCtrl::SetImageList(wxImageList*,int)
|
|
||||||
SetImageList__10wxListCtrlFP11wxImageListi
|
|
||||||
;wxListMainWindow::SetColumn(int,wxListItem&)
|
;wxListMainWindow::SetColumn(int,wxListItem&)
|
||||||
SetColumn__16wxListMainWindowFiR10wxListItem
|
SetColumn__16wxListMainWindowFiR10wxListItem
|
||||||
;wxListCtrl::ScrollList(int,int)
|
|
||||||
ScrollList__10wxListCtrlFiT1
|
|
||||||
;wxListLineDataArray::RemoveAt(unsigned int,unsigned int)
|
;wxListLineDataArray::RemoveAt(unsigned int,unsigned int)
|
||||||
RemoveAt__19wxListLineDataArrayFUiT1
|
RemoveAt__19wxListLineDataArrayFUiT1
|
||||||
;wxSelectionStore::IsSelected(unsigned int) const
|
;wxSelectionStore::IsSelected(unsigned int) const
|
||||||
IsSelected__16wxSelectionStoreCFUi
|
IsSelected__16wxSelectionStoreCFUi
|
||||||
;wxListMainWindow::IsHighlighted(unsigned int) const
|
;wxListMainWindow::IsHighlighted(unsigned int) const
|
||||||
IsHighlighted__16wxListMainWindowCFUi
|
IsHighlighted__16wxListMainWindowCFUi
|
||||||
|
;wxGenericListCtrl::InsertItem(wxListItem&)
|
||||||
|
InsertItem__17wxGenericListCtrlFR10wxListItem
|
||||||
;wxListMainWindow::InsertItem(wxListItem&)
|
;wxListMainWindow::InsertItem(wxListItem&)
|
||||||
InsertItem__16wxListMainWindowFR10wxListItem
|
InsertItem__16wxListMainWindowFR10wxListItem
|
||||||
;wxListCtrl::InsertItem(long,const wxString&,int)
|
|
||||||
InsertItem__10wxListCtrlFlRC8wxStringi
|
|
||||||
;wxListCtrl::InsertColumn(long,wxListItem&)
|
|
||||||
InsertColumn__10wxListCtrlFlR10wxListItem
|
|
||||||
;wxListMainWindow::GetLineIconRect(unsigned int) const
|
;wxListMainWindow::GetLineIconRect(unsigned int) const
|
||||||
GetLineIconRect__16wxListMainWindowCFUi
|
GetLineIconRect__16wxListMainWindowCFUi
|
||||||
;wxListMainWindow::GetItemState(long,long) const
|
;wxListMainWindow::GetItemState(long,long) const
|
||||||
GetItemState__16wxListMainWindowCFlT1
|
GetItemState__16wxListMainWindowCFlT1
|
||||||
;wxListCtrl::GetItemRect(long,wxRect&,int) const
|
|
||||||
GetItemRect__10wxListCtrlCFlR6wxRecti
|
|
||||||
;wxListMainWindow::GetColumnWidth(int) const
|
;wxListMainWindow::GetColumnWidth(int) const
|
||||||
GetColumnWidth__16wxListMainWindowCFi
|
GetColumnWidth__16wxListMainWindowCFi
|
||||||
;wxListCtrl::GetColumnWidth(int) const
|
|
||||||
GetColumnWidth__10wxListCtrlCFi
|
|
||||||
;wxListCtrl::FindItem(long,const wxPoint&,int)
|
|
||||||
FindItem__10wxListCtrlFlRC7wxPointi
|
|
||||||
;wxListCtrl::AssignImageList(wxImageList*,int)
|
|
||||||
AssignImageList__10wxListCtrlFP11wxImageListi
|
|
||||||
;wxListLineDataArray::Add(const wxListLineData&,unsigned int)
|
;wxListLineDataArray::Add(const wxListLineData&,unsigned int)
|
||||||
Add__19wxListLineDataArrayFRC14wxListLineDataUi
|
Add__19wxListLineDataArrayFRC14wxListLineDataUi
|
||||||
;wxListCtrl::wxListCtrl()
|
;wxListLineDataArray::DoEmpty()
|
||||||
__ct__10wxListCtrlFv
|
DoEmpty__19wxListLineDataArrayFv
|
||||||
;wxConstructorForwxListView()
|
;wxConstructorForwxListView()
|
||||||
wxConstructorForwxListView__Fv
|
wxConstructorForwxListView__Fv
|
||||||
;wxConstructorForwxListHeaderWindow()
|
;wxConstructorForwxListHeaderWindow()
|
||||||
wxConstructorForwxListHeaderWindow__Fv
|
wxConstructorForwxListHeaderWindow__Fv
|
||||||
;wxListCtrl::SetTextColour(const wxColour&)
|
;wxGenericListCtrl::SetItemImage(long,int,int)
|
||||||
SetTextColour__10wxListCtrlFRC8wxColour
|
SetItemImage__17wxGenericListCtrlFliT2
|
||||||
;wxListCtrl::SetBackgroundColour(const wxColour&)
|
;wxGenericListCtrl::SetFocus()
|
||||||
SetBackgroundColour__10wxListCtrlFRC8wxColour
|
SetFocus__17wxGenericListCtrlFv
|
||||||
|
;wxGenericListCtrl::SetBackgroundColour(const wxColour&)
|
||||||
|
SetBackgroundColour__17wxGenericListCtrlFRC8wxColour
|
||||||
;wxListMainWindow::RefreshAll()
|
;wxListMainWindow::RefreshAll()
|
||||||
RefreshAll__16wxListMainWindowFv
|
RefreshAll__16wxListMainWindowFv
|
||||||
;wxListMainWindow::HitTestLine(unsigned int,int,int) const
|
;wxListMainWindow::HitTestLine(unsigned int,int,int) const
|
||||||
@@ -9602,22 +9612,14 @@ EXPORTS
|
|||||||
GetWidth__14wxListItemDataCFv
|
GetWidth__14wxListItemDataCFv
|
||||||
;wxListHeaderData::GetImage() const
|
;wxListHeaderData::GetImage() const
|
||||||
GetImage__16wxListHeaderDataCFv
|
GetImage__16wxListHeaderDataCFv
|
||||||
;wxListCtrl::GetForegroundColour() const
|
|
||||||
GetForegroundColour__10wxListCtrlCFv
|
|
||||||
;wxListMainWindow::GetEventTable() const
|
;wxListMainWindow::GetEventTable() const
|
||||||
GetEventTable__16wxListMainWindowCFv
|
GetEventTable__16wxListMainWindowCFv
|
||||||
|
;wxGenericListCtrl::GetCountPerPage() const
|
||||||
|
GetCountPerPage__17wxGenericListCtrlCFv
|
||||||
;wxListMainWindow::GetCountPerPage() const
|
;wxListMainWindow::GetCountPerPage() const
|
||||||
GetCountPerPage__16wxListMainWindowCFv
|
GetCountPerPage__16wxListMainWindowCFv
|
||||||
;wxListHeaderWindow::DrawCurrent()
|
;wxListHeaderWindow::DrawCurrent()
|
||||||
DrawCurrent__18wxListHeaderWindowFv
|
DrawCurrent__18wxListHeaderWindowFv
|
||||||
;wxListCtrl::DoPopupMenu(wxMenu*,int,int)
|
|
||||||
DoPopupMenu__10wxListCtrlFP6wxMenuiT2
|
|
||||||
;wxListLineDataArray::DoEmpty()
|
|
||||||
DoEmpty__19wxListLineDataArrayFv
|
|
||||||
;wxListCtrl::DeleteAllItems()
|
|
||||||
DeleteAllItems__10wxListCtrlFv
|
|
||||||
;wxListCtrl::ClearAll()
|
|
||||||
ClearAll__10wxListCtrlFv
|
|
||||||
;wxListItemData::wxListItemData(wxListMainWindow*)
|
;wxListItemData::wxListItemData(wxListMainWindow*)
|
||||||
__ct__14wxListItemDataFP16wxListMainWindow
|
__ct__14wxListItemDataFP16wxListMainWindow
|
||||||
wxEVT_COMMAND_LIST_COL_END_DRAG
|
wxEVT_COMMAND_LIST_COL_END_DRAG
|
||||||
@@ -10383,6 +10385,8 @@ EXPORTS
|
|||||||
sm_classwxGenericTreeCtrl__17wxGenericTreeCtrl
|
sm_classwxGenericTreeCtrl__17wxGenericTreeCtrl
|
||||||
;wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem*,wxGenericTreeItem*,unsigned long)
|
;wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem*,wxGenericTreeItem*,unsigned long)
|
||||||
TagNextChildren__17wxGenericTreeCtrlFP17wxGenericTreeItemT1Ul
|
TagNextChildren__17wxGenericTreeCtrlFP17wxGenericTreeItemT1Ul
|
||||||
|
;wxGenericTreeCtrl::SetStateImageList(wxGenericImageList*)
|
||||||
|
SetStateImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
;wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId&,unsigned long)
|
;wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId&,unsigned long)
|
||||||
SetItemHasChildren__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
SetItemHasChildren__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
||||||
;wxGenericTreeCtrl::ScrollTo(const wxTreeItemId&)
|
;wxGenericTreeCtrl::ScrollTo(const wxTreeItemId&)
|
||||||
@@ -10397,8 +10401,6 @@ EXPORTS
|
|||||||
GetBoundingRect__17wxGenericTreeCtrlCFRC12wxTreeItemIdR6wxRectUl
|
GetBoundingRect__17wxGenericTreeCtrlCFRC12wxTreeItemIdR6wxRectUl
|
||||||
;wxGenericTreeCtrl::DrawLine(const wxTreeItemId&,unsigned long)
|
;wxGenericTreeCtrl::DrawLine(const wxTreeItemId&,unsigned long)
|
||||||
DrawLine__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
DrawLine__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
||||||
;wxGenericTreeCtrl::AssignImageList(wxImageList*)
|
|
||||||
AssignImageList__17wxGenericTreeCtrlFP11wxImageList
|
|
||||||
;wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem*) const
|
;wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem*) const
|
||||||
GetLineHeight__17wxGenericTreeCtrlCFP17wxGenericTreeItem
|
GetLineHeight__17wxGenericTreeCtrlCFP17wxGenericTreeItem
|
||||||
;wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem*)
|
;wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem*)
|
||||||
@@ -10432,6 +10434,8 @@ EXPORTS
|
|||||||
__vft17wxGenericTreeCtrl8wxObject
|
__vft17wxGenericTreeCtrl8wxObject
|
||||||
;wxGenericTreeCtrl::SetItemBold(const wxTreeItemId&,unsigned long)
|
;wxGenericTreeCtrl::SetItemBold(const wxTreeItemId&,unsigned long)
|
||||||
SetItemBold__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
SetItemBold__17wxGenericTreeCtrlFRC12wxTreeItemIdUl
|
||||||
|
;wxGenericTreeCtrl::SetButtonsImageList(wxGenericImageList*)
|
||||||
|
SetButtonsImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
;wxGenericTreeCtrl::OnKillFocus(wxFocusEvent&)
|
;wxGenericTreeCtrl::OnKillFocus(wxFocusEvent&)
|
||||||
OnKillFocus__17wxGenericTreeCtrlFR12wxFocusEvent
|
OnKillFocus__17wxGenericTreeCtrlFR12wxFocusEvent
|
||||||
;wxGenericTreeCtrl::IsExpanded(const wxTreeItemId&) const
|
;wxGenericTreeCtrl::IsExpanded(const wxTreeItemId&) const
|
||||||
@@ -10474,10 +10478,10 @@ EXPORTS
|
|||||||
sm_eventTableEntries__17wxGenericTreeCtrl
|
sm_eventTableEntries__17wxGenericTreeCtrl
|
||||||
;wxGenericTreeCtrl::SetItemFont(const wxTreeItemId&,const wxFont&)
|
;wxGenericTreeCtrl::SetItemFont(const wxTreeItemId&,const wxFont&)
|
||||||
SetItemFont__17wxGenericTreeCtrlFRC12wxTreeItemIdRC6wxFont
|
SetItemFont__17wxGenericTreeCtrlFRC12wxTreeItemIdRC6wxFont
|
||||||
|
;wxGenericTreeCtrl::SetImageList(wxGenericImageList*)
|
||||||
|
SetImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
;wxGenericTreeCtrl::SetFont(const wxFont&)
|
;wxGenericTreeCtrl::SetFont(const wxFont&)
|
||||||
SetFont__17wxGenericTreeCtrlFRC6wxFont
|
SetFont__17wxGenericTreeCtrlFRC6wxFont
|
||||||
;wxGenericTreeCtrl::SetButtonsImageList(wxImageList*)
|
|
||||||
SetButtonsImageList__17wxGenericTreeCtrlFP11wxImageList
|
|
||||||
;wxGenericTreeCtrl::OnPaint(wxPaintEvent&)
|
;wxGenericTreeCtrl::OnPaint(wxPaintEvent&)
|
||||||
OnPaint__17wxGenericTreeCtrlFR12wxPaintEvent
|
OnPaint__17wxGenericTreeCtrlFR12wxPaintEvent
|
||||||
;wxTreeTextCtrl::OnKeyUp(wxKeyEvent&)
|
;wxTreeTextCtrl::OnKeyUp(wxKeyEvent&)
|
||||||
@@ -10502,8 +10506,6 @@ EXPORTS
|
|||||||
DrawBorder__17wxGenericTreeCtrlFRC12wxTreeItemId
|
DrawBorder__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeCtrl::Delete(const wxTreeItemId&)
|
;wxGenericTreeCtrl::Delete(const wxTreeItemId&)
|
||||||
Delete__17wxGenericTreeCtrlFRC12wxTreeItemId
|
Delete__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeCtrl::AssignButtonsImageList(wxImageList*)
|
|
||||||
AssignButtonsImageList__17wxGenericTreeCtrlFP11wxImageList
|
|
||||||
;wxGenericTreeCtrl::HitTest(const wxPoint&,int&)
|
;wxGenericTreeCtrl::HitTest(const wxPoint&,int&)
|
||||||
HitTest__17wxGenericTreeCtrlFRC7wxPointRi
|
HitTest__17wxGenericTreeCtrlFRC7wxPointRi
|
||||||
;wxTreeTextCtrl::wxTreeTextCtrl(wxGenericTreeCtrl*,wxGenericTreeItem*)
|
;wxTreeTextCtrl::wxTreeTextCtrl(wxGenericTreeCtrl*,wxGenericTreeItem*)
|
||||||
@@ -10537,10 +10539,6 @@ EXPORTS
|
|||||||
Toggle__17wxGenericTreeCtrlFRC12wxTreeItemId
|
Toggle__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeCtrl::SortChildren(const wxTreeItemId&)
|
;wxGenericTreeCtrl::SortChildren(const wxTreeItemId&)
|
||||||
SortChildren__17wxGenericTreeCtrlFRC12wxTreeItemId
|
SortChildren__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeCtrl::SetStateImageList(wxImageList*)
|
|
||||||
SetStateImageList__17wxGenericTreeCtrlFP11wxImageList
|
|
||||||
;wxGenericTreeCtrl::SetImageList(wxImageList*)
|
|
||||||
SetImageList__17wxGenericTreeCtrlFP11wxImageList
|
|
||||||
;wxGenericTreeCtrl::OnMouse(wxMouseEvent&)
|
;wxGenericTreeCtrl::OnMouse(wxMouseEvent&)
|
||||||
OnMouse__17wxGenericTreeCtrlFR12wxMouseEvent
|
OnMouse__17wxGenericTreeCtrlFR12wxMouseEvent
|
||||||
;wxTreeTextCtrl::OnKillFocus(wxFocusEvent&)
|
;wxTreeTextCtrl::OnKillFocus(wxFocusEvent&)
|
||||||
@@ -10557,8 +10555,8 @@ EXPORTS
|
|||||||
Expand__17wxGenericTreeCtrlFRC12wxTreeItemId
|
Expand__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl*)
|
;wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl*)
|
||||||
DeleteChildren__17wxGenericTreeItemFP17wxGenericTreeCtrl
|
DeleteChildren__17wxGenericTreeItemFP17wxGenericTreeCtrl
|
||||||
;wxGenericTreeCtrl::AssignStateImageList(wxImageList*)
|
;wxGenericTreeCtrl::AssignButtonsImageList(wxGenericImageList*)
|
||||||
AssignStateImageList__17wxGenericTreeCtrlFP11wxImageList
|
AssignButtonsImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
;wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem*)
|
;wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem*)
|
||||||
SendDeleteEvent__17wxGenericTreeCtrlFP17wxGenericTreeItem
|
SendDeleteEvent__17wxGenericTreeCtrlFP17wxGenericTreeItem
|
||||||
;wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem*)
|
;wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem*)
|
||||||
@@ -10608,6 +10606,10 @@ EXPORTS
|
|||||||
EnsureVisible__17wxGenericTreeCtrlFRC12wxTreeItemId
|
EnsureVisible__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
;wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId&)
|
;wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId&)
|
||||||
CollapseAndReset__17wxGenericTreeCtrlFRC12wxTreeItemId
|
CollapseAndReset__17wxGenericTreeCtrlFRC12wxTreeItemId
|
||||||
|
;wxGenericTreeCtrl::AssignStateImageList(wxGenericImageList*)
|
||||||
|
AssignStateImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
|
;wxGenericTreeCtrl::AssignImageList(wxGenericImageList*)
|
||||||
|
AssignImageList__17wxGenericTreeCtrlFP18wxGenericImageList
|
||||||
;wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem*,const wxString&,int,int,wxTreeItemData*)
|
;wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem*,const wxString&,int,int,wxTreeItemData*)
|
||||||
__ct__17wxGenericTreeItemFP17wxGenericTreeItemRC8wxStringiT3P14wxTreeItemData
|
__ct__17wxGenericTreeItemFP17wxGenericTreeItemRC8wxStringiT3P14wxTreeItemData
|
||||||
;wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem*,wxGenericTreeItem*)
|
;wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem*,wxGenericTreeItem*)
|
||||||
@@ -13615,12 +13617,10 @@ EXPORTS
|
|||||||
CreateWindowFromHWND__8wxWindowFP8wxWindowUl
|
CreateWindowFromHWND__8wxWindowFP8wxWindowUl
|
||||||
;From object file: ..\os2\notebook.cpp
|
;From object file: ..\os2\notebook.cpp
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
;wxNotebook::SetImageList(wxImageList*)
|
|
||||||
SetImageList__10wxNotebookFP11wxImageList
|
|
||||||
;wxNotebookEvent::sm_classwxNotebookEvent
|
|
||||||
sm_classwxNotebookEvent__15wxNotebookEvent
|
|
||||||
;wxNotebook::OnSelChange(wxNotebookEvent&)
|
;wxNotebook::OnSelChange(wxNotebookEvent&)
|
||||||
OnSelChange__10wxNotebookFR15wxNotebookEvent
|
OnSelChange__10wxNotebookFR15wxNotebookEvent
|
||||||
|
;wxNotebookEvent::sm_classwxNotebookEvent
|
||||||
|
sm_classwxNotebookEvent__15wxNotebookEvent
|
||||||
;wxNotebook::wxNotebook()
|
;wxNotebook::wxNotebook()
|
||||||
__ct__10wxNotebookFv
|
__ct__10wxNotebookFv
|
||||||
;wxNotebook::DeleteAllPages()
|
;wxNotebook::DeleteAllPages()
|
||||||
@@ -13654,10 +13654,12 @@ EXPORTS
|
|||||||
__ct__10wxNotebookFP8wxWindowiRC7wxPointRC6wxSizelRC8wxString
|
__ct__10wxNotebookFP8wxWindowiRC7wxPointRC6wxSizelRC8wxString
|
||||||
;wxNotebook::sm_eventTableEntries
|
;wxNotebook::sm_eventTableEntries
|
||||||
sm_eventTableEntries__10wxNotebook
|
sm_eventTableEntries__10wxNotebook
|
||||||
;wxNotebook::OnSetFocus(wxFocusEvent&)
|
;wxNotebook::SetImageList(wxGenericImageList*)
|
||||||
OnSetFocus__10wxNotebookFR12wxFocusEvent
|
SetImageList__10wxNotebookFP18wxGenericImageList
|
||||||
;wxNotebook::SetConstraintSizes(unsigned long)
|
;wxNotebook::SetConstraintSizes(unsigned long)
|
||||||
SetConstraintSizes__10wxNotebookFUl
|
SetConstraintSizes__10wxNotebookFUl
|
||||||
|
;wxNotebook::OnSetFocus(wxFocusEvent&)
|
||||||
|
OnSetFocus__10wxNotebookFR12wxFocusEvent
|
||||||
;wxNotebook::OnNavigationKey(wxNavigationKeyEvent&)
|
;wxNotebook::OnNavigationKey(wxNavigationKeyEvent&)
|
||||||
OnNavigationKey__10wxNotebookFR20wxNavigationKeyEvent
|
OnNavigationKey__10wxNotebookFR20wxNavigationKeyEvent
|
||||||
;wxNotebook::GetPageText(int) const
|
;wxNotebook::GetPageText(int) const
|
||||||
|
Reference in New Issue
Block a user