diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-28 22:44:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-31 23:30:34 +0900 |
commit | f9abd9d505434c9244c03eac708e29a0ca042f6b (patch) | |
tree | 30a197ab4c413849188bc131ff859212e636c821 /src/app/GUI/kfnkeys.cpp | |
parent | 14d42d284de233f9937becf3fc9ee0dabede3b21 (diff) | |
download | krusader-r14.1.x.tar.gz krusader-r14.1.x.zip |
Restructure source foldersr14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 086012dcad8a976a0dabbb7cbc20c9cb612cdfa9)
Diffstat (limited to 'src/app/GUI/kfnkeys.cpp')
-rw-r--r-- | src/app/GUI/kfnkeys.cpp | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/src/app/GUI/kfnkeys.cpp b/src/app/GUI/kfnkeys.cpp new file mode 100644 index 0000000..1db34c6 --- /dev/null +++ b/src/app/GUI/kfnkeys.cpp @@ -0,0 +1,133 @@ +/*************************************************************************** + kfnkeys.cpp + ------------------- + copyright : (C) 2000 by Shie Erlich & Rafi Yanai + e-mail : krusader@users.sourceforge.net + web site : http://krusader.sourceforge.net + --------------------------------------------------------------------------- + Description + *************************************************************************** + + A + + db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. + 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D + 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' + 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b + 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. + YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD + + S o u r c e F i l e + + *************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#include <tqtooltip.h> +#include <tdelocale.h> +#include <tdeglobalsettings.h> +#include <tqfontmetrics.h> +#include <tqwhatsthis.h> +#include "kfnkeys.h" +#include "../krusader.h" +#include "../defaults.h" +#include "../krslots.h" + +KFnKeys::KFnKeys(TQWidget *parent, char *name): TQWidget(parent,name) { + krConfig->setGroup("Look&Feel"); + //////////////////////////////// +#define SETUP(TARGET) {\ + TARGET->setMinimumWidth(45);\ +} + + setFont( TDEGlobalSettings::generalFont() ); + layout=new TQGridLayout(this,1,9); // 9 keys + F2=new TQPushButton( i18n("F2 Term ") ,this); + TQToolTip::add( F2, "<qt>" + i18n( "<p>Open terminal in current directory.</p>" + "<p>The terminal can be defined in Konfigurator, " + "default is <b>konsole</b>.</p>" ) + "</qt>" ); + connect(F2,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(terminal())); + SETUP(F2); + + F3=new TQPushButton( i18n("F3 View ") ,this); + TQToolTip::add( F3, i18n( "Open file in viewer." ) ); + connect(F3,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(view())); + SETUP(F3); + + F4=new TQPushButton( i18n("F4 Edit ") ,this); + TQToolTip::add( F4, "<qt>" + i18n( "<p>Edit file.</p>" + "<p>The editor can be defined in Konfigurator, " + "default is <b>internal editor</b>.</p>" ) + "</qt>" ); + connect(F4,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(edit())); + SETUP(F4); + + F5=new TQPushButton( i18n("F5 Copy ") ,this); + TQToolTip::add( F5, i18n( "Copy file from one panel to the other." ) ); + connect(F5,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(copyFiles())); + SETUP(F5); + + F6=new TQPushButton( i18n("F6 Move") ,this); + TQToolTip::add( F6, i18n( "Move file from one panel to the other." ) ); + connect(F6,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(moveFiles())); + SETUP(F6); + + F7=new TQPushButton( i18n("F7 Mkdir ") ,this); + TQToolTip::add( F7, i18n( "Create directory in current panel." ) ); + connect(F7,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(mkdir())); + SETUP(F7); + + F8=new TQPushButton( i18n("F8 Delete") ,this); + TQToolTip::add( F8, i18n( "Delete file, directory, etc." ) ); + connect(F8,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(deleteFiles())); + SETUP(F8); + + F9=new TQPushButton( i18n("F9 Rename") ,this); + TQToolTip::add( F9, i18n( "Rename file, directory, etc." ) ); + connect(F9,TQ_SIGNAL(clicked()), SLOTS, TQ_SLOT(rename())); + SETUP(F9); + + F10=new TQPushButton( i18n("F10 Quit ") ,this); + TQToolTip::add( F10, i18n( "Quit Krusader." ) ); + connect(F10,TQ_SIGNAL(clicked()),krApp, TQ_SLOT(slotClose())); + SETUP(F10); + + // set a tighter box around the keys + int h = TQFontMetrics(F2->font()).height()+2; + F2->setMaximumHeight(h); F3->setMaximumHeight(h); + F4->setMaximumHeight(h); F5->setMaximumHeight(h); + F6->setMaximumHeight(h); F7->setMaximumHeight(h); + F8->setMaximumHeight(h); F9->setMaximumHeight(h); + F10->setMaximumHeight(h); + + layout->addWidget(F2,0,0); + layout->addWidget(F3,0,1); + layout->addWidget(F4,0,2); + layout->addWidget(F5,0,3); + layout->addWidget(F6,0,4); + layout->addWidget(F7,0,5); + layout->addWidget(F8,0,6); + layout->addWidget(F9,0,7); + layout->addWidget(F10,0,8); + + layout->activate(); +} + +void KFnKeys::updateShortcuts() { + F2->setText(krF2->shortcut().toString() + i18n(" Term")); + F3->setText(krF3->shortcut().toString() + i18n(" View")); + F4->setText(krF4->shortcut().toString() + i18n(" Edit")); + F5->setText(krF5->shortcut().toString() + i18n(" Copy")); + F6->setText(krF6->shortcut().toString() + i18n(" Move")); + F7->setText(krF7->shortcut().toString() + i18n(" Mkdir")); + F8->setText(krF8->shortcut().toString() + i18n(" Delete")); + F9->setText(krF9->shortcut().toString() + i18n(" Rename")); + F10->setText(krF10->shortcut().toString() + i18n(" Quit")); +} + +#include "kfnkeys.moc" + |