//------------------------------------------------------------------------------
// emRadioBox.h
//
// Copyright (C) 2005-2010,2014,2018 Oliver Hamann.
//
// Homepage: http://eaglemode.sourceforge.net/
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 3 as published by the
// Free Software Foundation.
//
// 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 version 3 for
// more details.
//
// You should have received a copy of the GNU General Public License version 3
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//------------------------------------------------------------------------------
#ifndef emRadioBox_h
#define emRadioBox_h
#ifndef emRadioButton_h
#include <emCore/emRadioButton.h>
#endif
//==============================================================================
//================================= emRadioBox =================================
//==============================================================================
class emRadioBox : public emRadioButton {
public:
// This is like emRadioButton, but with a different visualization:
// Instead of a push button, a small check box is shown with the label
// on the right.
emRadioBox(
ParentArg parent, const emString & name,
const emString & caption=emString(),
const emString & description=emString(),
const emImage & icon=emImage()
);
virtual ~emRadioBox();
};
#endif