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

📄 popupwin.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
///////////////////////////////////////////////////////////////////////////////// Name:        wx/motif/popupwin.h// Purpose:     wxPopupWindow class for wxMotif// Author:      Mattia Barbon// Modified by:// Created:     28.08.03// RCS-ID:      $Id: popupwin.h,v 1.5 2005/09/23 12:49:59 MR Exp $// Copyright:   (c) 2003 Mattia Barbon// Licence:     wxWindows licence///////////////////////////////////////////////////////////////////////////////#ifndef _WX_MOTIF_POPUPWIN_H_#define _WX_MOTIF_POPUPWIN_H_// ----------------------------------------------------------------------------// wxPopupWindow// ----------------------------------------------------------------------------class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase{public:    wxPopupWindow() { Init(); }    wxPopupWindow( wxWindow *parent, int flags = wxBORDER_NONE )        { Init(); (void)Create( parent, flags ); }    bool Create( wxWindow *parent, int flags = wxBORDER_NONE );    virtual bool Show( bool show = true );private:    void Init() { m_isShown = false; }    DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)};#endif // _WX_MOTIF_POPUPWIN_H_

⌨️ 快捷键说明

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