projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Documenting WX_MONOLITHIC build option.
[wxWidgets.git]
/
samples
/
widgets
/
notebook.cpp
diff --git
a/samples/widgets/notebook.cpp
b/samples/widgets/notebook.cpp
index 6e8c9b77099f5d70f71339d854326325e367f91e..44279c70d1fe1db8c8d7cf4bf05d0b43bcdbf953 100644
(file)
--- a/
samples/widgets/notebook.cpp
+++ b/
samples/widgets/notebook.cpp
@@
-24,6
+24,8
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
+#if wxUSE_NOTEBOOK
+
// for all others, include the necessary headers
#ifndef WX_PRECOMP
#include "wx/app.h"
// for all others, include the necessary headers
#ifndef WX_PRECOMP
#include "wx/app.h"
@@
-44,7
+46,6
@@
#include "wx/artprov.h"
#include "widgets.h"
#include "wx/artprov.h"
#include "widgets.h"
-#if 1
#include "icons/notebook.xpm"
// ----------------------------------------------------------------------------
#include "icons/notebook.xpm"
// ----------------------------------------------------------------------------
@@
-78,11
+79,6
@@
enum Orient
Orient_Max
};
Orient_Max
};
-// old versions of wxWidgets don't define this style
-#ifndef wxNB_TOP
- #define wxNB_TOP (0)
-#endif
-
// ----------------------------------------------------------------------------
// NotebookWidgetsPage
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// NotebookWidgetsPage
// ----------------------------------------------------------------------------
@@
-90,7
+86,7
@@
enum Orient
class NotebookWidgetsPage : public WidgetsPage
{
public:
class NotebookWidgetsPage : public WidgetsPage
{
public:
- NotebookWidgetsPage(wx
Notebook *note
book, wxImageList *imaglist);
+ NotebookWidgetsPage(wx
BookCtrlBase *
book, wxImageList *imaglist);
virtual ~NotebookWidgetsPage();
virtual wxControl *GetWidget() const { return m_notebook; }
virtual ~NotebookWidgetsPage();
virtual wxControl *GetWidget() const { return m_notebook; }
@@
-196,9
+192,9
@@
END_EVENT_TABLE()
IMPLEMENT_WIDGETS_PAGE(NotebookWidgetsPage, _T("Notebook"));
IMPLEMENT_WIDGETS_PAGE(NotebookWidgetsPage, _T("Notebook"));
-NotebookWidgetsPage::NotebookWidgetsPage(wx
Notebook *note
book,
+NotebookWidgetsPage::NotebookWidgetsPage(wx
BookCtrlBase *
book,
wxImageList *imaglist)
wxImageList *imaglist)
- : WidgetsPage(
note
book)
+ : WidgetsPage(book)
{
imaglist->Add(wxBitmap(notebook_xpm));
{
imaglist->Add(wxBitmap(notebook_xpm));
@@
-359,19
+355,19
@@
void NotebookWidgetsPage::CreateNotebook()
// fall through
case Orient_Top:
// fall through
case Orient_Top:
- flags = wx
NB
_TOP;
+ flags = wx
BK
_TOP;
break;
case Orient_Bottom:
break;
case Orient_Bottom:
- flags = wx
NB
_BOTTOM;
+ flags = wx
BK
_BOTTOM;
break;
case Orient_Left:
break;
case Orient_Left:
- flags = wx
NB
_LEFT;
+ flags = wx
BK
_LEFT;
break;
case Orient_Right:
break;
case Orient_Right:
- flags = wx
NB
_RIGHT;
+ flags = wx
BK
_RIGHT;
break;
}
break;
}
@@
-395,7
+391,7
@@
void NotebookWidgetsPage::CreateNotebook()
m_notebook->AddPage(CreateNewPage(),
old_note->GetPageText(n),
false,
m_notebook->AddPage(CreateNewPage(),
old_note->GetPageText(n),
false,
-
m_chkImages->GetValue() ?
+ m_chkImages->GetValue() ?
GetIconIndex() : -1);
}
GetIconIndex() : -1);
}
@@
-510,7
+506,7
@@
void NotebookWidgetsPage::OnUpdateUIRemoveButton(wxUpdateUIEvent& event)
void NotebookWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event)
{
event.Enable( !m_chkImages->GetValue() ||
void NotebookWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event)
{
event.Enable( !m_chkImages->GetValue() ||
- m_radioOrient->GetSelection() != wx
NB
_TOP );
+ m_radioOrient->GetSelection() != wx
BK
_TOP );
}
void NotebookWidgetsPage::OnUpdateUINumPagesText(wxUpdateUIEvent& event)
}
void NotebookWidgetsPage::OnUpdateUINumPagesText(wxUpdateUIEvent& event)
@@
-548,4
+544,4
@@
void NotebookWidgetsPage::OnPageChanged(wxNotebookEvent& event)
event.Skip();
}
event.Skip();
}
-#endif
+#endif
// wxUSE_NOTEBOOK