bool wxRichTextFormattingDialog::Create(long flags, wxWindow* parent, const wxString& title, wxWindowID id, const wxPoint& pos, const wxSize& sz, long style) { SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY); #ifdef __WXMAC__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif int resizeBorder = wxRESIZE_BORDER; GetFormattingDialogFactory()->SetSheetStyle(this); wxPropertySheetDialog::Create(parent, id, title, pos, sz, style | (int)wxPlatform::IfNot(wxOS_WINDOWS_CE, resizeBorder) ); GetFormattingDialogFactory()->CreateButtons(this); GetFormattingDialogFactory()->CreatePages(flags, this); LayoutDialog(); if (sm_restoreLastPage && sm_lastPage != -1) { int idx = m_pageIds.Index(sm_lastPage); if (idx != -1) { m_ignoreUpdates = true; GetBookCtrl()->SetSelection(idx); m_ignoreUpdates = false; } } return true; }
Sidebar::Sidebar(wxWindow *parent, wxMenu *suggestionsMenu) : wxPanel(parent, wxID_ANY), m_selectedItem(nullptr) { SetBackgroundColour(SIDEBAR_BACKGROUND); Bind(wxEVT_PAINT, &Sidebar::OnPaint, this); #ifdef __WXOSX__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif auto *topSizer = new wxBoxSizer(wxVERTICAL); topSizer->SetMinSize(wxSize(300, -1)); m_blocksSizer = new wxBoxSizer(wxVERTICAL); topSizer->Add(m_blocksSizer, wxSizerFlags(1).Expand().DoubleBorder(wxTOP|wxBOTTOM)); m_topBlocksSizer = new wxBoxSizer(wxVERTICAL); m_bottomBlocksSizer = new wxBoxSizer(wxVERTICAL); m_blocksSizer->Add(m_topBlocksSizer, wxSizerFlags(1).Expand().ReserveSpaceEvenIfHidden()); m_blocksSizer->Add(m_bottomBlocksSizer, wxSizerFlags().Expand()); AddBlock(new SuggestionsSidebarBlock(this, suggestionsMenu), Top); AddBlock(new OldMsgidSidebarBlock(this), Bottom); AddBlock(new AutoCommentSidebarBlock(this), Bottom); AddBlock(new CommentSidebarBlock(this), Bottom); AddBlock(new AddCommentSidebarBlock(this), Bottom); SetSizerAndFit(topSizer); SetSelectedItem(nullptr, nullptr); }
InfoStaticText(wxWindow *parent) : wxStaticText(parent, wxID_ANY, "100%") { SetForegroundColour(ExplanationLabel::GetTextColor()); #ifdef __WXMSW__ SetFont(GetFont().Smaller()); #else SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif }
ExplanationLabel::ExplanationLabel(wxWindow *parent, const wxString& label) : wxStaticText(parent, wxID_ANY, ""), m_text(label), m_wrapWidth(-1) { m_text.Replace("\n", " "); SetLabel(m_text); #if defined(__WXOSX__) SetWindowVariant(wxWINDOW_VARIANT_SMALL); SetForegroundColour(wxColour("#777777")); #elif defined(__WXGTK__) SetWindowVariant(wxWINDOW_VARIANT_SMALL); #else SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT)); #endif SetInitialSize(wxSize(10,10)); Bind(wxEVT_SIZE, &ExplanationLabel::OnSize, this); }
AttentionBar::AttentionBar(wxWindow *parent) : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL | wxBORDER_NONE) { #ifdef __WXMSW__ wxColour bg("#FFF499"); // match Visual Studio 2012+'s aesthetics #else wxColour bg = wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK); #endif SetBackgroundColour(bg); SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); m_icon = new wxStaticBitmap(this, wxID_ANY, wxNullBitmap); m_label = new wxStaticText(this, wxID_ANY, wxEmptyString); m_buttons = new wxBoxSizer(wxHORIZONTAL); wxButton *btnClose = new wxBitmapButton ( this, wxID_CLOSE, wxArtProvider::GetBitmap("window-close", wxART_MENU), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); btnClose->SetToolTip(_("Hide this notification message")); #ifdef __WXMSW__ btnClose->SetBackgroundColour(bg); #endif #ifdef __WXMAC__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif #if defined(__WXMAC__) || defined(__WXMSW__) Bind(wxEVT_PAINT, &AttentionBar::OnPaint, this); wxFont boldFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); boldFont.SetWeight(wxFONTWEIGHT_BOLD); m_label->SetFont(boldFont); #endif // wxSizer *sizer = new wxBoxSizer(wxHORIZONTAL); sizer->AddSpacer(wxSizerFlags::GetDefaultBorder()); sizer->Add(m_icon, wxSizerFlags().Center().Border(wxRIGHT, SMALL_BORDER)); sizer->Add(m_label, wxSizerFlags(1).Center().Border(wxALL, SMALL_BORDER)); sizer->Add(m_buttons, wxSizerFlags().Center().Border(wxALL, SMALL_BORDER)); sizer->Add(btnClose, wxSizerFlags().Center().Border(wxALL, SMALL_BORDER)); SetSizer(sizer); // the bar should be initially hidden Show(false); }
bool wxStatusBarMac::Create(wxWindow *parent, wxWindowID id, long style , const wxString& name) { if ( !wxStatusBarGeneric::Create( parent, id, style, name ) ) return false; if ( parent->MacGetTopLevelWindow()->GetExtraStyle() & wxFRAME_EX_METAL ) SetBackgroundStyle( wxBG_STYLE_TRANSPARENT ); // normal system font is too tall for fitting into the standard height SetWindowVariant( wxWINDOW_VARIANT_SMALL ); return true; }
bool wxStatusBarMac::Create(wxWindow *parent, wxWindowID id, long style , const wxString& name) { if( !wxStatusBarGeneric::Create( parent , id , style , name ) ) return FALSE ; if ( parent->MacGetTopLevelWindow()->MacGetMetalAppearance() ) MacSetBackgroundBrush( wxNullBrush ) ; // normal system font is too tall for fitting into the standard height SetWindowVariant( wxWINDOW_VARIANT_SMALL ) ; return TRUE ; }
bool wxStatusBarMac::Create(wxWindow *parent, wxWindowID id, long style , const wxString& name) { SetBackgroundStyle( wxBG_STYLE_TRANSPARENT ); if ( !wxStatusBarGeneric::Create( parent, id, style, name ) ) return false; // normal system font is too tall for fitting into the standard height SetWindowVariant( wxWINDOW_VARIANT_SMALL ); InitColours(); return true; }
/***** Constructor Height is determined by button style; width is an optional user parameter *****/ tmwxButtonMini::tmwxButtonMini(wxWindow* parent, const wxString& title, const int width) : wxButton(parent, wxID_ANY, title, wxDefaultPosition, wxSize(width, wxDefaultCoord) #ifdef __LINUX__ , wxBU_EXACTFIT #endif ) { #ifdef __WXMAC__ SetWindowVariant(wxWINDOW_VARIANT_MINI); #else #ifdef __LINUX__ wxFont f = GetFont (); SetFont (*(wxTheFontList -> FindOrCreateFont (3 * f.GetPointSize() / 4, f.GetFamily (), f.GetStyle (), f.GetWeight (), f.GetUnderlined (), f.GetFaceName (), f.GetDefaultEncoding()))); #endif #endif }
LearnMoreLink::LearnMoreLink(wxWindow *parent, const wxString& url, wxString label) { if (label.empty()) { #ifdef __WXMSW__ label = _("Learn more"); #else label = _("Learn More"); #endif } wxHyperlinkCtrl::Create(parent, wxID_ANY, label, url); SetNormalColour("#2F79BE"); SetVisitedColour("#2F79BE"); SetHoverColour("#3D8DD5"); #ifdef __WXOSX__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); SetFont(GetFont().Underlined()); #endif }
bool wxStatusBarMac::Create(wxWindow *parent, wxWindowID id, long style , const wxString& name) { SetBackgroundStyle( wxBG_STYLE_TRANSPARENT ); if ( !wxStatusBarGeneric::Create( parent, id, style, name ) ) return false; // normal system font is too tall for fitting into the standard height SetWindowVariant( wxWINDOW_VARIANT_SMALL ); #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 if ( !wxPlatformInfo::Get().CheckOSVersion(10, 10) ) { // 10.9 Mavericks and older: m_textActive = wxColour(0x2F, 0x2F, 0x2F); m_textInactive = wxColour(0x4D, 0x4D, 0x4D); m_bgActiveFrom = wxColour(0xDA, 0xDA, 0xDA); m_bgActiveTo = wxColour(0xA0, 0xA0, 0xA0); m_borderActive = wxColour(0x6E, 0x6E, 0x6E); m_borderInactive = wxColour(0xA3, 0xA3, 0xA3); SetBackgroundColour(wxColour(0xE1, 0xE1, 0xE1)); // inactive bg } else #endif // MAC_OS_X_VERSION_MIN_REQUIRED < 101000 { // 10.10 Yosemite and newer: m_textActive = wxColour(0x40, 0x40, 0x40); m_textInactive = wxColour(0x4B, 0x4B, 0x4B); m_bgActiveFrom = wxColour(0xE9, 0xE7, 0xEA); m_bgActiveTo = wxColour(0xCD, 0xCB, 0xCE); m_borderActive = wxColour(0xBA, 0xB8, 0xBB); m_borderInactive = wxColour(0xC3, 0xC3, 0xC3); SetBackgroundColour(wxColour(0xF4, 0xF4, 0xF4)); // inactive bg } return true; }
Sidebar::Sidebar(wxWindow *parent, wxMenu *suggestionsMenu) : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL | wxNO_BORDER | DoubleBufferingWindowStyle()), m_catalog(nullptr), m_selectedItem(nullptr) { SetBackgroundColour(SIDEBAR_BACKGROUND); #ifdef __WXMSW__ if (!IsWindowsXP()) SetDoubleBuffered(true); #endif Bind(wxEVT_PAINT, &Sidebar::OnPaint, this); #ifdef __WXOSX__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif auto *topSizer = new wxBoxSizer(wxVERTICAL); topSizer->SetMinSize(wxSize(PX(300), -1)); m_blocksSizer = new wxBoxSizer(wxVERTICAL); topSizer->Add(m_blocksSizer, wxSizerFlags(1).Expand().PXDoubleBorder(wxTOP|wxBOTTOM)); m_topBlocksSizer = new wxBoxSizer(wxVERTICAL); m_bottomBlocksSizer = new wxBoxSizer(wxVERTICAL); m_blocksSizer->Add(m_topBlocksSizer, wxSizerFlags(1).Expand().ReserveSpaceEvenIfHidden()); m_blocksSizer->Add(m_bottomBlocksSizer, wxSizerFlags().Expand()); AddBlock(new SuggestionsSidebarBlock(this, suggestionsMenu), Top); AddBlock(new OldMsgidSidebarBlock(this), Bottom); AddBlock(new ExtractedCommentSidebarBlock(this), Bottom); AddBlock(new CommentSidebarBlock(this), Bottom); AddBlock(new AddCommentSidebarBlock(this), Bottom); SetSizerAndFit(topSizer); SetSelectedItem(nullptr, nullptr); }
bool wxRichTextFormattingDialog::Create(long flags, wxWindow* parent, const wxString& title, wxWindowID id, const wxPoint& pos, const wxSize& sz, long style) { SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY); #ifdef __WXMAC__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif int resizeBorder = wxRESIZE_BORDER; GetFormattingDialogFactory()->SetSheetStyle(this); wxPropertySheetDialog::Create(parent, id, title, pos, sz, style | (int)wxPlatform::IfNot(wxOS_WINDOWS_CE, resizeBorder) ); GetFormattingDialogFactory()->CreateButtons(this); GetFormattingDialogFactory()->CreatePages(flags, this); LayoutDialog(); return true; }
void wxSymbolPickerDialog::CreateControls() { #ifdef __WXMAC__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif ////@begin wxSymbolPickerDialog content construction wxSymbolPickerDialog* itemDialog1 = this; wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); itemDialog1->SetSizer(itemBoxSizer2); wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxVERTICAL); itemBoxSizer2->Add(itemBoxSizer3, 1, wxGROW|wxALL, 5); wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL); itemBoxSizer3->Add(itemBoxSizer4, 0, wxGROW, 5); wxBoxSizer* itemBoxSizer5 = new wxBoxSizer(wxHORIZONTAL); itemBoxSizer4->Add(itemBoxSizer5, 1, wxGROW, 5); wxStaticText* itemStaticText6 = new wxStaticText( itemDialog1, wxID_STATIC, _("&Font:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer5->Add(itemStaticText6, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); wxArrayString m_fontCtrlStrings; m_fontCtrl = new wxComboBox( itemDialog1, ID_SYMBOLPICKERDIALOG_FONT, wxEmptyString, wxDefaultPosition, wxSize(240, -1), m_fontCtrlStrings, wxCB_READONLY ); m_fontCtrl->SetHelpText(_("The font from which to take the symbol.")); if (wxSymbolPickerDialog::ShowToolTips()) m_fontCtrl->SetToolTip(_("The font from which to take the symbol.")); itemBoxSizer5->Add(m_fontCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); itemBoxSizer5->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); #if defined(__UNICODE__) wxStaticText* itemStaticText9 = new wxStaticText( itemDialog1, wxID_STATIC, _("&Subset:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer5->Add(itemStaticText9, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); #endif #if defined(__UNICODE__) wxArrayString m_subsetCtrlStrings; m_subsetCtrl = new wxComboBox( itemDialog1, ID_SYMBOLPICKERDIALOG_SUBSET, wxEmptyString, wxDefaultPosition, wxDefaultSize, m_subsetCtrlStrings, wxCB_READONLY ); m_subsetCtrl->SetHelpText(_("Shows a Unicode subset.")); if (wxSymbolPickerDialog::ShowToolTips()) m_subsetCtrl->SetToolTip(_("Shows a Unicode subset.")); itemBoxSizer5->Add(m_subsetCtrl, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5); #endif m_symbolsCtrl = new wxSymbolListCtrl( itemDialog1, ID_SYMBOLPICKERDIALOG_LISTCTRL, wxDefaultPosition, wxSize(500, 200), 0 ); itemBoxSizer3->Add(m_symbolsCtrl, 1, wxGROW|wxALL, 5); wxBoxSizer* itemBoxSizer12 = new wxBoxSizer(wxHORIZONTAL); itemBoxSizer3->Add(itemBoxSizer12, 0, wxGROW, 5); m_symbolStaticCtrl = new wxStaticText( itemDialog1, wxID_STATIC, _("xxxx"), wxDefaultPosition, wxSize(40, -1), wxALIGN_CENTRE ); itemBoxSizer12->Add(m_symbolStaticCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); itemBoxSizer12->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); wxStaticText* itemStaticText15 = new wxStaticText( itemDialog1, wxID_STATIC, _("&Character code:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer12->Add(itemStaticText15, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); m_characterCodeCtrl = new wxTextCtrl( itemDialog1, ID_SYMBOLPICKERDIALOG_CHARACTERCODE, wxEmptyString, wxDefaultPosition, wxSize(140, -1), wxTE_READONLY|wxTE_CENTRE ); m_characterCodeCtrl->SetHelpText(_("The character code.")); if (wxSymbolPickerDialog::ShowToolTips()) m_characterCodeCtrl->SetToolTip(_("The character code.")); itemBoxSizer12->Add(m_characterCodeCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); itemBoxSizer12->Add(5, 5, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5); #if defined(__UNICODE__) wxStaticText* itemStaticText18 = new wxStaticText( itemDialog1, wxID_STATIC, _("&From:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer12->Add(itemStaticText18, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); #endif #if defined(__UNICODE__) wxArrayString m_fromUnicodeCtrlStrings; m_fromUnicodeCtrlStrings.Add(_("ASCII")); m_fromUnicodeCtrlStrings.Add(_("Unicode")); m_fromUnicodeCtrl = new wxComboBox( itemDialog1, ID_SYMBOLPICKERDIALOG_FROM, _("Unicode"), wxDefaultPosition, wxDefaultSize, m_fromUnicodeCtrlStrings, wxCB_READONLY ); m_fromUnicodeCtrl->SetStringSelection(_("Unicode")); m_fromUnicodeCtrl->SetHelpText(_("The range to show.")); if (wxSymbolPickerDialog::ShowToolTips()) m_fromUnicodeCtrl->SetToolTip(_("The range to show.")); itemBoxSizer12->Add(m_fromUnicodeCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); #endif m_stdButtonSizer = new wxStdDialogButtonSizer; itemBoxSizer3->Add(m_stdButtonSizer, 0, wxGROW|wxTOP|wxBOTTOM, 5); wxButton* itemButton21 = new wxButton( itemDialog1, wxID_OK, _("Insert"), wxDefaultPosition, wxDefaultSize, 0 ); itemButton21->SetDefault(); m_stdButtonSizer->AddButton(itemButton21); wxButton* itemButton22 = new wxButton( itemDialog1, wxID_CANCEL, _("Close"), wxDefaultPosition, wxDefaultSize, 0 ); m_stdButtonSizer->AddButton(itemButton22); wxButton* itemButton23 = new wxButton( itemDialog1, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, 0 ); m_stdButtonSizer->AddButton(itemButton23); m_stdButtonSizer->Realize(); ////@end wxSymbolPickerDialog content construction if (GetHelpId() == -1) { wxWindow* button = FindWindowById(wxID_HELP); if (button) m_stdButtonSizer->Show(button, false); } }
AttentionBar::AttentionBar(wxWindow *parent) : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL | wxBORDER_NONE) { #ifdef __WXOSX__ SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif #ifndef __WXGTK__ m_icon = new wxStaticBitmap(this, wxID_ANY, wxNullBitmap); #endif m_label = new AutoWrappingText(this, ""); m_explanation = new AutoWrappingText(this, ""); m_explanation->SetForegroundColour(GetBackgroundColour().ChangeLightness(40)); m_buttons = new wxBoxSizer(wxHORIZONTAL); m_checkbox = new wxCheckBox(this, wxID_ANY, ""); wxButton *btnClose = new wxBitmapButton ( this, wxID_CLOSE, wxArtProvider::GetBitmap("window-close", wxART_MENU), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); btnClose->SetToolTip(_("Hide this notification message")); #ifdef __WXMSW__ btnClose->SetBackgroundColour(GetBackgroundColour()); #endif #if defined(__WXOSX__) || defined(__WXMSW__) wxFont boldFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); boldFont.SetWeight(wxFONTWEIGHT_BOLD); m_label->SetFont(boldFont); #endif Bind(wxEVT_PAINT, &AttentionBar::OnPaint, this); wxSizer *sizer = new wxBoxSizer(wxHORIZONTAL); sizer->AddSpacer(PXDefaultBorder); #ifndef __WXGTK__ sizer->Add(m_icon, wxSizerFlags().Center().Border(wxALL, SMALL_BORDER)); #endif auto labelSizer = new wxBoxSizer(wxVERTICAL); labelSizer->Add(m_label, wxSizerFlags().Expand()); labelSizer->Add(m_explanation, wxSizerFlags().Expand().Border(wxTOP|wxRIGHT, PX(4))); sizer->Add(labelSizer, wxSizerFlags(1).Center().PXDoubleBorder(wxALL)); sizer->AddSpacer(PX(20)); sizer->Add(m_buttons, wxSizerFlags().Center().Border(wxALL, SMALL_BORDER)); sizer->Add(m_checkbox, wxSizerFlags().Center().Border(wxRIGHT, BUTTONS_SPACE)); sizer->Add(btnClose, wxSizerFlags().Center().Border(wxALL, SMALL_BORDER)); #ifdef __WXMSW__ sizer->AddSpacer(PX(4)); #endif SetSizer(sizer); // the bar should be initially hidden Show(false); }
// // Initialize after parent etc. set // void wxPropertyGridManager::Init2( int style ) { if ( m_iFlags & wxPG_FL_INITIALIZED ) return; m_windowStyle |= (style&0x0000FFFF); wxSize csz = GetClientSize(); m_cursorSizeNS = wxCursor(wxCURSOR_SIZENS); // Prepare the first page // NB: But just prepare - you still need to call Add/InsertPage // to actually add properties on it. wxPropertyGridPage* pd = new wxPropertyGridPage(); pd->m_isDefault = true; pd->m_manager = this; wxPropertyGridPageState* state = pd->GetStatePtr(); state->m_pPropGrid = m_pPropGrid; m_arrPages.push_back( pd ); m_pPropGrid->m_pState = state; wxWindowID baseId = GetId(); wxWindowID useId = baseId; if ( baseId < 0 ) baseId = wxPG_MAN_ALTERNATE_BASE_ID; m_baseId = baseId; #ifdef __WXMAC__ // Smaller controls on Mac SetWindowVariant(wxWINDOW_VARIANT_SMALL); #endif // Create propertygrid. m_pPropGrid->Create(this,baseId,wxPoint(0,0),csz, (m_windowStyle&wxPG_MAN_PASS_FLAGS_MASK) |wxPG_MAN_PROPGRID_FORCED_FLAGS); m_pPropGrid->m_eventObject = this; m_pPropGrid->SetId(useId); m_pPropGrid->m_iFlags |= wxPG_FL_IN_MANAGER; m_pState = m_pPropGrid->m_pState; m_pPropGrid->SetExtraStyle(wxPG_EX_INIT_NOCAT); m_nextTbInd = baseId+ID_ADVTBITEMSBASE_OFFSET + 2; // Connect to property grid onselect event. // NB: Even if wxID_ANY is used, this doesn't connect properly in wxPython // (see wxPropertyGridManager::ProcessEvent). Connect(m_pPropGrid->GetId()/*wxID_ANY*/, wxEVT_PG_SELECTED, wxPropertyGridEventHandler(wxPropertyGridManager::OnPropertyGridSelect) ); // Connect to toolbar button events. Connect(baseId+ID_ADVTBITEMSBASE_OFFSET,baseId+ID_ADVTBITEMSBASE_OFFSET+50, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(wxPropertyGridManager::OnToolbarClick) ); // Optional initial controls. m_width = -12345; m_iFlags |= wxPG_FL_INITIALIZED; }