statusbr.h
来自「很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.」· C头文件 代码 · 共 50 行
H
50 行
///////////////////////////////////////////////////////////////////////////////// Name: statusbr.h// Purpose: native implementation of wxStatusBar. Optional; can use generic// version instead.// Author: Stefan Csomor// Modified by:// Created: 1998-01-01// RCS-ID: $Id: statusbr.h,v 1.5 2006/09/05 20:46:01 VZ Exp $// Copyright: (c) Stefan Csomor// Licence: wxWindows licence///////////////////////////////////////////////////////////////////////////////#ifndef _WX_STATBAR_H_#define _WX_STATBAR_H_class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric{ DECLARE_DYNAMIC_CLASS(wxStatusBarMac); wxStatusBarMac(); wxStatusBarMac(wxWindow *parent, wxWindowID id, long style = 0, const wxString& name = wxPanelNameStr) { Create(parent, id, style, name); } virtual ~wxStatusBarMac(); bool Create(wxWindow *parent, wxWindowID id, long style , const wxString& name = wxPanelNameStr) ; virtual void DrawFieldText(wxDC& dc, int i); virtual void DrawField(wxDC& dc, int i); virtual void SetStatusText(const wxString& text, int number = 0) ; //////////////////////////////////////////////////////////////////////// // Implementation virtual void MacSuperEnabled( bool enable ) ; void OnPaint(wxPaintEvent& event);protected: DECLARE_EVENT_TABLE()};#endif // _WX_STATBAR_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?