⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spinbutt.h

📁 Wxpython Implemented on Windows CE, Source code
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////
// Name:        wx/cocoa/spinbutt.h
// Purpose:     wxSpinButton class
// Author:      David Elliott
// Modified by:
// Created:     2003/07/14
// RCS-ID:      $Id: spinbutt.h,v 1.5 2005/04/19 03:41:43 RN Exp $
// Copyright:   (c) 2003 David Elliott
// Licence:   	wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef __WX_COCOA_SPINBUTT_H__
#define __WX_COCOA_SPINBUTT_H__

// #include "wx/cocoa/NSStepper.h"

// ========================================================================
// wxSpinButton
// ========================================================================
class WXDLLEXPORT wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSStepper
{
    DECLARE_DYNAMIC_CLASS(wxSpinButton)
    DECLARE_EVENT_TABLE()
//    WX_DECLARE_COCOA_OWNER(NSStepper,NSControl,NSView)
// ------------------------------------------------------------------------
// initialization
// ------------------------------------------------------------------------
public:
    wxSpinButton() { }
    wxSpinButton(wxWindow *parent, wxWindowID winid = -1,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize,
            long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
            const wxString& name = wxSPIN_BUTTON_NAME)
    {
        Create(parent, winid, pos, size, style, name);
    }

    bool Create(wxWindow *parent, wxWindowID winid = -1,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize,
            long style = wxSP_HORIZONTAL,
            const wxString& name = wxSPIN_BUTTON_NAME);
    virtual ~wxSpinButton();

// ------------------------------------------------------------------------
// Cocoa callbacks
// ------------------------------------------------------------------------
protected:
    virtual void CocoaTarget_action();
// ------------------------------------------------------------------------
// Implementation
// ------------------------------------------------------------------------
public:
    // Pure Virtuals
    virtual int GetValue() const;
    virtual void SetValue(int value);

    // retrieve/change the range
    virtual void SetRange(int minValue, int maxValue);
};

#endif // __WX_COCOA_SPINBUTT_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -