9 changed files with 285 additions and 43 deletions
-
23d-viewer/3d_viewer/3d_toolbar.cpp
-
1common/CMakeLists.txt
-
185common/widgets/wx_combobox.cpp
-
45eeschema/dialogs/dialog_text_properties.cpp
-
3eeschema/dialogs/dialog_text_properties_base.cpp
-
2eeschema/dialogs/dialog_text_properties_base.fbp
-
3eeschema/dialogs/dialog_text_properties_base.h
-
83include/widgets/wx_combobox.h
-
4pcbnew/widgets/appearance_controls.cpp
@ -0,0 +1,185 @@ |
|||
/*
|
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors. |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify it |
|||
* under the terms of the GNU General Public License as published by the |
|||
* Free Software Foundation, either version 3 of the License, or (at your |
|||
* option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, but |
|||
* WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|||
* General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License along |
|||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
#include <functional>
|
|||
#include <widgets/wx_combobox.h>
|
|||
#include <wx/dc.h>
|
|||
#include <wx/pen.h>
|
|||
#include <wx/settings.h>
|
|||
|
|||
|
|||
#define SEPARATOR wxT( "---" )
|
|||
|
|||
|
|||
WX_COMBOBOX::WX_COMBOBOX( wxWindow* aParent, int aId, const wxString& aValue, const wxPoint& aPos, |
|||
const wxSize& aSize, int n, const wxString choices[], long style ) : |
|||
wxOwnerDrawnComboBox( aParent, aId, aValue, aPos, aSize, n, choices, style ), |
|||
m_lastSelection( 0 ) |
|||
{ |
|||
} |
|||
|
|||
|
|||
WX_COMBOBOX::~WX_COMBOBOX() |
|||
{ |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::DoSetPopupControl( wxComboPopup* aPopup ) |
|||
{ |
|||
using namespace std::placeholders; |
|||
wxOwnerDrawnComboBox::DoSetPopupControl( aPopup ); |
|||
|
|||
// Bind events to intercept selections, so the separator can be made nonselectable.
|
|||
|
|||
GetVListBoxComboPopup()->Bind( wxEVT_MOTION, &WX_COMBOBOX::TryVetoMouse, this ); |
|||
GetVListBoxComboPopup()->Bind( wxEVT_LEFT_DOWN, &WX_COMBOBOX::TryVetoMouse, this ); |
|||
GetVListBoxComboPopup()->Bind( wxEVT_LEFT_UP, &WX_COMBOBOX::TryVetoMouse, this ); |
|||
GetVListBoxComboPopup()->Bind( wxEVT_LEFT_DCLICK, &WX_COMBOBOX::TryVetoMouse, this ); |
|||
GetVListBoxComboPopup()->Bind( wxEVT_LISTBOX, std::bind( &WX_COMBOBOX::TryVetoSelect, |
|||
this, _1, true ) ); |
|||
|
|||
Bind( wxEVT_COMBOBOX, std::bind( &WX_COMBOBOX::TryVetoSelect, this, _1, false ) ); |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::OnDrawItem( wxDC& aDC, wxRect const& aRect, int aItem, int aFlags ) const |
|||
{ |
|||
wxString text = GetMenuText( aItem ); |
|||
|
|||
if( text == SEPARATOR ) |
|||
{ |
|||
wxPen pen( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ), 1 ); |
|||
|
|||
aDC.SetPen( pen ); |
|||
aDC.DrawLine( aRect.x, aRect.y + aRect.height / 2, aRect.x + aRect.width, |
|||
aRect.y + aRect.height / 2 ); |
|||
} |
|||
else |
|||
{ |
|||
wxCoord x, y; |
|||
|
|||
if( aFlags & wxODCB_PAINTING_CONTROL ) |
|||
{ |
|||
x = aRect.x + GetMargins().x; |
|||
y = ( aRect.height - aDC.GetCharHeight() ) / 2 + aRect.y; |
|||
} |
|||
else |
|||
{ |
|||
x = aRect.x + 2; |
|||
y = aRect.y; |
|||
} |
|||
|
|||
aDC.DrawText( text, x, y ); |
|||
} |
|||
} |
|||
|
|||
|
|||
int WX_COMBOBOX::GetCharHeight() const |
|||
{ |
|||
return wxOwnerDrawnComboBox::GetCharHeight() + 2; |
|||
} |
|||
|
|||
|
|||
wxCoord WX_COMBOBOX::OnMeasureItem( size_t aItem ) const |
|||
{ |
|||
if( GetMenuText( aItem ) == SEPARATOR ) |
|||
return 11; |
|||
else |
|||
return wxOwnerDrawnComboBox::OnMeasureItem( aItem ); |
|||
} |
|||
|
|||
|
|||
wxCoord WX_COMBOBOX::OnMeasureItemWidth( size_t aItem ) const |
|||
{ |
|||
if( GetMenuText( aItem ) == SEPARATOR ) |
|||
return GetTextRect().GetWidth() - 2; |
|||
else |
|||
return wxOwnerDrawnComboBox::OnMeasureItemWidth( aItem ); |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::TryVetoMouse( wxMouseEvent& aEvent ) |
|||
{ |
|||
int item = GetVListBoxComboPopup()->VirtualHitTest( aEvent.GetPosition().y ); |
|||
|
|||
if( GetMenuText( item ) != SEPARATOR ) |
|||
aEvent.Skip(); |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::TryVetoSelect( wxCommandEvent& aEvent, bool aInner ) |
|||
{ |
|||
int sel = GetSelectionEither( aInner ); |
|||
|
|||
if( sel >= 0 && sel < (int) GetCount() ) |
|||
{ |
|||
wxString text = GetMenuText( sel ); |
|||
|
|||
if( text == SEPARATOR ) |
|||
{ |
|||
SetSelectionEither( aInner, m_lastSelection ); |
|||
} |
|||
else |
|||
{ |
|||
m_lastSelection = sel; |
|||
aEvent.Skip(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::Append( const wxString& aText, const wxString& aMenuText ) |
|||
{ |
|||
if( !aMenuText.IsEmpty() ) |
|||
m_menuText[ GetCount() ] = aMenuText; |
|||
|
|||
wxOwnerDrawnComboBox::Append( aText ); |
|||
} |
|||
|
|||
|
|||
wxString WX_COMBOBOX::GetMenuText( int aItem ) const |
|||
{ |
|||
if( m_menuText.count( aItem ) ) |
|||
return m_menuText.at( aItem ); |
|||
else if( aItem >= 0 && aItem < (int) GetCount() ) |
|||
return GetVListBoxComboPopup()->GetString( aItem ); |
|||
else |
|||
return wxEmptyString; |
|||
} |
|||
|
|||
|
|||
int WX_COMBOBOX::GetSelectionEither( bool aInner ) const |
|||
{ |
|||
if( aInner ) |
|||
return GetVListBoxComboPopup()->wxVListBox::GetSelection(); |
|||
else |
|||
return GetSelection(); |
|||
} |
|||
|
|||
|
|||
void WX_COMBOBOX::SetSelectionEither( bool aInner, int aSel ) |
|||
{ |
|||
if( aSel >= 0 && aSel < (int) GetCount() ) |
|||
{ |
|||
if( aInner ) |
|||
return GetVListBoxComboPopup()->wxVListBox::SetSelection( aSel ); |
|||
else |
|||
return SetSelection( aSel ); |
|||
} |
|||
} |
@ -0,0 +1,83 @@ |
|||
/* |
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors. |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify it |
|||
* under the terms of the GNU General Public License as published by the |
|||
* Free Software Foundation, either version 3 of the License, or (at your |
|||
* option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, but |
|||
* WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|||
* General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License along |
|||
* with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
*/ |
|||
|
|||
#ifndef WX_COMBOBOX_H |
|||
#define WX_COMBOBOX_H |
|||
|
|||
#include <map> |
|||
#include <wx/odcombo.h> |
|||
|
|||
/** |
|||
* Fix some issues with wxCombobox: |
|||
* - setting the value of a non-read-only combobox doesn't work on MSW |
|||
* - rollover highlighting in the dropdown doesn't work on OSX |
|||
* - separators don't work anywhere |
|||
*/ |
|||
class WX_COMBOBOX : public wxOwnerDrawnComboBox |
|||
{ |
|||
public: |
|||
WX_COMBOBOX( wxWindow* aParent, int aId = wxID_ANY, const wxString& aValue = wxEmptyString, |
|||
const wxPoint& aPos = wxDefaultPosition, const wxSize& aSize = wxDefaultSize, |
|||
int n = 0, const wxString choices[] = nullptr, long style = 0 ); |
|||
|
|||
virtual ~WX_COMBOBOX(); |
|||
|
|||
void Append( const wxString& aText, const wxString& aMenuText = wxEmptyString ); |
|||
|
|||
int GetCharHeight() const override; |
|||
|
|||
protected: |
|||
virtual void DoSetPopupControl( wxComboPopup* aPopup ) override; |
|||
virtual void OnDrawItem( wxDC& aDC, const wxRect& aRect, int aItem, int aFlags ) const override; |
|||
virtual wxCoord OnMeasureItem( size_t aItem ) const override; |
|||
virtual wxCoord OnMeasureItemWidth( size_t aItem ) const override; |
|||
|
|||
/// Veto a mouseover event if in the separator |
|||
void TryVetoMouse( wxMouseEvent& aEvent ); |
|||
|
|||
/** |
|||
* Veto a select event for the separator |
|||
* |
|||
* @param aEvent - the wxCommandEvent caller |
|||
* @param aInner - true if event was called for the inner list (ie the popup) |
|||
*/ |
|||
void TryVetoSelect( wxCommandEvent& aEvent, bool aInner ); |
|||
|
|||
/** |
|||
* Safely get a string for an item, returning wxEmptyString if the item doesn't exist. |
|||
*/ |
|||
wxString GetMenuText( int aItem ) const; |
|||
|
|||
/** |
|||
* Get selection from either the outer (combo box) or inner (popup) list. |
|||
*/ |
|||
int GetSelectionEither( bool aInner ) const; |
|||
|
|||
/** |
|||
* Safely set selection for either the outer (combo box) or inner (popup) list, doing nothing |
|||
* for invalid selections. |
|||
*/ |
|||
void SetSelectionEither( bool aInner, int aSel ); |
|||
|
|||
private: |
|||
std::map<int, wxString> m_menuText; |
|||
int m_lastSelection; |
|||
}; |
|||
|
|||
#endif // WX_COMBOBOX_H |
Write
Preview
Loading…
Cancel
Save
Reference in new issue