StateText_Context::StateText_Context(CanvasView *canvas_view): canvas_view(canvas_view), is_working(*canvas_view), duckmatic_push(get_work_area()), prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()), settings(synfigapp::Main::get_selected_input_device()->settings()), opacity_hscl(0.0f, 1.0125f, 0.0125f) { egress_on_selection_change=true; /* Set up the tool options dialog */ // 0, title title_label.set_label(_("Text Creation")); Pango::AttrList list; Pango::AttrInt attr = Pango::Attribute::create_attr_weight(Pango::WEIGHT_BOLD); list.insert(attr); title_label.set_attributes(list); title_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // 1, layer name label and entry id_label.set_label(_("Name:")); id_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); SPACING(id_gap, GAP); id_box.pack_start(id_label, Gtk::PACK_SHRINK); id_box.pack_start(*id_gap, Gtk::PACK_SHRINK); id_box.pack_start(id_entry); // 2, layer types creation layer_types_label.set_label(_("Layer Type:")); layer_types_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); LAYER_CREATION(layer_text_togglebutton, ("synfig-layer_other_text"), _("Create a text layer")); SPACING(layer_types_indent, INDENTATION); layer_types_box.pack_start(*layer_types_indent, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_text_togglebutton, Gtk::PACK_SHRINK); // 3, blend method label and dropdown list blend_label.set_label(_("Blend Method:")); blend_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); SPACING(blend_gap, GAP); blend_box.pack_start(blend_label, Gtk::PACK_SHRINK); blend_box.pack_start(*blend_gap, Gtk::PACK_SHRINK); blend_enum.set_param_desc(ParamDesc(Color::BLEND_COMPOSITE,"blend_method") .set_local_name(_("Blend Method")) .set_description(_("Defines the blend method to be used for texts"))); // 4, opacity label and slider opacity_label.set_label(_("Opacity:")); opacity_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); opacity_hscl.set_digits(2); opacity_hscl.set_value_pos(Gtk::POS_LEFT); opacity_hscl.set_tooltip_text(_("Opacity")); // 5, paragraph paragraph_label.set_label(_("Multiline Text")); paragraph_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); paragraph_box.pack_start(paragraph_label, Gtk::PACK_SHRINK); paragraph_box.pack_end(paragraph_checkbutton, Gtk::PACK_SHRINK); // 6, size size_label.set_label(_("Size:")); size_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); size_widget.set_digits(2); size_widget.set_canvas(canvas_view->get_canvas()); // 7, orientation orientation_label.set_label(_("Orientation:")); orientation_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); orientation_widget.set_digits(2); // 8, family family_label.set_label(_("Family:")); family_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // pack all options to the options_table // 0, title options_table.attach(title_label, 0, 2, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0 ); // 1, name options_table.attach(id_box, 0, 2, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0 ); // 2, layer types creation options_table.attach(layer_types_label, 0, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(layer_types_box, 0, 2, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0 ); // 3, blend method options_table.attach(blend_box, 0, 1, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(blend_enum, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 4, opacity options_table.attach(opacity_label, 0, 1, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(opacity_hscl, 1, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 5, paragraph options_table.attach(paragraph_box, 0, 2, 6, 7, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 6, size options_table.attach(size_label, 0, 1, 7, 8, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(size_widget, 1, 2, 7, 8, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 7, orientation options_table.attach(orientation_label, 0, 1, 8, 9, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(orientation_widget, 1, 2, 8, 9, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 8, family options_table.attach(family_label, 0, 1, 9, 10, Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(family_entry, 1, 2, 9, 10, Gtk::FILL, Gtk::FILL, 0, 0 ); // fine-tune options layout options_table.set_border_width(GAP*2); // border width options_table.set_row_spacings(GAP); // row gap options_table.set_row_spacing(0, GAP*2); // the gap between first and second row. options_table.set_row_spacing(2, 1); // row gap between label and icon of layer type options_table.set_row_spacing(10, 0); // the final row using border width of table options_table.show_all(); load_settings(); refresh_tool_options(); App::dialog_tool_options->present(); // Turn off layer clicking get_work_area()->set_allow_layer_clicks(false); // clear out the ducks get_work_area()->clear_ducks(); // Refresh the work area get_work_area()->queue_draw(); // Hide the tables if they are showing //prev_table_status=get_canvas_view()->tables_are_visible(); //if(prev_table_status)get_canvas_view()->hide_tables(); // Disable the time bar //get_canvas_view()->set_sensitive_timebar(false); // Connect a signal //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateText_Context::on_user_click)); get_work_area()->set_cursor(Gdk::XTERM); App::dock_toolbox->refresh(); }
StatePolygon_Context::StatePolygon_Context(CanvasView* canvas_view): canvas_view_(canvas_view), is_working(*canvas_view), prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()), duckmatic_push(get_work_area()), settings(synfigapp::Main::get_selected_input_device()->settings()), opacity_hscl(0.0f, 1.01f, 0.01f), button_make(_("Make")) { egress_on_selection_change=true; /* Set up the tool options dialog */ // 0, title title_label.set_label(_("Polygon Creation")); Pango::AttrList list; Pango::AttrInt attr = Pango::Attribute::create_attr_weight(Pango::WEIGHT_BOLD); list.insert(attr); title_label.set_attributes(list); title_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // 1, layer name label and entry id_label.set_label(_("Name:")); id_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); SPACING(id_gap, GAP); id_box.pack_start(id_label, Gtk::PACK_SHRINK); id_box.pack_start(*id_gap, Gtk::PACK_SHRINK); id_box.pack_start(id_entry); // 2, layer types creation layer_types_label.set_label(_("Layer Type:")); layer_types_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); LAYER_CREATION(layer_polygon_togglebutton, ("synfig-layer_geometry_polygon"), _("Create a polygon layer")); LAYER_CREATION(layer_region_togglebutton, ("synfig-layer_geometry_region"), _("Create a region layer")); LAYER_CREATION(layer_outline_togglebutton, ("synfig-layer_geometry_outline"), _("Create a outline layer")); LAYER_CREATION(layer_advanced_outline_togglebutton, ("synfig-layer_geometry_advanced_outline"), _("Create a advanced outline layer")); LAYER_CREATION(layer_plant_togglebutton, ("synfig-layer_other_plant"), _("Create a plant layer")); LAYER_CREATION(layer_curve_gradient_togglebutton, ("synfig-layer_gradient_curve"), _("Create a gradient layer")); SPACING(layer_types_indent, INDENTATION); layer_types_box.pack_start(*layer_types_indent, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_polygon_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_region_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_outline_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_advanced_outline_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_plant_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_curve_gradient_togglebutton, Gtk::PACK_SHRINK); // 3, blend method label and dropdown list blend_label.set_label(_("Blend Method:")); blend_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); SPACING(blend_gap, GAP); blend_box.pack_start(blend_label, Gtk::PACK_SHRINK); blend_box.pack_start(*blend_gap, Gtk::PACK_SHRINK); blend_enum.set_param_desc(ParamDesc(Color::BLEND_COMPOSITE,"blend_method") .set_local_name(_("Blend Method")) .set_description(_("Defines the blend method to be used for polygons"))); // 4, opacity label and slider opacity_label.set_label(_("Opacity:")); opacity_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); opacity_hscl.set_digits(2); opacity_hscl.set_value_pos(Gtk::POS_LEFT); opacity_hscl.set_tooltip_text(_("Opacity")); // 5, brush size bline_width_label.set_label(_("Brush Size:")); bline_width_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); bline_width_label.set_sensitive(false); bline_width_dist.set_digits(2); bline_width_dist.set_range(0,10000000); bline_width_dist.set_sensitive(false); // 6, invert invert_label.set_label(_("Invert")); invert_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); invert_box.pack_start(invert_label); invert_box.pack_end(invert_checkbutton, Gtk::PACK_SHRINK); invert_box.set_sensitive(false); // 7, feather feather_label.set_label(_("Feather:")); feather_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); feather_label.set_sensitive(false); feather_dist.set_digits(2); feather_dist.set_range(0,10000000); feather_dist.set_sensitive(false); // 8, link origins link_origins_label.set_label(_("Link Origins")); link_origins_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); link_origins_box.pack_start(link_origins_label); link_origins_box.pack_end(layer_link_origins_checkbutton, Gtk::PACK_SHRINK); link_origins_box.set_sensitive(false); load_settings(); // pack all options to the options_table // 0, title options_table.attach(title_label, 0, 2, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0 ); // 1, name options_table.attach(id_box, 0, 2, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0 ); // 2, layer types creation options_table.attach(layer_types_label, 0, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(layer_types_box, 0, 2, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0 ); // 3, blend method options_table.attach(blend_box, 0, 1, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(blend_enum, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 4, opacity options_table.attach(opacity_label, 0, 1, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(opacity_hscl, 1, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 5, brush size options_table.attach(bline_width_label, 0, 1, 6, 7, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(bline_width_dist, 1, 2, 6, 7, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 6, invert options_table.attach(invert_box, 0, 2, 7, 8, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 7, feather options_table.attach(feather_label, 0, 1, 8, 9, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(feather_dist, 1, 2, 8, 9, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 8, link origins options_table.attach(link_origins_box, 0, 2, 9, 10, Gtk::FILL, Gtk::FILL, 0, 0 ); // fine-tune options layout options_table.set_border_width(GAP*2); // border width options_table.set_row_spacings(GAP); // row gap options_table.set_row_spacing(0, GAP*2); // the gap between first and second row. options_table.set_row_spacing(2, 1); // row gap between label and icon of layer type options_table.set_row_spacing(10, 0); // the final row using border width of table options_table.show_all(); button_make.signal_pressed().connect(sigc::mem_fun(*this,&StatePolygon_Context::run)); refresh_tool_options(); App::dialog_tool_options->present(); // Turn off layer clicking get_work_area()->set_allow_layer_clicks(false); // clear out the ducks get_work_area()->clear_ducks(); // Refresh the work area get_work_area()->queue_draw(); get_work_area()->set_cursor(Gdk::CROSSHAIR); // Hide the tables if they are showing prev_table_status=get_canvas_view()->tables_are_visible(); if(prev_table_status)get_canvas_view()->hide_tables(); // Disable the time bar get_canvas_view()->set_sensitive_timebar(false); App::dock_toolbox->refresh(); }
Gobby::PreferencesDialog::Appearance::Appearance(Preferences& preferences): m_group_toolbar(_("Toolbar") ), m_group_font(_("Font") ), m_group_scheme(_("Color Scheme")), m_cmb_toolbar_style(preferences.appearance.toolbar_style), m_conn_font(m_btn_font, preferences.appearance.font), m_list(Gtk::ListStore::create(m_columns)), m_tree(m_list) { const Pango::FontDescription& font = preferences.appearance.font; m_cmb_toolbar_style.add(_("Show text only"), Gtk::TOOLBAR_TEXT); m_cmb_toolbar_style.add(_("Show icons only"), Gtk::TOOLBAR_ICONS); m_cmb_toolbar_style.add(_("Show both icons and text"), Gtk::TOOLBAR_BOTH ); m_cmb_toolbar_style.add(_("Show text besides icons"), Gtk::TOOLBAR_BOTH_HORIZ ); m_cmb_toolbar_style.show(); m_conn_font.block(); m_btn_font.set_font_name(font.to_string()); m_btn_font.show(); m_conn_font.unblock(); m_group_toolbar.add(m_cmb_toolbar_style); m_group_toolbar.show(); m_group_font.add(m_btn_font); m_group_font.show(); Gtk::TreeViewColumn column_name; Gtk::CellRendererText renderer_name; column_name.pack_start(renderer_name, false); column_name.add_attribute(renderer_name.property_text(), m_columns.name); m_tree.append_column(column_name);//"Scheme Name", m_columns.name); m_tree.append_column("Scheme description", m_columns.description); Pango::AttrList list; Pango::Attribute attr(Pango::Attribute::create_attr_weight(Pango::WEIGHT_BOLD)); list.insert(attr); renderer_name.property_attributes() = list; m_tree.set_headers_visible(false); m_tree.show(); Gtk::ScrolledWindow* scroll = Gtk::manage(new Gtk::ScrolledWindow); scroll->set_shadow_type(Gtk::SHADOW_IN); scroll->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll->add(m_tree); scroll->show(); m_group_scheme.add(*scroll); m_group_scheme.show(); GtkSourceStyleSchemeManager* manager = gtk_source_style_scheme_manager_get_default(); const gchar* const* ids = gtk_source_style_scheme_manager_get_scheme_ids(manager); Glib::ustring current_scheme = preferences.appearance.scheme_id; for (const gchar* const* id = ids; *id != NULL; ++id) { GtkSourceStyleScheme* scheme = gtk_source_style_scheme_manager_get_scheme(manager, *id); const gchar* name = gtk_source_style_scheme_get_name(scheme); const gchar* desc = gtk_source_style_scheme_get_description(scheme); Gtk::TreeIter iter = m_list->append(); (*iter)[m_columns.name] = name; (*iter)[m_columns.description] = desc; (*iter)[m_columns.scheme] = scheme; if (current_scheme == gtk_source_style_scheme_get_id(scheme)) m_tree.get_selection()->select(iter); } m_tree.get_selection()->signal_changed().connect( sigc::bind( sigc::mem_fun(*this, &Appearance::on_scheme_changed), sigc::ref(preferences))); #ifdef USE_GTKMM3 m_list->set_sort_column(m_columns.name, Gtk::SORT_ASCENDING); #else m_list->set_sort_column_id(m_columns.name, Gtk::SORT_ASCENDING); #endif add(m_group_toolbar, false); add(m_group_font, false); add(m_group_scheme, true); }
StateGradient_Context::StateGradient_Context(CanvasView* canvas_view): canvas_view_(canvas_view), is_working(*canvas_view), duckmatic_push(get_work_area()), settings(synfigapp::Main::get_selected_input_device()->settings()), prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()), opacity_hscl(0.0f, 1.01f, 0.01f) { egress_on_selection_change=true; // Set up the tool options dialog // title title_label.set_label(_("Gradient Creation")); Pango::AttrList list; Pango::AttrInt attr = Pango::Attribute::create_attr_weight(Pango::WEIGHT_BOLD); list.insert(attr); title_label.set_attributes(list); title_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // layer name id_label.set_label(_("Name:")); SPACING(name_gap, GAP); id_box.pack_start(id_label, Gtk::PACK_SHRINK); id_box.pack_start(*name_gap, Gtk::PACK_SHRINK); id_box.pack_start(id_entry, Gtk::PACK_EXPAND_WIDGET); // layer (gradient) creation label layer_types_label.set_label(_("Layer Type:")); layer_types_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // layer creation buttons LAYER_CREATION(layer_linear_gradient_togglebutton, toggle_layer_linear_gradient, ("synfig-layer_gradient_linear"), _("Create a linear gradient")); LAYER_CREATION(layer_radial_gradient_togglebutton, toggle_layer_radial_gradient, ("synfig-layer_gradient_radial"), _("Create a radial gradient")); LAYER_CREATION(layer_conical_gradient_togglebutton, toggle_layer_conical_gradient, ("synfig-layer_gradient_conical"), _("Create a conical gradient")); LAYER_CREATION(layer_spiral_gradient_togglebutton, toggle_layer_spiral_gradient, ("synfig-layer_gradient_spiral"), _("Create a spiral gradient")); SPACING(layer_types_indent, INDENTATION); layer_types_box.pack_start(*layer_types_indent, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_linear_gradient_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_radial_gradient_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_conical_gradient_togglebutton, Gtk::PACK_SHRINK); layer_types_box.pack_start(layer_spiral_gradient_togglebutton, Gtk::PACK_SHRINK); // blend method label blend_label.set_label(_("Blend Method:")); blend_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); SPACING(blend_gap, GAP); blend_box.pack_start(blend_label, Gtk::PACK_SHRINK); blend_box.pack_start(*blend_gap, Gtk::PACK_SHRINK); // blend method blend_enum.set_param_desc(ParamDesc(Color::BLEND_COMPOSITE,"blend_method") .set_local_name(_("Blend Method")) .set_description(_("Defines the blend method to be used for gradients"))); // opacity label opacity_label.set_label(_("Opacity:")); opacity_label.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER); // opacity opacity_hscl.set_digits(2); opacity_hscl.set_value_pos(Gtk::POS_LEFT); opacity_hscl.set_tooltip_text(_("Opacity")); // options table // 0, title options_table.attach(title_label, 0, 2, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0 ); // 1, name options_table.attach(id_box, 0, 2, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0 ); // 2, layer types creation options_table.attach(layer_types_label, 0, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(layer_types_box, 0, 2, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0 ); // 3, blend method options_table.attach(blend_box, 0, 1, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(blend_enum, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // 4, opacity options_table.attach(opacity_label, 0, 1, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); options_table.attach(opacity_hscl, 1, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL, 0, 0 ); // fine-tune options layout options_table.set_border_width(GAP*2); // border width options_table.set_row_spacings(GAP); // row gap options_table.set_row_spacing(0, GAP*2); // the gap between first and second row. options_table.set_row_spacing(2, 1); // row gap between label and icon of layer type options_table.set_row_spacing(6, 0); // the final row using border width of table options_table.show_all(); load_settings(); refresh_tool_options(); App::dialog_tool_options->present(); // Turn off layer clicking get_work_area()->set_allow_layer_clicks(false); get_work_area()->set_cursor(Gdk::CROSSHAIR); // clear out the ducks get_work_area()->clear_ducks(); // Refresh the work area get_work_area()->queue_draw(); get_work_area()->refresh_cursor(); // Hide the tables if they are showing get_canvas_view()->hide_tables(); // Disable the time bar //get_canvas_view()->set_sensitive_timebar(false); // Connect a signal //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateGradient_Context::on_user_click)); App::dock_toolbox->refresh(); }
Gobby::PreferencesDialog::Appearance::Appearance( const Glib::RefPtr<Gtk::Builder>& builder, Preferences& preferences) : m_scheme_list(Gtk::ListStore::create(m_scheme_columns)) { builder->get_widget_derived("toolbar-style", m_cmb_toolbar_style); builder->get_widget("font", m_btn_font); builder->get_widget("color-scheme-treeview", m_scheme_tree); const Pango::FontDescription& font = preferences.appearance.font; m_cmb_toolbar_style->set_option(preferences.appearance.toolbar_style); m_cmb_toolbar_style->add(_("Show text only"), Gtk::TOOLBAR_TEXT); m_cmb_toolbar_style->add(_("Show icons only"), Gtk::TOOLBAR_ICONS); m_cmb_toolbar_style->add(_("Show both icons and text"), Gtk::TOOLBAR_BOTH ); m_cmb_toolbar_style->add(_("Show text besides icons"), Gtk::TOOLBAR_BOTH_HORIZ ); m_btn_font->set_font_name(font.to_string()); m_conn_font.reset(new FontConnection( *m_btn_font, preferences.appearance.font)); Gtk::TreeViewColumn column_name; Gtk::CellRendererText renderer_name; column_name.pack_start(renderer_name, false); column_name.add_attribute(renderer_name.property_text(), m_scheme_columns.name); Pango::AttrList list; Pango::Attribute attr(Pango::Attribute::create_attr_weight( Pango::WEIGHT_BOLD)); list.insert(attr); renderer_name.property_attributes() = list; m_scheme_tree->append_column(column_name); m_scheme_tree->append_column(_("Scheme Description"), m_scheme_columns.description); m_scheme_tree->set_model(m_scheme_list); // Populate scheme list GtkSourceStyleSchemeManager* manager = gtk_source_style_scheme_manager_get_default(); const gchar* const* ids = gtk_source_style_scheme_manager_get_scheme_ids(manager); const Glib::ustring current_scheme = preferences.appearance.scheme_id; for (const gchar* const* id = ids; *id != NULL; ++id) { GtkSourceStyleScheme* scheme = gtk_source_style_scheme_manager_get_scheme( manager, *id); const gchar* name = gtk_source_style_scheme_get_name(scheme); const gchar* desc = gtk_source_style_scheme_get_description(scheme); Gtk::TreeIter iter = m_scheme_list->append(); (*iter)[m_scheme_columns.name] = name; (*iter)[m_scheme_columns.description] = desc; (*iter)[m_scheme_columns.scheme] = scheme; if (current_scheme == gtk_source_style_scheme_get_id(scheme)) m_scheme_tree->get_selection()->select(iter); } m_scheme_tree->get_selection()->signal_changed().connect( sigc::bind( sigc::mem_fun(*this, &Appearance::on_scheme_changed), sigc::ref(preferences))); m_scheme_list->set_sort_column(m_scheme_columns.name, Gtk::SORT_ASCENDING); }