gambas-source-code/gb.qt4/src/CRadioButton.cpp
gambas aefee813e2 Add CheckBox and RadioButton Invert property. Fix resize against arrangement and GTK painting on DrawingArea and UserControl.
[GB.GTK]
* BUG: Fix DrawingArea and UserControl painting.
* NEW: CheckBox.Invert is a new property that put the check mark on the other side.
* NEW: RadioButton.Invert is a new property that put the radio button on the other side.
* NEW: Font.TextSize() is a new method that returns the text width and height as a rectangle.
* NEW: Font.RichTextSize() is a new method that returns the rich text width and height as a rectangle.
* BUG: Font.RichTextWidth() now takes a width optional argument like RichTextHeight().
* OPT: Control resize now ignores new width or height if its container constraints it.

[GB.GTK3]
* NEW: CheckBox.Invert is a new property that put the check mark on the other side.
* NEW: RadioButton.Invert is a new property that put the radio button on the other side.
* NEW: Font.TextSize() is a new method that returns the text width and height as a rectangle.
* NEW: Font.RichTextSize() is a new method that returns the rich text width and height as a rectangle.
* BUG: Font.RichTextWidth() now takes a width optional argument like RichTextHeight().
* OPT: Control resize now ignores new width or height if its container constraints it.

[GB.QT4]
* NEW: CheckBox.Invert is a new property that put the check mark on the other side.
* NEW: RadioButton.Invert is a new property that put the radio button on the other side.
* NEW: Font.TextSize() is a new method that returns the text width and height as a rectangle.
* NEW: Font.RichTextSize() is a new method that returns the rich text width and height as a rectangle.
* BUG: Font.RichTextWidth() now takes a width optional argument like RichTextHeight().
* OPT: Control resize now ignores new width or height if its container constraints it.

[GB.QT5]
* NEW: CheckBox.Invert is a new property that put the check mark on the other side.
* NEW: RadioButton.Invert is a new property that put the radio button on the other side.
* NEW: Font.TextSize() is a new method that returns the text width and height as a rectangle.
* NEW: Font.RichTextSize() is a new method that returns the rich text width and height as a rectangle.
* BUG: Font.RichTextWidth() now takes a width optional argument like RichTextHeight().
* OPT: Control resize now ignores new width or height if its container constraints it.
2021-03-06 13:17:35 +01:00

199 lines
4.4 KiB
C++

/***************************************************************************
CRadioButton.cpp
(c) 2000-2017 Benoît Minisini <g4mba5@gmail.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, 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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#define __CRADIOBUTTON_CPP
#include <QApplication>
#include <QRadioButton>
#include <QResizeEvent>
#include "gambas.h"
#include "CStyle.h"
#include "CRadioButton.h"
//-------------------------------------------------------------------------
MyRadioButton::MyRadioButton(QWidget *parent) : QRadioButton(parent)
{
_autoResize = false;
}
void MyRadioButton::changeEvent(QEvent *e)
{
QRadioButton::changeEvent(e);
if (e->type() == QEvent::FontChange || e->type() == QEvent::StyleChange)
adjust();
}
void MyRadioButton::adjust(bool force)
{
void *_object = CWidget::getReal(this);
bool a;
QSize hint;
if (!THIS || (!_autoResize && !force) || CWIDGET_is_design(THIS) || text().length() <= 0)
return;
a = _autoResize;
_autoResize = false;
hint = sizeHint();
CWIDGET_auto_resize(THIS, hint.width(), qMax(hint.height(), height()));
_autoResize = a;
}
void MyRadioButton::resizeEvent(QResizeEvent *e)
{
QRadioButton::resizeEvent(e);
if (_autoResize && e->oldSize().width() != e->size().width())
adjust();
}
//-------------------------------------------------------------------------
DECLARE_EVENT(EVENT_Click);
BEGIN_METHOD(RadioButton_new, GB_OBJECT parent)
MyRadioButton *wid = new MyRadioButton(QCONTAINER(VARG(parent)));
QObject::connect(wid, SIGNAL(toggled(bool)), &CRadioButton::manager, SLOT(clicked(bool)));
CWIDGET_new(wid, (void *)_object);
THIS->widget.flag.fillBackground = true; CSTYLE_fix_breeze;
END_METHOD
BEGIN_PROPERTY(RadioButton_Text)
if (READ_PROPERTY)
RETURN_NEW_STRING(WIDGET->text());
else
{
WIDGET->setText(QSTRING_PROP());
WIDGET->adjust();
}
END_PROPERTY
BEGIN_PROPERTY(RadioButton_Value)
if (READ_PROPERTY)
GB.ReturnBoolean(WIDGET->isChecked());
else
WIDGET->setChecked(VPROP(GB_BOOLEAN));
END_PROPERTY
BEGIN_PROPERTY(RadioButton_AutoResize)
if (READ_PROPERTY)
GB.ReturnBoolean(WIDGET->isAutoResize());
else
WIDGET->setAutoResize(VPROP(GB_BOOLEAN));
END_PROPERTY
BEGIN_PROPERTY(RadioButton_Invert)
if (READ_PROPERTY)
GB.ReturnBoolean(THIS->widget.flag.inverted);
else
CWIDGET_set_inverted(THIS, VPROP(GB_BOOLEAN));
END_PROPERTY
//-------------------------------------------------------------------------
GB_DESC CRadioButtonDesc[] =
{
GB_DECLARE("RadioButton", sizeof(CRADIOBUTTON)), GB_INHERITS("Control"),
GB_METHOD("_new", NULL, RadioButton_new, "(Parent)Container;"),
GB_PROPERTY("Text", "s", RadioButton_Text),
GB_PROPERTY("Caption", "s", RadioButton_Text),
GB_PROPERTY("Value", "b", RadioButton_Value),
GB_PROPERTY("AutoResize", "b", RadioButton_AutoResize),
GB_PROPERTY("Invert", "b", RadioButton_Invert),
GB_EVENT("Click", NULL, NULL, &EVENT_Click),
RADIOBUTTON_DESCRIPTION,
GB_END_DECLARE
};
//-------------------------------------------------------------------------
CRadioButton CRadioButton::manager;
void CRadioButton::clicked(bool on)
{
QRadioButton *wid = (QRadioButton *)sender();
GET_SENDER();
QObject *parent = wid->parent();
QList<QRadioButton *> list = parent->findChildren<QRadioButton *>();
int i;
QRadioButton *obj = 0;
if (on)
{
for (i = 0; i < list.count(); i++)
{
obj = list.at(i);
if (obj != wid && obj->isChecked())
{
obj->setChecked(false);
on = false;
}
}
//if (!on)
GB.Raise(THIS, EVENT_Click, 0);
}
else
{
for (i = 0; i < list.count(); i++)
{
obj = list.at(i);
if (obj->isChecked())
break;
}
if (!obj)
wid->setChecked(true);
//else
// RAISE_EVENT(EVENT_Click);
}
}