projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
rebake after r56738
[wxWidgets.git]
/
src
/
univ
/
spinbutt.cpp
diff --git
a/src/univ/spinbutt.cpp
b/src/univ/spinbutt.cpp
index 5f9f5902546753c71ac893c264f5d89921df9257..e1d885795b7660168b04fd83f1f860759757cc7c 100644
(file)
--- a/
src/univ/spinbutt.cpp
+++ b/
src/univ/spinbutt.cpp
@@
-17,11
+17,6
@@
// headers
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
- #pragma implementation "spinbutt.h"
- #pragma implementation "univspinbutt.h"
-#endif
-
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#include "wx/wxprec.h"
#ifdef __BORLANDC__
@@
-101,13
+96,13
@@
bool wxSpinButton::Create(wxWindow *parent,
if ( !wxSpinButtonBase::Create(parent, id, pos, size, style,
wxDefaultValidator, name) )
if ( !wxSpinButtonBase::Create(parent, id, pos, size, style,
wxDefaultValidator, name) )
- return
FALSE
;
+ return
false
;
- Set
Best
Size(size);
+ Set
Initial
Size(size);
CreateInputHandler(wxINP_HANDLER_SPINBTN);
CreateInputHandler(wxINP_HANDLER_SPINBTN);
- return
TRUE
;
+ return
true
;
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
@@
-144,14
+139,14
@@
int wxSpinButton::NormalizeValue(int value) const
if ( value > m_max )
{
if ( GetWindowStyleFlag() & wxSP_WRAP )
if ( value > m_max )
{
if ( GetWindowStyleFlag() & wxSP_WRAP )
- value = m_min + (value - m_max
) % (m_max - m_min
);
+ value = m_min + (value - m_max
- 1) % (m_max - m_min + 1
);
else
value = m_max;
}
else if ( value < m_min )
{
if ( GetWindowStyleFlag() & wxSP_WRAP )
else
value = m_max;
}
else if ( value < m_min )
{
if ( GetWindowStyleFlag() & wxSP_WRAP )
- value = m_max - (m_min - value
) % (m_max - m_min
);
+ value = m_max - (m_min - value
- 1) % (m_max - m_min + 1
);
else
value = m_min;
}
else
value = m_min;
}
@@
-167,7
+162,7
@@
bool wxSpinButton::ChangeValue(int inc)
{
// nothing changed - most likely because we are already at min/max
// value
{
// nothing changed - most likely because we are already at min/max
// value
- return
FALSE
;
+ return
false
;
}
wxSpinEvent event(inc > 0 ? wxEVT_SCROLL_LINEUP : wxEVT_SCROLL_LINEDOWN,
}
wxSpinEvent event(inc > 0 ? wxEVT_SCROLL_LINEUP : wxEVT_SCROLL_LINEDOWN,
@@
-178,7
+173,7
@@
bool wxSpinButton::ChangeValue(int inc)
if ( GetEventHandler()->ProcessEvent(event) && !event.IsAllowed() )
{
// programm has vetoed the event
if ( GetEventHandler()->ProcessEvent(event) && !event.IsAllowed() )
{
// programm has vetoed the event
- return
FALSE
;
+ return
false
;
}
m_value = valueNew;
}
m_value = valueNew;
@@
-187,7
+182,7
@@
bool wxSpinButton::ChangeValue(int inc)
event.SetEventType(wxEVT_SCROLL_THUMBTRACK);
(void)GetEventHandler()->ProcessEvent(event);
event.SetEventType(wxEVT_SCROLL_THUMBTRACK);
(void)GetEventHandler()->ProcessEvent(event);
- return
TRUE
;
+ return
true
;
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
@@
-329,14
+324,14
@@
void wxSpinButton::CalcArrowRects(wxRect *rect1, wxRect *rect2) const
}
}
}
}
-wxScrollArrows::Arrow wxSpinButton::HitTest(const wxPoint& pt) const
+wxScrollArrows::Arrow wxSpinButton::HitTest
Arrow
(const wxPoint& pt) const
{
wxRect rectArrow1, rectArrow2;
CalcArrowRects(&rectArrow1, &rectArrow2);
{
wxRect rectArrow1, rectArrow2;
CalcArrowRects(&rectArrow1, &rectArrow2);
- if ( rectArrow1.
Inside
(pt) )
+ if ( rectArrow1.
Contains
(pt) )
return wxScrollArrows::Arrow_First;
return wxScrollArrows::Arrow_First;
- else if ( rectArrow2.
Inside
(pt) )
+ else if ( rectArrow2.
Contains
(pt) )
return wxScrollArrows::Arrow_Second;
else
return wxScrollArrows::Arrow_None;
return wxScrollArrows::Arrow_Second;
else
return wxScrollArrows::Arrow_None;
@@
-357,7
+352,15
@@
bool wxSpinButton::PerformAction(const wxControlAction& action,
else
return wxControl::PerformAction(action, numArg, strArg);
else
return wxControl::PerformAction(action, numArg, strArg);
- return TRUE;
+ return true;
+}
+
+/* static */
+wxInputHandler *wxSpinButton::GetStdInputHandler(wxInputHandler *handlerDef)
+{
+ static wxStdSpinButtonInputHandler s_handler(handlerDef);
+
+ return &s_handler;
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
@@
-370,7
+373,7
@@
wxStdSpinButtonInputHandler(wxInputHandler *inphand)
{
}
{
}
-bool wxStdSpinButtonInputHandler::HandleKey(wx
Control *control
,
+bool wxStdSpinButtonInputHandler::HandleKey(wx
InputConsumer *consumer
,
const wxKeyEvent& event,
bool pressed)
{
const wxKeyEvent& event,
bool pressed)
{
@@
-390,43
+393,43
@@
bool wxStdSpinButtonInputHandler::HandleKey(wxControl *control,
break;
}
break;
}
- if ( !
!action
)
+ if ( !
action.IsEmpty()
)
{
{
- con
trol
->PerformAction(action);
+ con
sumer
->PerformAction(action);
- return
TRUE
;
+ return
true
;
}
}
}
}
- return wxStdInputHandler::HandleKey(con
trol
, event, pressed);
+ return wxStdInputHandler::HandleKey(con
sumer
, event, pressed);
}
}
-bool wxStdSpinButtonInputHandler::HandleMouse(wx
Control *control
,
+bool wxStdSpinButtonInputHandler::HandleMouse(wx
InputConsumer *consumer
,
const wxMouseEvent& event)
{
const wxMouseEvent& event)
{
- wxSpinButton *spinbtn = wxStaticCast(con
trol
, wxSpinButton);
+ wxSpinButton *spinbtn = wxStaticCast(con
sumer->GetInputWindow()
, wxSpinButton);
if ( spinbtn->GetArrows().HandleMouse(event) )
{
// don't refresh, everything is already done
if ( spinbtn->GetArrows().HandleMouse(event) )
{
// don't refresh, everything is already done
- return
FALSE
;
+ return
false
;
}
}
- return wxStdInputHandler::HandleMouse(con
trol
, event);
+ return wxStdInputHandler::HandleMouse(con
sumer
, event);
}
}
-bool wxStdSpinButtonInputHandler::HandleMouseMove(wx
Control *control
,
+bool wxStdSpinButtonInputHandler::HandleMouseMove(wx
InputConsumer *consumer
,
const wxMouseEvent& event)
{
const wxMouseEvent& event)
{
- wxSpinButton *spinbtn = wxStaticCast(con
trol
, wxSpinButton);
+ wxSpinButton *spinbtn = wxStaticCast(con
sumer->GetInputWindow()
, wxSpinButton);
if ( spinbtn->GetArrows().HandleMouseMove(event) )
{
// processed by the arrows
if ( spinbtn->GetArrows().HandleMouseMove(event) )
{
// processed by the arrows
- return
FALSE
;
+ return
false
;
}
}
- return wxStdInputHandler::HandleMouseMove(con
trol
, event);
+ return wxStdInputHandler::HandleMouseMove(con
sumer
, event);
}
}