void NotebookNoteAddin::update_menu() { // // Clear out the old list // for(std::list<Gtk::MenuItem *>::const_iterator iter = m_menu_items.begin(); iter != m_menu_items.end(); ++iter) { m_menu->remove (**iter); } m_menu_items.clear(); // // Build a new menu // // Add the "New Notebook..." Gtk::ImageMenuItem *newNotebookMenuItem = manage(new Gtk::ImageMenuItem (_("_New notebook..."), true)); newNotebookMenuItem->set_image(*manage(new Gtk::Image( IconManager::obj().get_icon(IconManager::NOTEBOOK_NEW, 16)))); newNotebookMenuItem->signal_activate() .connect(sigc::mem_fun(*this,&NotebookNoteAddin::on_new_notebook_menu_item)); newNotebookMenuItem->show (); m_menu->append (*newNotebookMenuItem); m_menu_items.push_back(newNotebookMenuItem); // Add the "(no notebook)" item at the top of the list NotebookMenuItem *noNotebookMenuItem = manage(new NotebookMenuItem (m_radio_group, get_note(), Notebook::Ptr())); noNotebookMenuItem->show_all (); m_menu->append (*noNotebookMenuItem); m_menu_items.push_back(noNotebookMenuItem); NotebookMenuItem *active_menu_item = noNotebookMenuItem; Notebook::Ptr current_notebook = NotebookManager::obj().get_notebook_from_note(get_note()); // Add in all the real notebooks std::list<NotebookMenuItem*> notebookMenuItems; get_notebook_menu_items (notebookMenuItems); if (!notebookMenuItems.empty()) { Gtk::SeparatorMenuItem *separator = manage(new Gtk::SeparatorMenuItem ()); separator->show_all (); m_menu->append (*separator); m_menu_items.push_back(separator); for(std::list<NotebookMenuItem*>::const_iterator iter = notebookMenuItems.begin(); iter != notebookMenuItems.end(); ++iter) { NotebookMenuItem* item = *iter; item->show_all (); m_menu->append (*item); m_menu_items.push_back(item); if(current_notebook == item->get_notebook()) active_menu_item = item; } } active_menu_item->set_active(true); }
void ExportToHtmlNoteAddin::on_note_opened() { Gtk::ImageMenuItem *item = manage(new Gtk::ImageMenuItem (_("Export to HTML"))); item->set_image(*manage(new Gtk::Image (Gtk::Stock::SAVE, Gtk::ICON_SIZE_MENU))); item->signal_activate().connect( sigc::mem_fun(*this, &ExportToHtmlNoteAddin::export_button_clicked)); item->show (); add_plugin_menu_item (item); }
void ActionManager::load_interface() { Gtk::UIManager::ui_merge_id id = m_ui->add_ui_from_file(DATADIR"/gnote/UIManagerLayout.xml"); DBG_ASSERT(id, "merge failed"); Gtk::Window::set_default_icon_name("gnote"); Gtk::ImageMenuItem *imageitem = (Gtk::ImageMenuItem*)m_ui->get_widget( "/MainWindowMenubar/FileMenu/FileMenuNewNotePlaceholder/NewNote"); DBG_ASSERT(imageitem, "Item not found"); if (imageitem) { imageitem->set_image(*manage(new Gtk::Image(m_newNote))); } imageitem = (Gtk::ImageMenuItem*)m_ui->get_widget ( "/TrayIconMenu/TrayNewNotePlaceholder/TrayNewNote"); DBG_ASSERT(imageitem, "Item not found"); if (imageitem) { imageitem->set_image(*manage(new Gtk::Image(m_newNote))); } }
void SeriesMenu::set_thumbnail(const Glib::RefPtr<ImagePool::Instance>& instance) { if(!instance || instance->pixels() == NULL) { return; } Gtk::ImageMenuItem* menuitem = m_menuitem[instance->series()->seriesinstanceuid()]; if(menuitem == NULL) { return; } if(menuitem->get_image() != NULL) { return; } Aeskulap::SimpleDisplay* image = manage(new Aeskulap::SimpleDisplay); image->set_image(instance); menuitem->set_image(*image); return; }
void NotebookApplicationAddin::add_menu_items(Gtk::Menu * menu, std::list<Gtk::MenuItem*> & menu_items) { remove_menu_items (menu, menu_items); NotebookNewNoteMenuItem *item; Glib::RefPtr<Gtk::TreeModel> model = NotebookManager::obj().get_notebooks(); Gtk::TreeIter iter; // Add in the "New Notebook..." menu item Gtk::ImageMenuItem *newNotebookMenuItem = manage(new Gtk::ImageMenuItem (_("New Note_book..."), true)); newNotebookMenuItem->set_image(*manage(new Gtk::Image( IconManager::obj().get_icon(IconManager::NOTEBOOK_NEW, 16)))); newNotebookMenuItem->signal_activate() .connect(sigc::mem_fun(*this, &NotebookApplicationAddin::on_new_notebook_menu_item)); newNotebookMenuItem->show_all (); menu->append (*newNotebookMenuItem); menu_items.push_back(newNotebookMenuItem); if (model->children().size() > 0) { Gtk::SeparatorMenuItem *separator = manage(new Gtk::SeparatorMenuItem ()); separator->show_all (); menu->append (*separator); menu_items.push_back(separator); iter = model->children().begin(); while (iter) { Notebook::Ptr notebook; iter->get_value(0, notebook); item = manage(new NotebookNewNoteMenuItem (notebook)); item->show_all (); menu->append (*item); menu_items.push_back(item); ++iter; } } }
void NotebookApplicationAddin::initialize () { m_actionGroup = Glib::RefPtr<Gtk::ActionGroup>(Gtk::ActionGroup::create("Notebooks")); m_actionGroup->add( Gtk::Action::create ("NewNotebookMenuAction", Gtk::Stock::NEW, _("Note_books"), _("Create a new note in a notebook"))); m_actionGroup->add( Gtk::Action::create ("NewNotebookAction", Gtk::Stock::NEW, _("New Note_book..."), _("Create a new notebook"))); m_actionGroup->add( Gtk::Action::create ("NewNotebookNoteAction", Gtk::Stock::NEW, _("_New Note"), _("Create a new note in this notebook"))); m_actionGroup->add( Gtk::Action::create ("OpenNotebookTemplateNoteAction", Gtk::Stock::OPEN, _("_Open Template Note"), _("Open this notebook's template note"))); m_actionGroup->add( Gtk::Action::create ("DeleteNotebookAction", Gtk::Stock::DELETE, _("Delete Note_book"), _("Delete the selected notebook"))); m_actionGroup->add( Gtk::Action::create ("TrayNewNotebookMenuAction", Gtk::Stock::NEW, _("Notebooks"), _("Create a new note in a notebook"))); ActionManager & am(ActionManager::obj()); m_notebookUi = am.get_ui()->add_ui_from_string (uixml); am.get_ui()->insert_action_group (m_actionGroup, 0); Gtk::MenuItem *item = dynamic_cast<Gtk::MenuItem*>( am.get_widget ("/TrayIconMenu/TrayNewNotePlaceholder/TrayNewNotebookMenu")); if (item) { Gtk::ImageMenuItem *image_item = dynamic_cast<Gtk::ImageMenuItem*>(item); if (image_item) { image_item->set_image(*manage(new Gtk::Image(m_notebookIcon))); } m_trayNotebookMenu = manage(new Gtk::Menu()); item->set_submenu(*m_trayNotebookMenu); m_trayNotebookMenu->signal_show() .connect(sigc::mem_fun(*this, &NotebookApplicationAddin::on_tray_notebook_menu_shown)); m_trayNotebookMenu->signal_hide() .connect(sigc::mem_fun(*this, &NotebookApplicationAddin::on_tray_notebook_menu_hidden)); } Gtk::ImageMenuItem *imageitem = dynamic_cast<Gtk::ImageMenuItem*>( am.get_widget ("/MainWindowMenubar/FileMenu/FileMenuNewNotePlaceholder/NewNotebookMenu")); if (imageitem) { imageitem->set_image(*manage(new Gtk::Image(m_notebookIcon))); m_mainWindowNotebookMenu = manage(new Gtk::Menu ()); imageitem->set_submenu(*m_mainWindowNotebookMenu); m_mainWindowNotebookMenu->signal_show() .connect(sigc::mem_fun(*this, &NotebookApplicationAddin::on_new_notebook_menu_shown)); m_mainWindowNotebookMenu->signal_hide() .connect(sigc::mem_fun(*this, &NotebookApplicationAddin::on_new_notebook_menu_hidden)); } imageitem = dynamic_cast<Gtk::ImageMenuItem*>( am.get_widget ("/NotebooksTreeContextMenu/NewNotebookNote")); if (imageitem) { imageitem->set_image(*manage(new Gtk::Image(am.get_new_note()))); } NoteManager & nm(Gnote::obj().default_note_manager()); for(Note::List::const_iterator iter = nm.get_notes().begin(); iter != nm.get_notes().end(); ++iter) { const Note::Ptr & note(*iter); note->signal_tag_added().connect( sigc::mem_fun(*this, &NotebookApplicationAddin::on_tag_added)); note->signal_tag_removed().connect( sigc::mem_fun(*this, &NotebookApplicationAddin::on_tag_removed)); } nm.signal_note_added.connect( sigc::mem_fun(*this, &NotebookApplicationAddin::on_note_added)); nm.signal_note_deleted.connect( sigc::mem_fun(*this, &NotebookApplicationAddin::on_note_deleted)); m_initialized = true; }
void Gobby::BrowserContextCommands::on_populate_popup(Gtk::Menu* menu) { // TODO: Can this happen? Should we close the old popup here? g_assert(m_popup_menu == NULL); // Cancel previous attempts m_watch.reset(NULL); m_dialog.reset(NULL); InfBrowser* browser; InfBrowserIter iter; if(!m_browser.get_selected_browser(&browser)) return; if(!m_browser.get_selected_iter(browser, &iter)) { InfBrowserStatus browser_status; g_object_get(G_OBJECT(browser), "status", &browser_status, NULL); if(browser_status == INF_BROWSER_CLOSED) { Gtk::ImageMenuItem *remove_item = Gtk::manage( new Gtk::ImageMenuItem(_("_Remove"), true)); remove_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::CLOSE, Gtk::ICON_SIZE_MENU))); remove_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_remove), browser)); remove_item->show(); menu->append(*remove_item); } return; } InfBrowserIter dummy_iter = iter; bool is_subdirectory = inf_browser_is_subdirectory(browser, &iter); bool is_toplevel = !inf_browser_get_parent(browser, &dummy_iter); // Watch the node, and close the popup menu when the node // it refers to is removed. m_watch.reset(new NodeWatch(browser, &iter)); m_watch->signal_node_removed().connect(sigc::mem_fun( *this, &BrowserContextCommands::on_menu_node_removed)); menu->signal_deactivate().connect(sigc::mem_fun( *this, &BrowserContextCommands::on_menu_deactivate)); bool have_toplevel_entries = false; // Add "Disconnect" menu option if the connection // item has been clicked at if(is_toplevel && INFC_IS_BROWSER(browser)) { Gtk::ImageMenuItem* disconnect_item = Gtk::manage( new Gtk::ImageMenuItem( _("_Disconnect from Server"), true)); disconnect_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::DISCONNECT, Gtk::ICON_SIZE_MENU))); disconnect_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_disconnect), INFC_BROWSER(browser))); disconnect_item->show(); menu->append(*disconnect_item); have_toplevel_entries = true; } // Add create account option if the connection item has been clicked at if(is_toplevel) { const InfAclAccount* account = inf_browser_get_acl_local_account(browser); const InfAclAccountId acc_id = (account != NULL) ? account->id : 0; InfAclMask mask; inf_acl_mask_set1(&mask, INF_ACL_CAN_CREATE_ACCOUNT); inf_browser_check_acl(browser, &iter, acc_id, &mask, &mask); if(inf_acl_mask_has(&mask, INF_ACL_CAN_CREATE_ACCOUNT)) { Gtk::Image* image = Gtk::manage(new Gtk::Image); image->set_from_icon_name("application-certificate", Gtk::ICON_SIZE_MENU); Gtk::ImageMenuItem* item = Gtk::manage(new Gtk::ImageMenuItem( _("Create _Account..."), true)); item->set_image(*image); item->signal_activate().connect(sigc::bind( sigc::mem_fun( *this, &BrowserContextCommands:: on_create_account), browser)); item->show(); menu->append(*item); have_toplevel_entries = true; } } // Separator, if we have entries dedicated to the browser itself if(have_toplevel_entries) { Gtk::SeparatorMenuItem* sep_item = Gtk::manage(new Gtk::SeparatorMenuItem); sep_item->show(); menu->append(*sep_item); } // Create Document Gtk::ImageMenuItem* new_document_item = Gtk::manage( new Gtk::ImageMenuItem(_("Create Do_cument..."), true)); new_document_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::NEW, Gtk::ICON_SIZE_MENU))); new_document_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_new), browser, iter, false)); new_document_item->set_sensitive(is_subdirectory); new_document_item->show(); menu->append(*new_document_item); // Create Directory // Check whether we have the folder-new icon, fall back to // Stock::DIRECTORY otherwise Glib::RefPtr<Gdk::Screen> screen = menu->get_screen(); Glib::RefPtr<Gtk::IconTheme> icon_theme( Gtk::IconTheme::get_for_screen(screen)); Gtk::Image* new_directory_image = Gtk::manage(new Gtk::Image); if(icon_theme->lookup_icon("folder-new", Gtk::ICON_SIZE_MENU, Gtk::ICON_LOOKUP_USE_BUILTIN)) { new_directory_image->set_from_icon_name( "folder-new", Gtk::ICON_SIZE_MENU); } else { new_directory_image->set( Gtk::Stock::DIRECTORY, Gtk::ICON_SIZE_MENU); } Gtk::ImageMenuItem* new_directory_item = Gtk::manage( new Gtk::ImageMenuItem(_("Create Di_rectory..."), true)); new_directory_item->set_image(*new_directory_image); new_directory_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_new), browser, iter, true)); new_directory_item->set_sensitive(is_subdirectory); new_directory_item->show(); menu->append(*new_directory_item); // Open Document Gtk::ImageMenuItem* open_document_item = Gtk::manage( new Gtk::ImageMenuItem(_("_Open Document..."), true)); open_document_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::OPEN, Gtk::ICON_SIZE_MENU))); open_document_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_open), browser, iter)); open_document_item->set_sensitive(is_subdirectory); open_document_item->show(); menu->append(*open_document_item); // Separator Gtk::SeparatorMenuItem* sep_item = Gtk::manage(new Gtk::SeparatorMenuItem); sep_item->show(); menu->append(*sep_item); // Permissions Gtk::ImageMenuItem* permissions_item = Gtk::manage( new Gtk::ImageMenuItem(_("_Permissions..."), true)); permissions_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::PROPERTIES, Gtk::ICON_SIZE_MENU))); permissions_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_permissions), browser, iter)); permissions_item->show(); menu->append(*permissions_item); // Delete Gtk::ImageMenuItem* delete_item = Gtk::manage( new Gtk::ImageMenuItem(_("D_elete"), true)); delete_item->set_image(*Gtk::manage(new Gtk::Image( Gtk::Stock::DELETE, Gtk::ICON_SIZE_MENU))); delete_item->signal_activate().connect(sigc::bind( sigc::mem_fun(*this, &BrowserContextCommands::on_delete), browser, iter)); delete_item->set_sensitive(!is_toplevel); delete_item->show(); menu->append(*delete_item); m_popup_menu = menu; menu->signal_selection_done().connect( sigc::mem_fun( *this, &BrowserContextCommands::on_popdown)); }