summaryrefslogtreecommitdiffstats
path: root/kmail/foldershortcutdialog.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /kmail/foldershortcutdialog.cpp
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/foldershortcutdialog.cpp')
-rw-r--r--kmail/foldershortcutdialog.cpp108
1 files changed, 108 insertions, 0 deletions
diff --git a/kmail/foldershortcutdialog.cpp b/kmail/foldershortcutdialog.cpp
new file mode 100644
index 00000000..f6b1cf92
--- /dev/null
+++ b/kmail/foldershortcutdialog.cpp
@@ -0,0 +1,108 @@
+/*******************************************************************************
+**
+** Filename : foldershortcutdialog.cpp
+** Created on : 09 October, 2004
+** Copyright : (c) 2004 Till Adam
+** Email : adam@kde.org
+**
+*******************************************************************************/
+
+/*******************************************************************************
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**
+** In addition, as a special exception, the copyright holders give
+** permission to link the code of this program with any edition of
+** the Qt library by Trolltech AS, Norway (or with modified versions
+** of Qt that use the same license as Qt), and distribute linked
+** combinations including the two. You must obey the GNU General
+** Public License in all respects for all of the code used other than
+** Qt. If you modify this file, you may extend this exception to
+** your version of the file, but you are not obligated to do so. If
+** you do not wish to do so, delete this exception statement from
+** your version.
+**
+*******************************************************************************/
+
+#include <qlabel.h>
+#include <qvbox.h>
+#include <qvgroupbox.h>
+#include <qwhatsthis.h>
+
+#include <kkeybutton.h>
+#include <klocale.h>
+#include <kmessagebox.h>
+
+#include "kmmainwidget.h"
+#include "foldershortcutdialog.h"
+#include "kmfolder.h"
+
+using namespace KMail;
+
+FolderShortcutDialog::FolderShortcutDialog( KMFolder *folder,
+ KMMainWidget *mainwidget,
+ QWidget *parent,
+ const char *name )
+: KDialogBase( parent, name, true,
+ i18n( "Shortcut for Folder %1" ).arg( folder->label() ),
+ KDialogBase::Ok | KDialogBase::Cancel ),
+ mFolder( folder ), mMainWidget( mainwidget )
+{
+ QVBox *box = makeVBoxMainWidget();
+ QVGroupBox *gb = new QVGroupBox( i18n("Select Shortcut for Folder"), box );
+ QWhatsThis::add( gb, i18n( "<qt>To choose a key or a combination "
+ "of keys which select the current folder, "
+ "click the button below and then press the key(s) "
+ "you wish to associate with this folder.</qt>" ) );
+ QHBox *hb = new QHBox( gb );
+ new QWidget(hb);
+ mKeyButton = new KKeyButton( hb, "FolderShortcutSelector" );
+ new QWidget(hb);
+
+ connect( mKeyButton, SIGNAL( capturedShortcut( const KShortcut& ) ),
+ this, SLOT( slotCapturedShortcut( const KShortcut& ) ) );
+ mKeyButton->setShortcut( folder->shortcut(), false );
+}
+
+FolderShortcutDialog::~FolderShortcutDialog()
+{
+}
+
+void FolderShortcutDialog::slotCapturedShortcut( const KShortcut& sc )
+{
+ if ( sc == mKeyButton->shortcut() ) return;
+ if ( sc.toString().isNull() ) {
+ // null is fine, that's reset, but sc.Ń–sNull() will be false :/
+ mKeyButton->setShortcut( KShortcut::null(), false );
+ } else {
+ if( !mMainWidget->shortcutIsValid( sc ) ) {
+ QString msg( i18n( "The selected shortcut is already used, "
+ "please select a different one." ) );
+ KMessageBox::sorry( mMainWidget, msg );
+ } else {
+ mKeyButton->setShortcut( sc, false );
+ }
+ }
+}
+
+void FolderShortcutDialog::slotOk()
+{
+ mFolder->setShortcut( mKeyButton->shortcut() );
+ KDialogBase::slotOk();
+}
+
+#include "foldershortcutdialog.moc"
+
+