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

📄 statlmac.cpp

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 CPP
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        src/mac/carbon/statlmac.cpp// Purpose:     a generic wxStaticLine class// Author:      Vadim Zeitlin// Created:     28.06.99// Version:     $Id: statlmac.cpp,v 1.21 2006/05/31 18:27:46 ABX Exp $// Copyright:   (c) 1998 Vadim Zeitlin// Licence:     wxWindows licence/////////////////////////////////////////////////////////////////////////////// ============================================================================// declarations// ============================================================================// ----------------------------------------------------------------------------// headers// ----------------------------------------------------------------------------// For compilers that support precompilation, includes "wx.h".#include "wx/wxprec.h"#ifdef __BORLANDC__    #pragma hdrstop#endif#if wxUSE_STATLINE#include "wx/statline.h"#ifndef WX_PRECOMP    #include "wx/statbox.h"#endif#include "wx/mac/uma.h"// ============================================================================// implementation// ============================================================================IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)// ----------------------------------------------------------------------------// wxStaticLine// ----------------------------------------------------------------------------bool wxStaticLine::Create( wxWindow *parent,                           wxWindowID id,                           const wxPoint &pos,                           const wxSize &size,                           long style,                           const wxString &name){    m_macIsUserPane = false ;    if ( !wxStaticLineBase::Create(parent, id, pos, size,                                   style, wxDefaultValidator, name) )        return false;    Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;    m_peer = new wxMacControl(this) ;    verify_noerr(CreateSeparatorControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, m_peer->GetControlRefAddr() ) ) ;    MacPostControlCreate(pos,size) ;    return true;}#endif //wxUSE_STATLINE

⌨️ 快捷键说明

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