projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
added missing WXDLLEXPORT
[wxWidgets.git]
/
src
/
mac
/
scrolbar.cpp
diff --git
a/src/mac/scrolbar.cpp
b/src/mac/scrolbar.cpp
index a022802c0597caa1579428975ccb4024847d409a..49dc3aeca24b319f86c4d566884ee7f4fea840f3 100644
(file)
--- a/
src/mac/scrolbar.cpp
+++ b/
src/mac/scrolbar.cpp
@@
-13,6
+13,8
@@
#pragma implementation "scrolbar.h"
#endif
#pragma implementation "scrolbar.h"
#endif
+#include "wx/defs.h"
+
#include "wx/scrolbar.h"
#include "wx/mac/uma.h"
#include "wx/scrolbar.h"
#include "wx/mac/uma.h"
@@
-41,12
+43,12
@@
bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
MacPreControlCreate( parent , id , "" , pos , size ,style, validator , name , &bounds , title ) ;
MacPreControlCreate( parent , id , "" , pos , size ,style, validator , name , &bounds , title ) ;
- m_macControl =
UMANewControl( parent->GetMacRootWindow(
) , &bounds , title , true , 0 , 0 , 100,
+ m_macControl =
::NewControl( MAC_WXHWND(parent->MacGetRootWindow()
) , &bounds , title , true , 0 , 0 , 100,
kControlScrollBarLiveProc , (long) this ) ;
kControlScrollBarLiveProc , (long) this ) ;
- wxASSERT_MSG( m_macControl != NULL , "No valid mac control" ) ;
+ wxASSERT_MSG(
(ControlHandle)
m_macControl != NULL , "No valid mac control" ) ;
- ::SetControlAction( m_macControl , wxMacLiveScrollbarActionUPP ) ;
+ ::SetControlAction(
(ControlHandle)
m_macControl , wxMacLiveScrollbarActionUPP ) ;
MacPostControlCreate() ;
MacPostControlCreate() ;
@@
-59,35
+61,36
@@
wxScrollBar::~wxScrollBar()
void wxScrollBar::SetThumbPosition(int viewStart)
{
void wxScrollBar::SetThumbPosition(int viewStart)
{
- ::SetControlValue( m_macControl , viewStart ) ;
+ ::SetControlValue(
(ControlHandle)
m_macControl , viewStart ) ;
}
int wxScrollBar::GetThumbPosition() const
{
}
int wxScrollBar::GetThumbPosition() const
{
- return ::GetControlValue( m_macControl ) ;
+ return ::GetControlValue(
(ControlHandle)
m_macControl ) ;
}
void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageSize,
bool refresh)
{
}
void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageSize,
bool refresh)
{
- m_
view
Size = pageSize;
- m_
page
Size = thumbSize;
+ m_
page
Size = pageSize;
+ m_
view
Size = thumbSize;
m_objectSize = range;
m_objectSize = range;
- int range1 = wxMax((m_objectSize - m_
page
Size), 0) ;
+ int range1 = wxMax((m_objectSize - m_
view
Size), 0) ;
- SetControlMaximum( m_macControl , range1 ) ;
- SetControlMinimum( m_macControl , 0 ) ;
- SetControlValue( m_macControl , position ) ;
+ SetControlMaximum(
(ControlHandle)
m_macControl , range1 ) ;
+ SetControlMinimum(
(ControlHandle)
m_macControl , 0 ) ;
+ SetControlValue(
(ControlHandle)
m_macControl , position ) ;
if ( UMAGetAppearanceVersion() >= 0x0110 )
{
if ( SetControlViewSize != (void*) kUnresolvedCFragSymbolAddress )
{
if ( UMAGetAppearanceVersion() >= 0x0110 )
{
if ( SetControlViewSize != (void*) kUnresolvedCFragSymbolAddress )
{
-
SetControlViewSize( m_macControl , m_page
Size ) ;
+
SetControlViewSize( (ControlHandle) m_macControl , m_view
Size ) ;
}
}
}
}
- Refresh() ;
+ if ( refresh )
+ MacRedrawControl() ;
}
}
@@
-97,14
+100,14
@@
void wxScrollBar::Command(wxCommandEvent& event)
ProcessCommand(event);
}
ProcessCommand(event);
}
-void wxScrollBar::MacHandleControlClick(
ControlHandle control , S
Int16 controlpart )
+void wxScrollBar::MacHandleControlClick(
WXWidget control , wx
Int16 controlpart )
{
{
- if ( m_macControl == NULL )
+ if (
(ControlHandle)
m_macControl == NULL )
return ;
return ;
- int position = GetControlValue( m_macControl) ;
- int minPos = GetControlMinimum( m_macControl) ;
- int maxPos = GetControlMaximum( m_macControl) ;
+ int position = GetControlValue(
(ControlHandle)
m_macControl) ;
+ int minPos = GetControlMinimum(
(ControlHandle)
m_macControl) ;
+ int maxPos = GetControlMaximum(
(ControlHandle)
m_macControl) ;
wxEventType scrollEvent = wxEVT_NULL;
int nScrollInc;
wxEventType scrollEvent = wxEVT_NULL;
int nScrollInc;
@@
-112,19
+115,19
@@
void wxScrollBar::MacHandleControlClick( ControlHandle control , SInt16 controlp
switch( controlpart )
{
case kControlUpButtonPart :
switch( controlpart )
{
case kControlUpButtonPart :
- nScrollInc = -
m_pageSize
;
+ nScrollInc = -
1
;
scrollEvent = wxEVT_SCROLL_LINEUP;
break ;
case kControlDownButtonPart :
scrollEvent = wxEVT_SCROLL_LINEUP;
break ;
case kControlDownButtonPart :
- nScrollInc =
m_pageSize
;
+ nScrollInc =
1
;
scrollEvent = wxEVT_SCROLL_LINEDOWN;
break ;
case kControlPageUpPart :
scrollEvent = wxEVT_SCROLL_LINEDOWN;
break ;
case kControlPageUpPart :
- nScrollInc = -m_
view
Size;
+ nScrollInc = -m_
page
Size;
scrollEvent = wxEVT_SCROLL_PAGEUP;
break ;
case kControlPageDownPart :
scrollEvent = wxEVT_SCROLL_PAGEUP;
break ;
case kControlPageDownPart :
- nScrollInc = m_
view
Size;
+ nScrollInc = m_
page
Size;
scrollEvent = wxEVT_SCROLL_PAGEDOWN;
break ;
case kControlIndicatorPart :
scrollEvent = wxEVT_SCROLL_PAGEDOWN;
break ;
case kControlIndicatorPart :