2000-07-15 19:51:35 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
1999-10-10 23:28:07 +00:00
|
|
|
// Name: msw/spinctrl.h
|
|
|
|
// Purpose: wxSpinCtrl class declaration for Win32
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 22.07.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vadim Zeitlin
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSW_SPINCTRL_H_
|
|
|
|
#define _WX_MSW_SPINCTRL_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "spinctrl.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/spinbutt.h" // the base class
|
|
|
|
|
2000-12-21 02:12:22 +00:00
|
|
|
#include "wx/dynarray.h"
|
2002-02-07 12:24:57 +00:00
|
|
|
|
2000-12-21 02:12:22 +00:00
|
|
|
class WXDLLEXPORT wxSpinCtrl;
|
|
|
|
WX_DEFINE_EXPORTED_ARRAY(wxSpinCtrl *, wxArraySpins);
|
|
|
|
|
1999-10-10 23:28:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Under Win32, wxSpinCtrl is a wxSpinButton with a buddy (as MSDN docs call
|
|
|
|
// it) text window whose contents is automatically updated when the spin
|
|
|
|
// control is clicked.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxSpinCtrl : public wxSpinButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSpinCtrl() { }
|
|
|
|
|
|
|
|
wxSpinCtrl(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
1999-10-28 01:17:35 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
1999-10-10 23:28:07 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_ARROW_KEYS,
|
|
|
|
int min = 0, int max = 100, int initial = 0,
|
|
|
|
const wxString& name = _T("wxSpinCtrl"))
|
|
|
|
{
|
1999-10-28 01:17:35 +00:00
|
|
|
Create(parent, id, value, pos, size, style, min, max, initial, name);
|
1999-10-10 23:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
1999-10-28 01:17:35 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
1999-10-10 23:28:07 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_ARROW_KEYS,
|
|
|
|
int min = 0, int max = 100, int initial = 0,
|
|
|
|
const wxString& name = _T("wxSpinCtrl"));
|
|
|
|
|
1999-10-28 01:17:35 +00:00
|
|
|
// a wxTextCtrl-like method (but we can't have GetValue returning wxString
|
|
|
|
// because the base class already has one returning int!)
|
|
|
|
void SetValue(const wxString& text);
|
|
|
|
|
1999-12-29 23:34:18 +00:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual ~wxSpinCtrl();
|
|
|
|
|
1999-10-28 01:17:35 +00:00
|
|
|
virtual void SetValue(int val) { wxSpinButton::SetValue(val); }
|
2000-01-08 16:10:31 +00:00
|
|
|
virtual int GetValue() const;
|
1999-10-28 00:38:59 +00:00
|
|
|
virtual bool SetFont(const wxFont &font);
|
2000-01-08 16:10:31 +00:00
|
|
|
virtual void SetFocus();
|
1999-10-28 00:38:59 +00:00
|
|
|
|
1999-12-29 23:34:18 +00:00
|
|
|
virtual bool Enable(bool enable = TRUE);
|
|
|
|
virtual bool Show(bool show = TRUE);
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// wxSpinButton doesn't accept focus, but we do
|
|
|
|
virtual bool AcceptsFocus() const { return wxWindow::AcceptsFocus(); }
|
|
|
|
|
2000-12-21 02:12:22 +00:00
|
|
|
// for internal use only
|
|
|
|
|
|
|
|
// get the subclassed window proc of the buddy text
|
|
|
|
WXFARPROC GetBuddyWndProc() const { return m_wndProcBuddy; }
|
|
|
|
|
|
|
|
// return the spinctrl object whose buddy is the given window or NULL
|
|
|
|
static wxSpinCtrl *GetSpinForTextCtrl(WXHWND hwndBuddy);
|
|
|
|
|
|
|
|
// process a WM_COMMAND generated by the buddy text control
|
|
|
|
bool ProcessTextCommand(WXWORD cmd, WXWORD id);
|
2000-01-23 23:23:46 +00:00
|
|
|
|
1999-10-10 23:28:07 +00:00
|
|
|
protected:
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual void DoGetPosition(int *x, int *y) const;
|
1999-10-28 00:38:59 +00:00
|
|
|
virtual void DoMoveWindow(int x, int y, int width, int height);
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual void DoGetSize(int *width, int *height) const;
|
1999-10-10 23:28:07 +00:00
|
|
|
|
1999-12-22 23:00:10 +00:00
|
|
|
// the handler for wxSpinButton events
|
|
|
|
void OnSpinChange(wxSpinEvent& event);
|
|
|
|
|
2001-01-09 15:50:01 +00:00
|
|
|
// Handle processing of special keys
|
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// the data for the "buddy" text ctrl
|
|
|
|
WXHWND m_hwndBuddy;
|
2000-12-21 02:12:22 +00:00
|
|
|
WXFARPROC m_wndProcBuddy;
|
|
|
|
|
|
|
|
// all existing wxSpinCtrls - this allows to find the one corresponding to
|
|
|
|
// the given buddy window in GetSpinForTextCtrl()
|
|
|
|
static wxArraySpins ms_allSpins;
|
1999-10-10 23:28:07 +00:00
|
|
|
|
1999-12-22 23:00:10 +00:00
|
|
|
private:
|
1999-10-10 23:28:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
|
1999-12-22 23:00:10 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1999-10-10 23:28:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MSW_SPINCTRL_H_
|
|
|
|
|
|
|
|
|