Lines Matching defs:button
198 Gtk::Button* button;
232 button = Gtk::manage(new Gtk::Button());
233 button->add(*Gtk::manage(Glib::wrap(
235 button->set_tooltip_text(_("Display more icons in row."));
236 button->set_relief( Gtk::RELIEF_NONE );
237 button->set_focus_on_click( false );
238 button->signal_clicked().connect(sigc::mem_fun(*this, &SymbolsDialog::packmore));
239 tools->pack_start(* button, Gtk::PACK_SHRINK);
241 button = Gtk::manage(new Gtk::Button());
242 button->add(*Gtk::manage(Glib::wrap(
244 button->set_tooltip_text(_("Display fewer icons in row."));
245 button->set_relief( Gtk::RELIEF_NONE );
246 button->set_focus_on_click( false );
247 button->signal_clicked().connect(sigc::mem_fun(*this, &SymbolsDialog::packless));
248 tools->pack_start(* button, Gtk::PACK_SHRINK);