Lines Matching defs:act
162 static void sp_stb_sides_flat_state_changed( EgeSelectOneAction *act, GObject *dataKludge )
165 bool flat = ege_select_one_action_get_active( act ) == 0;
379 EgeOutputAction* act = EGE_OUTPUT_ACTION( g_object_get_data( tbl, "mode_action" ) );
382 g_object_set( G_OBJECT(act), "label", _("<b>New:</b>"), NULL );
384 g_object_set( G_OBJECT(act), "label", _("<b>Change:</b>"), NULL );
444 EgeOutputAction* act = ege_output_action_new( "StarStateAction", _("<b>New:</b>"), "", 0 );
445 ege_output_action_set_use_markup( act, TRUE );
446 gtk_action_group_add_action( mainActions, GTK_ACTION( act ) );
447 g_object_set_data( holder, "mode_action", act );
474 EgeSelectOneAction* act = ege_select_one_action_new( "FlatAction", (""), (""), NULL, GTK_TREE_MODEL(model) );
475 gtk_action_group_add_action( mainActions, GTK_ACTION(act) );
476 g_object_set_data( holder, "flat_action", act );
478 ege_select_one_action_set_appearance( act, "full" );
479 ege_select_one_action_set_radio_action_type( act, INK_RADIO_ACTION_TYPE );
480 g_object_set( G_OBJECT(act), "icon-property", "iconId", NULL );
481 ege_select_one_action_set_icon_column( act, 2 );
482 ege_select_one_action_set_icon_size( act, secondarySize );
483 ege_select_one_action_set_tooltip_column( act, 1 );
485 ege_select_one_action_set_active( act, isFlatSided ? 0 : 1 );
486 g_signal_connect_after( G_OBJECT(act), "changed", G_CALLBACK(sp_stb_sides_flat_state_changed), holder);