projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Document wxFileName::SetPath().
[wxWidgets.git]
/
src
/
univ
/
notebook.cpp
diff --git
a/src/univ/notebook.cpp
b/src/univ/notebook.cpp
index 7ec0981b86a6793e037006f45099fea248baac56..1376222d9b50f5648fcde3ccb5860a936304a2b9 100644
(file)
--- a/
src/univ/notebook.cpp
+++ b/
src/univ/notebook.cpp
@@
-76,9
+76,6
@@
protected:
static const size_t INVALID_PAGE = (size_t)-1;
static const size_t INVALID_PAGE = (size_t)-1;
-DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)
-DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)
-
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
@@
-114,8
+111,7
@@
END_EVENT_TABLE()
// implementation
// ============================================================================
// implementation
// ============================================================================
-IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
-IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
+IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxBookCtrlBase)
// ----------------------------------------------------------------------------
// wxNotebook creation
// ----------------------------------------------------------------------------
// wxNotebook creation
@@
-153,7
+149,7
@@
bool wxNotebook::Create(wxWindow *parent,
m_sizePad = GetRenderer()->GetTabPadding();
m_sizePad = GetRenderer()->GetTabPadding();
- Set
Best
Size(size);
+ Set
Initial
Size(size);
CreateInputHandler(wxINP_HANDLER_NOTEBOOK);
CreateInputHandler(wxINP_HANDLER_NOTEBOOK);
@@
-166,14
+162,14
@@
bool wxNotebook::Create(wxWindow *parent,
wxString wxNotebook::GetPageText(size_t nPage) const
{
wxString wxNotebook::GetPageText(size_t nPage) const
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), wxEmptyString,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), wxEmptyString,
wx
T("invalid notebook page") );
return m_titles[nPage];
}
bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
{
return m_titles[nPage];
}
bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), false,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), false,
wx
T("invalid notebook page") );
if ( strText != m_titles[nPage] )
{
if ( strText != m_titles[nPage] )
{
@@
-196,17
+192,17
@@
bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
int wxNotebook::GetPageImage(size_t nPage) const
{
int wxNotebook::GetPageImage(size_t nPage) const
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND,
wx
T("invalid notebook page") );
return m_images[nPage];
}
bool wxNotebook::SetPageImage(size_t nPage, int nImage)
{
return m_images[nPage];
}
bool wxNotebook::SetPageImage(size_t nPage, int nImage)
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), false,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), false,
wx
T("invalid notebook page") );
wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), false,
wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), false,
-
_
T("invalid image index in SetPageImage()") );
+
wx
T("invalid image index in SetPageImage()") );
if ( nImage != m_images[nPage] )
{
if ( nImage != m_images[nPage] )
{
@@
-235,7
+231,7
@@
wxNotebook::~wxNotebook()
int wxNotebook::DoSetSelection(size_t nPage, int flags)
{
int wxNotebook::DoSetSelection(size_t nPage, int flags)
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND,
wx
T("invalid notebook page") );
if ( (size_t)nPage == m_sel )
{
if ( (size_t)nPage == m_sel )
{
@@
-243,14
+239,9
@@
int wxNotebook::DoSetSelection(size_t nPage, int flags)
return m_sel;
}
return m_sel;
}
- wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId);
- if (flags & SetSelection_SendEvent)
+ if ( flags & SetSelection_SendEvent )
{
{
- // event handling
- event.SetSelection(nPage);
- event.SetOldSelection(m_sel);
- event.SetEventObject(this);
- if ( GetEventHandler()->ProcessEvent(event) && !event.IsAllowed() )
+ if ( !SendPageChangingEvent(nPage) )
{
// program doesn't allow the page change
return m_sel;
{
// program doesn't allow the page change
return m_sel;
@@
-300,11
+291,10
@@
int wxNotebook::DoSetSelection(size_t nPage, int flags)
m_pages[m_sel]->Show();
}
m_pages[m_sel]->Show();
}
- if (
flags & SetSelection_SendEvent
)
+ if (
flags & SetSelection_SendEvent
)
{
// event handling
{
// event handling
- event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
- GetEventHandler()->ProcessEvent(event);
+ SendPageChangedEvent(selOld);
}
return selOld;
}
return selOld;
@@
-322,7
+312,7
@@
bool wxNotebook::InsertPage(size_t nPage,
{
size_t nPages = GetPageCount();
wxCHECK_MSG( nPage == nPages || IS_VALID_PAGE(nPage), false,
{
size_t nPages = GetPageCount();
wxCHECK_MSG( nPage == nPages || IS_VALID_PAGE(nPage), false,
-
_
T("invalid notebook page in InsertPage()") );
+
wx
T("invalid notebook page in InsertPage()") );
// modify the data
m_pages.Insert(pPage, nPage);
// modify the data
m_pages.Insert(pPage, nPage);
@@
-399,7
+389,7
@@
bool wxNotebook::DeleteAllPages()
wxNotebookPage *wxNotebook::DoRemovePage(size_t nPage)
{
wxNotebookPage *wxNotebook::DoRemovePage(size_t nPage)
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), NULL,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), NULL,
wx
T("invalid notebook page") );
wxNotebookPage *page = m_pages[nPage];
m_pages.RemoveAt(nPage);
wxNotebookPage *page = m_pages[nPage];
m_pages.RemoveAt(nPage);
@@
-460,7
+450,7
@@
void wxNotebook::RefreshCurrent()
void wxNotebook::RefreshTab(int page, bool forceSelected)
{
void wxNotebook::RefreshTab(int page, bool forceSelected)
{
- wxCHECK_RET( IS_VALID_PAGE(page),
_
T("invalid notebook page") );
+ wxCHECK_RET( IS_VALID_PAGE(page),
wx
T("invalid notebook page") );
wxRect rect = GetTabRect(page);
if ( forceSelected || ((size_t)page == m_sel) )
wxRect rect = GetTabRect(page);
if ( forceSelected || ((size_t)page == m_sel) )
@@
-627,7
+617,7
@@
int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
switch ( GetTabOrientation() )
{
default:
switch ( GetTabOrientation() )
{
default:
- wxFAIL_MSG(
_
T("unknown tab orientation"));
+ wxFAIL_MSG(
wx
T("unknown tab orientation"));
// fall through
case wxTOP:
// fall through
case wxTOP:
@@
-700,7
+690,7
@@
wxDirection wxNotebook::GetTabOrientation() const
wxRect wxNotebook::GetTabRect(int page) const
{
wxRect rect;
wxRect wxNotebook::GetTabRect(int page) const
{
wxRect rect;
- wxCHECK_MSG( IS_VALID_PAGE(page), rect,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(page), rect,
wx
T("invalid notebook page") );
// calc the size of this tab and of the preceding ones
wxCoord widthThis, widthBefore;
// calc the size of this tab and of the preceding ones
wxCoord widthThis, widthBefore;
@@
-803,7
+793,7
@@
wxRect wxNotebook::GetTabsPart() const
void wxNotebook::GetTabSize(int page, wxCoord *w, wxCoord *h) const
{
void wxNotebook::GetTabSize(int page, wxCoord *w, wxCoord *h) const
{
- wxCHECK_RET( w && h,
_
T("NULL pointer in GetTabSize") );
+ wxCHECK_RET( w && h,
wx
T("NULL pointer in GetTabSize") );
if ( IsVertical() )
{
if ( IsVertical() )
{
@@
-822,7
+812,7
@@
void wxNotebook::GetTabSize(int page, wxCoord *w, wxCoord *h) const
void wxNotebook::SetTabSize(const wxSize& sz)
{
void wxNotebook::SetTabSize(const wxSize& sz)
{
- wxCHECK_RET( FixedSizeTabs(),
_
T("SetTabSize() ignored") );
+ wxCHECK_RET( FixedSizeTabs(),
wx
T("SetTabSize() ignored") );
if ( IsVertical() )
{
if ( IsVertical() )
{
@@
-843,7
+833,7
@@
wxSize wxNotebook::CalcTabSize(int page) const
wxSize size;
wxSize size;
- wxCHECK_MSG( IS_VALID_PAGE(page), size,
_
T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(page), size,
wx
T("invalid notebook page") );
GetTextExtent(m_titles[page], &size.x, &size.y);
GetTextExtent(m_titles[page], &size.x, &size.y);
@@
-1184,7
+1174,7
@@
void wxNotebook::PositionSpinBtn()
switch ( GetTabOrientation() )
{
default:
switch ( GetTabOrientation() )
{
default:
- wxFAIL_MSG(
_
T("unknown tab orientation"));
+ wxFAIL_MSG(
wx
T("unknown tab orientation"));
// fall through
case wxTOP:
// fall through
case wxTOP:
@@
-1217,7
+1207,7
@@
void wxNotebook::PositionSpinBtn()
void wxNotebook::ScrollTo(int page)
{
void wxNotebook::ScrollTo(int page)
{
- wxCHECK_RET( IS_VALID_PAGE(page),
_
T("invalid notebook page") );
+ wxCHECK_RET( IS_VALID_PAGE(page),
wx
T("invalid notebook page") );
// set the first visible tab and offset (easy)
m_firstVisible = (size_t)page;
// set the first visible tab and offset (easy)
m_firstVisible = (size_t)page;
@@
-1235,7
+1225,7
@@
void wxNotebook::ScrollTo(int page)
void wxNotebook::ScrollLastTo(int page)
{
void wxNotebook::ScrollLastTo(int page)
{
- wxCHECK_RET( IS_VALID_PAGE(page),
_
T("invalid notebook page") );
+ wxCHECK_RET( IS_VALID_PAGE(page),
wx
T("invalid notebook page") );
// go backwards until we find the first tab which can be made visible
// without hiding the given one
// go backwards until we find the first tab which can be made visible
// without hiding the given one
@@
-1271,7
+1261,7
@@
void wxNotebook::ScrollLastTo(int page)
ScrollTo(m_firstVisible);
// consitency check: the page we were asked to show should be shown
ScrollTo(m_firstVisible);
// consitency check: the page we were asked to show should be shown
- wxASSERT_MSG( (size_t)page < m_lastVisible,
_
T("bug in ScrollLastTo") );
+ wxASSERT_MSG( (size_t)page < m_lastVisible,
wx
T("bug in ScrollLastTo") );
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------