KiCad PCB EDA Suite
Loading...
Searching...
No Matches
indicator_icon.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include <kicommon.h>
23#include <wx/statbmp.h>
24#include <wx/panel.h>
25
26class wxStaticBitmap;
27
31class KICOMMON_API INDICATOR_ICON : public wxPanel
32{
33public:
39 using ICON_ID = int;
40
45 {
46 public:
47 virtual ~ICON_PROVIDER() {};
48
54 virtual const wxBitmap& GetIndicatorIcon( ICON_ID aIconId ) const = 0;
55 };
56
63 INDICATOR_ICON( wxWindow* aParent, ICON_PROVIDER& aIconProvider, ICON_ID aInitialIcon, int aID );
64
70 void SetIndicatorState( ICON_ID aIconId );
71
77 void SetWindowID( wxWindowID aId )
78 {
79 SetId( aId );
80 m_bitmap->SetId( aId );
81 }
82
83private:
85 wxStaticBitmap* m_bitmap;
87};
88
89
94{
95public:
96
108
109 ROW_ICON_PROVIDER( int aSizeDIP, wxWindow* aWindow );
110
112 const wxBitmap& GetIndicatorIcon( INDICATOR_ICON::ICON_ID aIconId ) const override;
113
114private:
119 wxBitmap m_dotBitmap;
120 wxBitmap m_openBitmap;
122};
A simple object that can provide fixed bitmaps for use as row indicators.
virtual const wxBitmap & GetIndicatorIcon(ICON_ID aIconId) const =0
Get a reference to the row icon in the given mode.
ICON_PROVIDER & m_iconProvider
int ICON_ID
An id that refers to a certain icon state.
INDICATOR_ICON(wxWindow *aParent, ICON_PROVIDER &aIconProvider, ICON_ID aInitialIcon, int aID)
void SetIndicatorState(ICON_ID aIconId)
Set the row indicator to the given state.
void SetWindowID(wxWindowID aId)
Update the window ID of this control and its children.
ICON_ID m_currentId
Handle on the bitmap widget.
wxStaticBitmap * m_bitmap
Object that delivers icons for the indicator.
Icon provider for the "standard" row indicators, for example in layer selection lists.
wxBitmap m_rightArrowBitmap
STATE
State constants to select the right icons.
@ UP
Row above design alpha.
@ OPEN
Tree control open.
@ CLOSED
Tree control closed.
@ DIMMED
Row "dimmed".
@ DOWN
Row below design alpha.
@ OFF
Row "off" or "deselected".
@ ON
Row "on" or "selected".
ROW_ICON_PROVIDER(int aSizeDIP, wxWindow *aWindow)
#define KICOMMON_API
Definition kicommon.h:27