projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
compile bug fix
[wxWidgets.git]
/
src
/
motif
/
spinbutt.cpp
diff --git
a/src/motif/spinbutt.cpp
b/src/motif/spinbutt.cpp
index 6c7c4d442483d7d54cd2f3b2e20d3857d2dc6f66..1e7533ef50ea6673067e55f89d6d9c0d539c3c21 100644
(file)
--- a/
src/motif/spinbutt.cpp
+++ b/
src/motif/spinbutt.cpp
@@
-6,7
+6,7
@@
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence: wxWindows licence
+// Licence:
wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
@@
-15,27
+15,19
@@
#include "wx/spinbutt.h"
#include "wx/spinbutt.h"
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
-#endif
-
-wxSpinButton::wxSpinButton()
-{
- m_min = 0;
- m_max = 100;
-}
+IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent)
-bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint&
pos, const wxSize& size
,
+bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint&
WXUNUSED(pos), const wxSize& WXUNUSED(size)
,
long style, const wxString& name)
{
SetName(name);
m_windowStyle = style;
long style, const wxString& name)
{
SetName(name);
m_windowStyle = style;
-
SetParent(parent
);
+
if (parent) parent->AddChild(this
);
- m_min = 0;
- m_max = 100;
+ InitBase();
m_windowId = (id == -1) ? NewControlId() : id;
m_windowId = (id == -1) ? NewControlId() : id;
@@
-52,23
+44,22
@@
wxSpinButton::~wxSpinButton()
int wxSpinButton::GetValue() const
{
int wxSpinButton::GetValue() const
{
-
// TODO
+ // TODO
return 0;
}
return 0;
}
-void wxSpinButton::SetValue(int
val
)
+void wxSpinButton::SetValue(int
WXUNUSED(val)
)
{
{
-
// TODO
+ // TODO
}
void wxSpinButton::SetRange(int minVal, int maxVal)
{
}
void wxSpinButton::SetRange(int minVal, int maxVal)
{
- m_min = minVal;
- m_max = maxVal;
- // TODO
+ // TODO
+ wxSpinButtonBase::SetRange(minVal, maxVal);
}
}
-void wxSpinButton::ChangeFont(bool
keepOriginalSize
)
+void wxSpinButton::ChangeFont(bool
WXUNUSED(keepOriginalSize)
)
{
// TODO
}
{
// TODO
}
@@
-82,12
+73,3
@@
void wxSpinButton::ChangeForegroundColour()
{
// TODO
}
{
// TODO
}
-
-// Spin event
-IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent)
-
-wxSpinEvent::wxSpinEvent(wxEventType commandType, int id):
- wxScrollEvent(commandType, id)
-{
-}
-