Gtk::Widget *FileSystemSyncServiceAddin::create_preferences_control(EventHandler requiredPrefChanged) { Gtk::Table *table = new Gtk::Table(1, 2, false); table->set_row_spacings(5); table->set_col_spacings(10); // Read settings out of gconf std::string syncPath; if(get_config_settings(syncPath) == false) { syncPath = ""; } Gtk::Label *l = new Gtk::Label(_("_Folder Path:"), true); l->property_xalign() = 1; table->attach(*l, 0, 1, 0, 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0); m_path_button = new Gtk::FileChooserButton(_("Select Synchronization Folder..."), Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER); m_path_button->signal_current_folder_changed().connect(requiredPrefChanged); l->set_mnemonic_widget(*m_path_button); m_path_button->set_filename(syncPath); table->attach(*m_path_button, 1, 2, 0, 1, Gtk::EXPAND | Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0); table->show_all(); return table; }
Gtk::Widget *WebDavSyncServiceAddin::create_preferences_control(EventHandler requiredPrefChanged) { Gtk::Table *table = new Gtk::Table(3, 2, false); table->set_row_spacings(5); table->set_col_spacings(10); // Read settings out of gconf Glib::ustring url, username, password; get_config_settings(url, username, password); m_url_entry = new Gtk::Entry(); m_url_entry->set_text(url); m_url_entry->signal_changed().connect(requiredPrefChanged); add_row(table, m_url_entry, _("_URL:"), 0); m_username_entry = new Gtk::Entry(); m_username_entry->set_text(username); m_username_entry->signal_changed().connect(requiredPrefChanged); add_row(table, m_username_entry, _("User_name:"), 1); m_password_entry = new Gtk::Entry(); m_password_entry->set_text(password); m_password_entry->set_visibility(false); m_password_entry->signal_changed().connect(requiredPrefChanged); add_row(table, m_password_entry, _("_Password:"), 2); table->set_hexpand(true); table->set_vexpand(false); table->show_all(); return table; }
studio::Dock_Info::Dock_Info() :Dock_CanvasSpecific("info",_("Info"),Gtk::StockID("synfig-info")) { set_use_scrolled(false); Gtk::Table *table = manage(new Gtk::Table); //pos labels table->attach(*manage(new Gtk::Label(_("X: "))),0,1,0,2,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(*manage(new Gtk::Label(_("Y: "))),0,1,2,4,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); //pos table->attach(x,1,2,0,2,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(y,1,2,2,4,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); //separator table->attach(*manage(new Gtk::VSeparator),2,3,0,4,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); //color label table->attach(*manage(new Gtk::Label(_("R: "))),3,4,0,1,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(*manage(new Gtk::Label(_("G: "))),3,4,1,2,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(*manage(new Gtk::Label(_("B: "))),3,4,2,3,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(*manage(new Gtk::Label(_("A: "))),3,4,3,4,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); //color table->attach(r,4,5,0,1,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(g,4,5,1,2,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(b,4,5,2,3,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(a,4,5,3,4,Gtk::EXPAND|Gtk::FILL,Gtk::SHRINK|Gtk::FILL); table->attach(*manage(new Gtk::Label),0,5,4,5); table->show_all(); add(*table); }
void StateBrush_Context::refresh_tool_options() { brush_buttons.clear(); App::dialog_tool_options->clear(); App::dialog_tool_options->set_local_name(_("Brush Tool")); App::dialog_tool_options->set_name("brush"); // create container Gtk::Table *table = Gtk::manage(new Gtk::Table(1, 2, false)); // create options table->attach(eraser_checkbox, 0, 1, 0, 1, Gtk::FILL, Gtk::SHRINK); // create brushes container widget int cols = 4; Gtk::Table *brushes_table = Gtk::manage(new Gtk::Table(1, cols)); // load brushes // scan directories std::set<String> files; for(std::set<String>::const_iterator i = paths.begin(); i != paths.end(); ++i) scan_directory(*i, 1, files); // load files int col = 0; int row = 0; Gtk::ToggleButton *first_button = NULL; Gtk::IconSize iconsize = Gtk::ICON_SIZE_LARGE_TOOLBAR; for(std::set<String>::const_iterator i = files.begin(); i != files.end(); ++i) { if (!brush_buttons.count(*i) && filename_extension(*i) == ".myb") { const String &brush_file = *i; const String icon_file = filename_sans_extension(brush_file) + "_prev.png"; if (files.count(icon_file)) { // create button Gtk::ToggleButton *button = brush_buttons[*i] = Gtk::manage(new Gtk::ToggleButton()); Glib::RefPtr<Gdk::Pixbuf> pixbuf, pixbuf_scaled; pixbuf = Gdk::Pixbuf::create_from_file(icon_file); pixbuf_scaled = pixbuf->scale_simple(48, 48, Gdk::INTERP_BILINEAR); button->set_image(*Gtk::manage(new Gtk::Image(pixbuf_scaled))); button->set_relief(Gtk::RELIEF_NONE); button->signal_toggled().connect( sigc::bind(sigc::mem_fun(*this, &StateBrush_Context::select_brush), button, brush_file) ); if (first_button == NULL) first_button = button; if (col >= cols) { // add row col = 0; ++row; brushes_table->resize(row + 1, cols); } // add button brushes_table->attach(*button, col, col+1, row, row+1); ++col; } } } Gtk::ScrolledWindow *brushes_scroll = Gtk::manage(new Gtk::ScrolledWindow()); brushes_scroll->add(*brushes_table); table->attach(*brushes_scroll, 0, 1, 1, 2); table->show_all(); App::dialog_tool_options->add(*table); // select first brush if (first_button != NULL) first_button->set_active(true); }