2020-07-11 13:42:00 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2020-07-11 13:42:00 -04:00
|
|
|
* @author Jon Evans <jon@craftyjon.com>
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BITMAP_TOGGLE_H
|
|
|
|
#define _BITMAP_TOGGLE_H
|
|
|
|
|
2021-10-09 13:22:09 -07:00
|
|
|
#include <wx/statbmp.h>
|
2023-10-21 15:39:51 -04:00
|
|
|
#include <wx/bmpbndl.h>
|
2021-06-03 02:19:20 +01:00
|
|
|
#include <wx/panel.h>
|
2020-07-11 13:42:00 -04:00
|
|
|
|
|
|
|
#include <gal/color4d.h>
|
|
|
|
|
2021-06-03 02:19:20 +01:00
|
|
|
class wxStaticBitmap;
|
2020-07-11 13:42:00 -04:00
|
|
|
|
|
|
|
wxDECLARE_EVENT( TOGGLE_CHANGED, wxCommandEvent );
|
|
|
|
|
|
|
|
/**
|
2025-01-04 09:21:11 -05:00
|
|
|
* A checkbox control except with custom bitmaps for the checked and unchecked states.
|
2020-07-11 13:42:00 -04:00
|
|
|
*
|
2025-01-04 09:21:11 -05:00
|
|
|
* This is useful in space-constrained situations where native toggle button controls are too big.
|
2020-07-11 13:42:00 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
class BITMAP_TOGGLE : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BITMAP_TOGGLE() {}
|
|
|
|
|
2023-10-21 15:39:51 -04:00
|
|
|
BITMAP_TOGGLE( wxWindow* aParent, wxWindowID aId, const wxBitmapBundle& aCheckedBitmap,
|
|
|
|
const wxBitmapBundle& aUncheckedBitmap, bool aChecked = false );
|
2020-07-11 13:42:00 -04:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// Set the checkbox state
|
2020-07-11 13:42:00 -04:00
|
|
|
void SetValue( bool aValue );
|
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// Read the checkbox state
|
2020-10-27 11:03:35 +00:00
|
|
|
bool GetValue() const { return m_checked; }
|
2020-07-11 13:42:00 -04:00
|
|
|
|
2021-10-09 13:22:09 -07:00
|
|
|
/**
|
2025-01-04 09:21:11 -05:00
|
|
|
* Update the window ID of this control and its children.
|
|
|
|
*
|
2021-10-09 13:22:09 -07:00
|
|
|
* @param aId new Window ID to set
|
|
|
|
*/
|
|
|
|
void SetWindowID( wxWindowID aId )
|
|
|
|
{
|
|
|
|
SetId( aId );
|
|
|
|
m_bitmap->SetId( aId );
|
|
|
|
}
|
|
|
|
|
2020-07-11 13:42:00 -04:00
|
|
|
private:
|
2022-02-23 17:39:06 +00:00
|
|
|
bool m_checked;
|
2020-07-11 13:42:00 -04:00
|
|
|
|
|
|
|
wxStaticBitmap* m_bitmap;
|
2023-10-21 15:39:51 -04:00
|
|
|
wxBitmapBundle m_unchecked_bitmap;
|
|
|
|
wxBitmapBundle m_checked_bitmap;
|
2020-07-11 13:42:00 -04:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
wxLongLong m_debounce; ///< Timestamp for debouncing events.
|
2020-07-11 13:42:00 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|