2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-03-31 07:03:32 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 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.
|
2009-03-31 07:03:32 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-03-31 07:03:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-11-23 06:54:24 +00:00
|
|
|
#include "wxGuiTools.h"
|
2009-03-31 07:03:32 +00:00
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
class CheckedStaticBox : public wxPanelWithHelpers
|
2009-03-31 07:03:32 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxBoxSizer& ThisSizer; // Boxsizer which holds all child items.
|
|
|
|
wxCheckBox& ThisToggle; // toggle which can enable/disable all child controls
|
|
|
|
|
|
|
|
public:
|
|
|
|
CheckedStaticBox( wxWindow* parent, int orientation, const wxString& title=wxEmptyString, int id=wxID_ANY );
|
|
|
|
|
|
|
|
void SetValue( bool val );
|
|
|
|
bool GetValue() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Event handler for click events for the main checkbox (default behavior: enables/disables all child controls)
|
|
|
|
// This function can be overridden to implement custom handling of check enable/disable behavior.
|
|
|
|
virtual void MainToggle_Click( wxCommandEvent& evt );
|
|
|
|
};
|