示例#1
0
 ActionManager::ActionManager()
   : m_main_window_actions(Gtk::ActionGroup::create("MainWindow"))
 {
   populate_action_groups();
   make_app_actions();
   make_app_menu_items();
 }
示例#2
0
 ActionManager::ActionManager()
   : m_ui(Gtk::UIManager::create())
   , m_main_window_actions(Gtk::ActionGroup::create("MainWindow"))
 {
   populate_action_groups();
   m_newNote = utils::get_icon("note-new", 16);
   DBG_ASSERT(m_newNote, "note-new icon not found");
 }