1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/*
* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
*
* 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; version 2 of the
* License.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#pragma once
#include <mforms/base.h>
#include <mforms/button.h>
namespace mforms {
class RadioButton;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifndef SWIG
struct RadioButtonImplPtrs
{
bool (*create)(RadioButton *self, int group_id);
void (*set_active)(RadioButton *self, bool flag);
bool (*get_active)(RadioButton *self);
};
#endif
#endif
/** A radio button that will unselect other buttons in the same group when selected. */
class MFORMS_EXPORT RadioButton : public Button
{
protected:
RadioButtonImplPtrs *_radio_impl;
boost::signals2::signal<void ()> _signal_toggled;
int _group_id;
void radio_activated(int group_id);
public:
/** Create a new unique group id */
static int new_id();
/** Constructor.
The group_id defines the radiogroup this button belongs to.
When a radio group is activated, all others in the same group will be deactivated.
It must be unique in the application, you can use new_id() to create one.
Note: on Windows exists a limitation due to an implicit handling of radio groups there.
All radio buttons sharing the same window parent automatically belong to one group and hence only one
of them can be active. This effectively prohibits more than one radio group on a single parent container.
*/
RadioButton(int group_id);
/** Returns group_id of this radio button */
int group_id() const { return _group_id; }
/** Sets state of the radio button */
void set_active(bool flag);
/** Gets state */
bool get_active();
#ifndef SWIG
#ifndef DOXYGEN_SHOULD_SKIP_THIS
virtual void callback();
#endif
#endif
};
};
|