bsnes/higan/phoenix/gtk/action/radio-item.cpp

53 lines
1.6 KiB
C++
Executable File

namespace phoenix {
static void RadioItem_activate(RadioItem* self) {
for(auto& item : self->state.group) item.state.checked = (&item == self);
if(self->p.locked == false && self->checked() && self->onActivate) self->onActivate();
}
bool pRadioItem::checked() {
return gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget));
}
void pRadioItem::setChecked() {
locked = true;
for(auto& item : radioItem.state.group) gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item.p.widget), false);
gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(widget), true);
locked = false;
}
void pRadioItem::setGroup(const group<RadioItem>& group) {
for(auto& item : group) {
if(&item == &group.first()) continue;
GSList* currentGroup = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(group.first().p.widget));
if(currentGroup != gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(item.p.widget))) {
gtk_radio_menu_item_set_group(GTK_RADIO_MENU_ITEM(item.p.widget), currentGroup);
}
}
}
void pRadioItem::setText(const string& text) {
gtk_menu_item_set_label(GTK_MENU_ITEM(widget), mnemonic(text));
}
void pRadioItem::constructor() {
widget = gtk_radio_menu_item_new_with_mnemonic(0, "");
setGroup(radioItem.state.group);
setText(radioItem.state.text);
for(auto& item : radioItem.state.group) {
gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item.p.widget), item.state.checked);
}
g_signal_connect_swapped(G_OBJECT(widget), "toggled", G_CALLBACK(RadioItem_activate), (gpointer)&radioItem);
}
void pRadioItem::destructor() {
gtk_widget_destroy(widget);
}
void pRadioItem::orphan() {
destructor();
constructor();
}
}