Bug 145076 - Ctrl-Shift-S does not perform 'Save as' action
Summary: Ctrl-Shift-S does not perform 'Save as' action
Status: RESOLVED NOT A BUG
Alias: None
Product: digikam
Classification: Applications
Component: Usability-Keyboard (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-05-05 20:39 UTC by Mikolaj Machowski
Modified: 2022-01-13 21:46 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 7.5.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mikolaj Machowski 2007-05-05 20:39:30 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources
OS:                Linux

Ctrl-Shift-S does not perform 'Save as' action which is standard for that shortcut according to KDE HIG.
Comment 1 caulier.gilles 2007-05-21 10:06:57 UTC
And digiKam image editor use the KStdAction::saveAs() method for that (:=))) :

void EditorWindow::setupStandardActions()
{
...
    m_saveAsAction = KStdAction::saveAs(this, SLOT(slotSaveAs()),                                        actionCollection(), "editorwindow_saveas");
...
}

Look like it's non-coherent... With KStdAction methods, we cannot give a shortcut. All is given by KDE API (to be homogenous and simplify the devel. life)...

A solution is to use KAction instead

Gilles
Comment 2 caulier.gilles 2007-05-21 11:09:39 UTC
Mik,

Like this standard SaveAs action is defined by KDE API, I recommend you to move this bug report to KDE (I don't know where exactly)... Like this, all others applications witch use it will be fixed.

The method in KDE API is given below :

http://api.kde.org/cvs-api/kdelibs-apidocs/kdeui/html/namespaceKStdAction.html#a70

Gilles
Comment 3 caulier.gilles 2007-05-21 12:58:42 UTC
Mik,

Please report this problem in KDE core part of bugzilla. Thanks in advance

Gilles