Advertisement
Guest User

Untitled

a guest
May 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. m_refActionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
  2.     Gtk::RadioAction::Group toolsGroup;
  3.  
  4.     m_refActionGroup->add(
  5.     Gtk::RadioAction::create(toolsGroup, "ArrowTool", Gtk::Stock::INDEX,
  6.                  _("Select"), _("Move models, open coupled "
  7.                         "models, show dynamics of "
  8.                         "models. (F1)")),
  9.     Gtk::AccelKey("F1"),
  10.     sigc::mem_fun(mParent, &GVLE::onArrow));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement