⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kguseractions.cpp

📁 LINUX 下, 以 QT/KDE 写的档案管理员
💻 CPP
字号:
/***************************************************************************                        kguseractions.cpp  -  description                             -------------------    copyright            : (C) 2004 by Jonas B�r    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 "kguseractions.h"#include "../defaults.h"#include "../krusader.h"#include "../ActionMan/actionman.h"#include <klocale.h>#include <kpushbutton.h>#include <kdebug.h>KgUserActions::KgUserActions( bool first, QWidget* parent,  const char* name ) :  KonfiguratorPage( first, parent, name ){   QGridLayout *kgUserActionLayout = new QGridLayout( parent, 2, 1,   		0 /* margin */, 6 /* spacing */, "kgUserActionLayout" );   // ============= Info Group =============   QGroupBox *InfoGroup = createFrame( i18n( "Information" ), parent, "kgUserActionInfoGroup" );   QGridLayout *InfoGrid = createGridLayout( InfoGroup->layout() );   // terminal for the UserActions   QLabel *labelInfo = new QLabel( i18n(   		"Here you can configure settings about useractions.\n"   		"To set up, configure and manage your useractions please use ActionMan."   		), InfoGroup, "InformationLabel" );   InfoGrid->addWidget( labelInfo, 0, 0 );   KPushButton *actionmanButton = new KPushButton( i18n("Start ActionMan"), InfoGroup, "actionmanButton");   connect( actionmanButton, SIGNAL( clicked() ), SLOT( startActionMan() ) );   InfoGrid->addWidget( actionmanButton, 1, 0 );   kgUserActionLayout->addWidget( InfoGroup, 0 ,0 );   // ============= Terminal Group =============   QGroupBox *terminalGroup = createFrame( i18n( "Terminal execution" ), parent, "kgUserActionTerminalGroup" );   QGridLayout *terminalGrid = createGridLayout( terminalGroup->layout() );   // terminal for the UserActions   QLabel *labelTerminal = new QLabel( i18n( "Terminal for UserActions:" ),   		terminalGroup, "TerminalLabel" );   terminalGrid->addWidget( labelTerminal, 0, 0 );   KonfiguratorURLRequester *urlReqUserActions = createURLRequester( "UserActions",   		"Terminal", _UserActions_Terminal, terminalGroup, false );   terminalGrid->addWidget( urlReqUserActions, 0, 1 );   kgUserActionLayout->addWidget( terminalGroup, 1 ,0 );   // ============= Outputcollection Group =============   QGroupBox *outputGroup = createFrame( i18n( "Output collection" ), parent, "kgUserActionOutputGroup" );   QGridLayout *outputGrid = createGridLayout( outputGroup->layout() );   QHBox *hbox;   hbox = new QHBox( outputGroup, "HBoxNormalFont" );   new QLabel( i18n( "Normal font:" ), hbox, "NormalFontLabel" );   createFontChooser( "UserActions", "Normal Font", _UserActions_NormalFont, hbox );   createSpacer ( hbox );   outputGrid->addWidget( hbox, 2, 0 );   hbox = new QHBox( outputGroup, "HBoxFixedFont" );   new QLabel( i18n( "Font with fixed width:" ), hbox, "FixedFontLabel" );   createFontChooser( "UserActions", "Fixed Font", _UserActions_FixedFont, hbox );   createSpacer ( hbox );   outputGrid->addWidget( hbox, 3, 0 );   KonfiguratorCheckBox *useFixed = createCheckBox( "UserActions", "Use Fixed Font", _UserActions_UseFixedFont,   		i18n("Use fixed width font as default"), outputGroup );   outputGrid->addWidget( useFixed, 4, 0 );   kgUserActionLayout->addWidget( outputGroup, 2 ,0 );}void KgUserActions::startActionMan() {   ActionMan actionMan( static_cast<QWidget*>(parent()) );}#include "kguseractions.moc"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -