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

📄 statusbr.h

📁 wxWidgets 是一个跨平台的 GUI 框架。它给开发人员提供了统一的接口
💻 H
字号:
///////////////////////////////////////////////////////////////////////////////// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -