void wxFbPalette::OnSpinDown( wxSpinEvent& ) { #if wxVERSION_NUMBER < 2900 int page = m_notebook->GetSelection(); if ( m_posVector[page] <= 0 ) return; m_posVector[page]--; wxToolBar *toolbar = m_tv[page]; PObjectPackage pkg = AppData()->GetPackage( page ); wxString widget( pkg->GetObjectInfo( m_posVector[page] )->GetClassName() ); wxBitmap icon = pkg->GetObjectInfo( m_posVector[page] )->GetIconFile(); #ifdef __WXMAC__ wxBitmapButton* button = new wxBitmapButton( toolbar, nextId++, icon ); button->SetToolTip( widget ); toolbar->InsertControl( 0, button ); #else #if wxVERSION_NUMBER < 2900 toolbar->InsertTool( 0, nextId++, icon, wxNullBitmap, false, NULL, widget, widget ); #else toolbar->InsertTool( 0, nextId++, widget, icon ); #endif #endif toolbar->Realize(); #endif }
void wxFbPalette::OnSpinUp(wxSpinEvent& e) { int page = m_notebook->GetSelection(); PObjectPackage pkg = AppData()->GetPackage(page); if ((int)pkg->GetObjectCount() - m_posVector[page] - 1 <= 0) return; m_posVector[page]++; wxToolBar *toolbar = m_tv[page]; toolbar->DeleteToolByPos(0); toolbar->Realize(); }
void wxFbPalette::PopulateToolbar(PObjectPackage pkg, wxToolBar *toolbar) { unsigned int j = 0; while (j < pkg->GetObjectCount()) { wxString widget( pkg->GetObjectInfo(j)->GetClassName() ); wxBitmap icon = pkg->GetObjectInfo(j)->GetIconFile(); toolbar->AddTool(nextId++, widget, icon, widget); toolbar->Realize(); j++; } }
void wxFbPalette::OnSpinDown(wxSpinEvent& e) { int page = m_notebook->GetSelection(); if (m_posVector[page] <= 0) return; m_posVector[page]--; wxToolBar *toolbar = m_tv[page]; PObjectPackage pkg = AppData()->GetPackage(page); wxString widget( pkg->GetObjectInfo( m_posVector[page] )->GetClassName() ); wxBitmap icon = pkg->GetObjectInfo(m_posVector[page])->GetIconFile(); toolbar->InsertTool(0, nextId++, icon, wxNullBitmap, false, NULL, widget, widget); toolbar->Realize(); }
void wxFbPalette::PopulateToolbar( PObjectPackage pkg, wxToolBar *toolbar ) #endif { unsigned int j = 0; while ( j < pkg->GetObjectCount() ) { PObjectInfo info = pkg->GetObjectInfo( j ); if ( info->IsStartOfGroup() ) { toolbar->AddSeparator(); } if ( NULL == info->GetComponent() ) { #if wxVERSION_NUMBER < 2900 LogDebug( _( "Missing Component for Class \"%s\" of Package \"%s\"." ), info->GetClassName().c_str(), pkg->GetPackageName().c_str() ); #else LogDebug(_("Missing Component for Class \"" + info->GetClassName() + "\" of Package \"" + pkg->GetPackageName() + "\".") ); #endif } else { wxString widget( info->GetClassName() ); wxBitmap icon = info->GetIconFile(); #ifdef __WXMAC__ wxBitmapButton* button = new wxBitmapButton( toolbar, nextId++, icon ); button->SetToolTip( widget ); toolbar->AddControl( button ); #else toolbar->AddTool(nextId++, widget, icon, widget); #endif toolbar->Realize(); } j++; } }
void wxFbPalette::Create() { wxBoxSizer *top_sizer = new wxBoxSizer( wxVERTICAL ); #ifdef USE_FLATNOTEBOOK long nbStyle; wxConfigBase* config = wxConfigBase::Get(); config->Read( wxT( "/palette/notebook_style" ), &nbStyle, wxFNB_NO_X_BUTTON | wxFNB_NO_NAV_BUTTONS | DRAG_OPTION | wxFNB_DROPDOWN_TABS_LIST | wxFNB_VC8 | wxFNB_CUSTOM_DLG ); m_notebook = new wxFlatNotebook( this, -1, wxDefaultPosition, wxDefaultSize, FNB_STYLE_OVERRIDES( nbStyle ) ); m_notebook->SetCustomizeOptions( wxFNB_CUSTOM_TAB_LOOK | wxFNB_CUSTOM_ORIENTATION | wxFNB_CUSTOM_LOCAL_DRAG ); #else m_notebook = new wxAuiNotebook( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_NB_TOP | wxAUI_NB_SCROLL_BUTTONS ); m_notebook->SetArtProvider( new AuiTabArt() ); #endif unsigned int pkg_count = AppData()->GetPackageCount(); LogDebug( wxT( "[Palette] Pages %d" ), pkg_count ); #ifdef USE_FLATNOTEBOOK // Populate icon vector for ( unsigned int j = 0; j < pkg_count;j++ ) { PObjectPackage pkg = AppData()->GetPackage( j ); m_icons.Add( pkg->GetPackageIcon() ); } // Add icons to notebook m_notebook->SetImageList( &m_icons ); #else wxSize minsize; #endif for ( unsigned int i = 0; i < pkg_count;i++ ) { PObjectPackage pkg = AppData()->GetPackage( i ); wxString pkg_name = pkg->GetPackageName(); wxPanel *panel = new wxPanel( m_notebook, -1 ); //panel->SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_3DFACE ) ); wxBoxSizer *sizer = new wxBoxSizer( wxHORIZONTAL ); #if wxVERSION_NUMBER >= 2900 wxAuiToolBar *toolbar = new wxAuiToolBar( panel, -1, wxDefaultPosition, wxDefaultSize, wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_OVERFLOW | wxNO_BORDER ); toolbar->SetToolBitmapSize( wxSize( 22, 22 ) ); PopulateToolbar( pkg, toolbar ); m_tv.push_back( toolbar ); sizer->Add( toolbar, 1, wxEXPAND, 0 ); #else wxPanel *tbPanel = new wxPanel( panel, -1 ); //tbPanel->SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_3DFACE ) ); wxBoxSizer *tbSizer = new wxBoxSizer( wxHORIZONTAL ); wxPanel *sbPanel = new wxPanel( panel, -1 ); //sbPanel->SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_3DFACE ) ); wxBoxSizer *sbSizer = new wxBoxSizer( wxHORIZONTAL ); wxToolBar *toolbar = new wxToolBar( tbPanel, -1, wxDefaultPosition, wxDefaultSize, wxTB_NODIVIDER | wxTB_FLAT ); toolbar->SetToolBitmapSize( wxSize( 22, 22 ) ); //toolbar->SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_3DFACE ) ); PopulateToolbar( pkg, toolbar ); m_tv.push_back( toolbar ); tbSizer->Add( toolbar, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL ); tbPanel->SetSizer( tbSizer ); wxSpinButton *sb = new wxSpinButton( sbPanel, -1, wxDefaultPosition, wxDefaultSize, wxSP_HORIZONTAL ); sb->SetRange( 0, ( int )pkg->GetObjectCount() - 1 ); sb->SetValue( 0 ); m_posVector.push_back( 0 ); sbSizer->Add( sb, 0, wxEXPAND );//wxALL | wxALIGN_TOP, 0); sbPanel->SetSizer( sbSizer ); sizer->Add( tbPanel, 1, wxEXPAND, 0 ); sizer->Add( sbPanel, 0, wxEXPAND, 0 ); #endif panel->SetAutoLayout( true ); panel->SetSizer( sizer ); sizer->Fit( panel ); sizer->SetSizeHints( panel ); #ifndef USE_FLATNOTEBOOK wxSize cursize = panel->GetSize(); if( cursize.x > minsize.x ) minsize.x = cursize.x; if( cursize.y > minsize.y ) minsize.y = cursize.y + 30; #endif m_notebook->AddPage( panel, pkg_name, false, i ); #ifndef USE_FLATNOTEBOOK m_notebook->SetPageBitmap( i, pkg->GetPackageIcon() ); #endif } //Title *title = new Title( this, wxT("Component Palette") ); //top_sizer->Add(title,0,wxEXPAND,0); #ifdef USE_FLATNOTEBOOK top_sizer->Add( m_notebook, 1, wxEXPAND, 0 ); SetAutoLayout( true ); SetSizer( top_sizer ); top_sizer->Fit( this ); top_sizer->SetSizeHints( this ); #else top_sizer->Add( m_notebook, 1, wxEXPAND, 0 ); SetSizer( top_sizer ); SetSize( minsize ); SetMinSize( minsize ); Layout(); Fit(); #endif }
void wxFbPalette::Create() { wxBoxSizer *top_sizer = new wxBoxSizer(wxVERTICAL); m_notebook = new ChooseNotebook( this, -1 ); unsigned int pkg_count = AppData()->GetPackageCount(); Debug::Print( wxT("[Palette] Pages %d"),pkg_count); // Populate icon vector for (unsigned int j = 0; j < pkg_count;j++) { PObjectPackage pkg = AppData()->GetPackage(j); m_icons.Add( pkg->GetPackageIcon() ); } // Add icons to notebook m_notebook->SetImageList( &m_icons ); for (unsigned int i = 0; i < pkg_count;i++) { PObjectPackage pkg = AppData()->GetPackage(i); wxString pkg_name = pkg->GetPackageName(); wxPanel *panel = new wxPanel(m_notebook,-1); panel->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE) ); wxBoxSizer *sizer = new wxBoxSizer(wxHORIZONTAL); wxPanel *tbPanel = new wxPanel(panel,-1); tbPanel->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE) ); wxBoxSizer *tbSizer = new wxBoxSizer(wxHORIZONTAL); wxPanel *sbPanel = new wxPanel(panel,-1); sbPanel->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE) ); wxBoxSizer *sbSizer = new wxBoxSizer(wxHORIZONTAL); wxToolBar *toolbar = new wxToolBar(tbPanel, -1, wxDefaultPosition, wxDefaultSize, wxTB_NODIVIDER | wxTB_FLAT); toolbar->SetToolBitmapSize(wxSize(22, 22)); toolbar->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE) ); PopulateToolbar(pkg, toolbar); m_tv.push_back(toolbar); tbSizer->Add(toolbar, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL); tbPanel->SetSizer(tbSizer); wxSpinButton *sb = new wxSpinButton(sbPanel, -1, wxDefaultPosition, wxDefaultSize, wxSP_HORIZONTAL); sb->SetRange(0, (int)pkg->GetObjectCount() - 1); sb->SetValue(0); m_posVector.push_back(0); sbSizer->Add(sb, 0, wxEXPAND);//wxALL | wxALIGN_TOP, 0); sbPanel->SetSizer(sbSizer); sizer->Add(tbPanel,1,wxEXPAND, 0); sizer->Add(sbPanel,0,wxEXPAND, 0); panel->SetAutoLayout(true); panel->SetSizer(sizer); sizer->Fit(panel); sizer->SetSizeHints(panel); m_notebook->AddPage(panel, pkg_name, false, i); } Title *title = new Title( this, wxT("Component Palette") ); top_sizer->Add(title,0,wxEXPAND,0); //top_sizer->Add(new wxFlatNotebookSizer(m_notebook),1,wxEXPAND,0); top_sizer->Add(m_notebook,1,wxEXPAND,0); SetAutoLayout(true); SetSizer(top_sizer); top_sizer->Fit(this); top_sizer->SetSizeHints(this); }