------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=121651 Summary: export menu not available in context menu from album Product: digikam Version: unspecified Platform: Fedora RPMs OS/Version: Linux Status: UNCONFIRMED Severity: wishlist Priority: NOR Component: general AssignedTo: digikam-devel kde org ReportedBy: Matthieu.Moy imag fr Version: 0.8 (using KDE KDE 3.5.1KDE 3.4.2KDE 3.4.2) Installed from: Fedora RPMs00Fedora RPMs In the Album menu from the menubar, export appears just next to import, which is nice. Why isn't this the case for the context menu obtained by right-clicking on an album? _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=121651 ------- Additional Comments From caulier.gilles free fr 2006-02-09 16:11 ------- Because this option have been removed since a long time from album content menu to reduce menu size. If this option is always availab from Album context menu then we have forget to remove it (:=))) Any viewpoint about this point ? Gilles Caulier _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Matthieu Moy
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=121651 ------- Additional Comments From Matthieu.Moy imag fr 2006-02-09 16:20 ------- Well, to export an album, I want to click on this album. Clicking on the album, and then moving up to the menubar doesn't seem very natural. In fact, I can see no reason to have the context menu different from the Album menu of the menubar (except the global option like "quit", which have actually nothing to do in an "Album" menu - but that you expect at the end of the first item of the menubar for some reason). Furthermore, for me, export is the dual of import. So, wherever I see "import", I want to see an "export" just beside (well, like in the Album menu from the menubar). _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Matthieu Moy
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=121651 caulier.gilles free fr changed: What |Removed |Added ---------------------------------------------------------------------------- Component|general |Albums GUI _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Matthieu Moy
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=121651 caulier.gilles kdemail net changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From caulier.gilles kdemail net 2006-12-11 14:29 ------- SVN commit 612444 by cgilles: digikam from trunk : add Export menu into Album context pop-up menu. BUG: 121651 M +14 -0 albumfolderview.cpp M +5 -0 digikamapp.cpp M +1 -0 digikamapp.h --- trunk/extragear/graphics/digikam/digikam/albumfolderview.cpp #612443:612444 @ -414,6 +414,7 @ void AlbumFolderView::slotContextMenu(QListViewItem *listitem, const QPoint &, int) { KActionMenu menuImport(i18n("Import")); + KActionMenu menuExport(i18n("Export")); KActionMenu menuKIPIBatch(i18n("Batch Processes")); KPopupMenu popmenu(this); @ -460,6 +461,19 @ menuImport.plug(&popmenu); } + // Add All Export Actions + const QPtrList<KAction> exportActions = DigikamApp::getinstance()->menuExportActions(); + if(!exportActions.isEmpty()) + { + QPtrListIterator<KAction> it4(exportActions); + while((action = it4.current())) + { + menuExport.insert(action); + ++it4; + } + menuExport.plug(&popmenu); + } + // Add KIPI Batch processes plugins Actions const QPtrList<KAction>& batchActions = DigikamApp::getinstance()->menuBatchActions(); if(!batchActions.isEmpty()) --- trunk/extragear/graphics/digikam/digikam/digikamapp.cpp #612443:612444 @ -283,6 +283,11 @ return importMenu; } +const QPtrList<KAction> DigikamApp::menuExportActions() +{ + return m_kipiFileActionsExport; +} + void DigikamApp::autoDetect() { // Called from main if command line option is set --- trunk/extragear/graphics/digikam/digikam/digikamapp.h #612443:612444 @ -90,6 +90,7 @ const QPtrList<KAction>& menuAlbumActions(); const QPtrList<KAction> menuImportActions(); + const QPtrList<KAction> menuExportActions(); void autoDetect(); void downloadFrom(const QString &cameraGuiPath); _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Free forum by Nabble | Edit this page |