kicad/include/widgets/footprint_choice.h

116 lines
3.7 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2017 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 FOOTPRINT_CHOICE_H
#define FOOTPRINT_CHOICE_H
#include <wx/odcombo.h>
/**
* Event thrown when an item is selected "interactively". This includes direct clicks
* and presses of the Enter key, but not arrow key motion. Integer data will be the
* item selected.
*/
wxDECLARE_EVENT( EVT_INTERACTIVE_CHOICE, wxCommandEvent );
/**
* Customized combo box for footprint selection. This provides the following features:
*
* - library name is greyed out for readability when lib:footprint format is found in
* the item text
* - empty items are displayed as nonselectable separators
*
* Multiple separators in a row is undefined behavior; it is likely to result in errors
* such as the ability to select separators. Separators ARE valid at the top and bottom.
*
* For any items containing footprints, the "lib:footprint" name should be attached to
* the item as a wxStringClientData.
*/
class FOOTPRINT_CHOICE : public wxOwnerDrawnComboBox
{
public:
FOOTPRINT_CHOICE( wxWindow* aParent, int aId );
virtual ~FOOTPRINT_CHOICE();
protected:
virtual void DoSetPopupControl( wxComboPopup* aPopup ) override;
virtual void OnDrawItem( wxDC& aDC, wxRect const& aRect, int aItem, int aFlags ) const override;
virtual wxCoord OnMeasureItem( size_t aItem ) const override;
virtual wxCoord OnMeasureItemWidth( size_t aItem ) const override;
/**
* Draw a fragment of text, then return the next x coordinate to continue drawing.
*/
static wxCoord DrawTextFragment( wxDC& aDC, wxCoord x, wxCoord y, wxString const& aText );
/// Veto a mouseover event if in the separator
void TryVetoMouse( wxMouseEvent& aEvent );
/**
* Veto a select event for the separator
*
2017-06-25 09:26:04 +00:00
* @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 );
/**
* Mouse up on an item in the list.
*/
void OnMouseUp( wxMouseEvent& aEvent );
/**
* Key up on an item in the list.
*/
void OnKeyUp( wxKeyEvent& aEvent );
/**
* For arrow key events, skip over separators.
*
2017-06-25 09:26:04 +00:00
* @param aEvent - the wxKeyEvent caller
* @param aInner - true if event was called for the inner list (ie the popup)
*/
void TrySkipSeparator( wxKeyEvent& aEvent, bool aInner );
/**
* Safely get a string for an item, returning wxEmptyString if the item doesn't exist.
*/
wxString SafeGetString( 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 );
static wxColour m_grey;
private:
int m_last_selection;
};
#endif // FOOTPRINT_CHOICE_H