Removed cmndlgs usage of wxSizer and constraints
  Changed occurences of wxConv_xxx to wxConvXxxx and
    changed some wxConvLibc to wxConvCurrent
  Added Unicode tests to typetests (not finished)
  Compile fix for wxString in Unicode mode - we have
   to use the "experimental" printf then, I guess.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        spinbutt.h
 | 
						|
// Purpose:     wxSpinButton class
 | 
						|
// Author:      Robert Roebling
 | 
						|
// Modified by:
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) Robert Roebling
 | 
						|
// Licence:   	wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef __GTKSPINPUTTH__
 | 
						|
#define __GTKSPINBUTTH__
 | 
						|
 | 
						|
#ifdef __GNUG__
 | 
						|
#pragma interface
 | 
						|
#endif
 | 
						|
 | 
						|
#include "wx/defs.h"
 | 
						|
 | 
						|
#ifdef wxUSE_SPINBTN
 | 
						|
 | 
						|
#include "wx/object.h"
 | 
						|
#include "wx/control.h"
 | 
						|
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
// classes
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
class wxSpinButton;
 | 
						|
class wxSpinEvent;
 | 
						|
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
// wxSpinButton
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
class wxSpinButton : public wxControl
 | 
						|
{
 | 
						|
  DECLARE_DYNAMIC_CLASS(wxSpinButton)
 | 
						|
 
 | 
						|
public:
 | 
						|
  wxSpinButton();
 | 
						|
  inline wxSpinButton( wxWindow *parent, wxWindowID id = -1, 
 | 
						|
                      const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
 | 
						|
                      long style = wxSP_VERTICAL, const wxString& name = "wxSpinButton")
 | 
						|
  {
 | 
						|
    Create(parent, id, pos, size, style, name);
 | 
						|
  }
 | 
						|
  ~wxSpinButton();
 | 
						|
  bool Create( wxWindow *parent, wxWindowID id = -1, 
 | 
						|
               const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
 | 
						|
               long style = wxSP_VERTICAL, const wxString& name = "wxSpinButton" );
 | 
						|
 | 
						|
  int GetValue() const;
 | 
						|
  void SetValue( int value );
 | 
						|
  void SetRange( int minVal, int maxVal );
 | 
						|
  int GetMin() const;
 | 
						|
  int GetMax() const;
 | 
						|
 | 
						|
// implementation
 | 
						|
 | 
						|
  void OnSize( wxSizeEvent &event );  
 | 
						|
  
 | 
						|
  bool IsOwnGtkWindow( GdkWindow *window );
 | 
						|
  void ApplyWidgetStyle();
 | 
						|
    
 | 
						|
  GtkAdjustment  *m_adjust;
 | 
						|
  float           m_oldPos;
 | 
						|
  
 | 
						|
  DECLARE_EVENT_TABLE()
 | 
						|
};
 | 
						|
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
// wxSpinEvent
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
class wxSpinEvent : public wxScrollEvent
 | 
						|
{
 | 
						|
  DECLARE_DYNAMIC_CLASS(wxSpinEvent)
 | 
						|
 | 
						|
public:
 | 
						|
  wxSpinEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
 | 
						|
};
 | 
						|
 | 
						|
typedef void (wxEvtHandler::*wxSpinEventFunction)(wxSpinEvent&);
 | 
						|
 | 
						|
// Spin events
 | 
						|
 | 
						|
#define EVT_SPIN_UP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func }
 | 
						|
#define EVT_SPIN_DOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func }
 | 
						|
 | 
						|
#define EVT_SPIN(id, func) \
 | 
						|
  { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
 | 
						|
  { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 | 
						|
    // __GTKSPINBUTTH__
 |