[Digikam-devel] [Bug 131743] Comments and tag edit widgets should retain focus when changing image
Gilles Caulier
caulier.gilles at kdemail.net
Wed Jan 3 11:48:11 GMT 2007
------- 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=131743
------- Additional Comments From caulier.gilles kdemail net 2007-01-03 12:48 -------
SVN commit 619424 by cgilles:
digikam from trunk : Image editor AddBorder Tool shortcut : use "CTRL+B" instead "SHIFT+B" to prevent conflict with new rule from Comments Text edit widget focus from right side bar.
CCBUGS: 131743
M +2 -2 digikamimageplugin_border_ui.rc
M +6 -5 imageplugin_border.cpp
--- trunk/extragear/graphics/digikamimageplugins/border/digikamimageplugin_border_ui.rc #619423:619424
@ -1,5 +1,5 @
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<kpartgui version="3" name="digikamimageplugin_border" >
+<kpartgui version="4" name="digikamimageplugin_border" >
<MenuBar>
@ -15,7 +15,7 @
</ToolBar>
<ActionProperties>
- <Action shortcut="Shift+B" name="imageplugin_border" />
+ <Action name="imageplugin_border" />
</ActionProperties>
</kpartgui>
--- trunk/extragear/graphics/digikamimageplugins/border/imageplugin_border.cpp #619423:619424
@ -1,9 +1,9 @
/* ============================================================
- * Author: Gilles Caulier <caulier dot gilles at kdemail dot net>
- * Date : 2005-01-20
+ * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Date : 2005-01-20
* Description :
*
- * Copyright 2005-2006 by Gilles Caulier
+ * Copyright 2005-2007 by Gilles Caulier
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
@ -31,6 +31,7 @
#include "bannerwidget.h"
#include "imageeffect_border.h"
#include "imageplugin_border.h"
+#include "imageplugin_border.moc"
K_EXPORT_COMPONENT_FACTORY( digikamimageplugin_border,
KGenericFactory<ImagePlugin_Border>("digikamimageplugin_border"));
@ -38,7 +39,8 @
ImagePlugin_Border::ImagePlugin_Border(QObject *parent, const char*, const QStringList &)
: Digikam::ImagePlugin(parent, "ImagePlugin_Border")
{
- m_borderAction = new KAction(i18n("Add Border..."), "bordertool", 0,
+ m_borderAction = new KAction(i18n("Add Border..."), "bordertool",
+ CTRL+Key_B,
this, SLOT(slotBorder()),
actionCollection(), "imageplugin_border");
@ -66,4 +68,3 @
delete headerFrame;
}
-#include "imageplugin_border.moc"
More information about the Digikam-devel
mailing list