mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
82 lines
2.6 KiB
C++
82 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License, version 2, as
|
|
published by the Free Software Foundation.
|
|
|
|
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
|
|
*/
|
|
|
|
#include "noteactionconfig.h"
|
|
#include "notesharedglobalconfig.h"
|
|
|
|
#include <KLineEdit>
|
|
#include <KComponentData>
|
|
#include <KLocalizedString>
|
|
#include <KDialog>
|
|
|
|
#include <QLabel>
|
|
#include <QVBoxLayout>
|
|
#include <QWhatsThis>
|
|
using namespace NoteShared;
|
|
|
|
NoteActionConfig::NoteActionConfig(const KComponentData &inst, QWidget *parent )
|
|
:KCModule( inst, parent )
|
|
{
|
|
QVBoxLayout *lay = new QVBoxLayout( this );
|
|
QWidget * w = new QWidget( this );
|
|
lay->addWidget( w );
|
|
QGridLayout *layout = new QGridLayout( w );
|
|
layout->setSpacing( KDialog::spacingHint() );
|
|
layout->setMargin( 0 );
|
|
|
|
QLabel *label_MailAction = new QLabel( i18n( "&Mail action:" ), this );
|
|
layout->addWidget( label_MailAction, 0, 0 );
|
|
|
|
KLineEdit *kcfg_MailAction = new KLineEdit( this );
|
|
kcfg_MailAction->setObjectName( QLatin1String("kcfg_MailAction") );
|
|
label_MailAction->setBuddy( kcfg_MailAction );
|
|
layout->addWidget( kcfg_MailAction, 0, 1 );
|
|
|
|
QLabel *howItWorks = new QLabel(i18n( "<a href=\"whatsthis\">How does this work?</a>" ));
|
|
howItWorks->setContextMenuPolicy(Qt::NoContextMenu);
|
|
connect( howItWorks, SIGNAL(linkActivated(QString)),SLOT(slotHelpLinkClicked(QString)) );
|
|
layout->addWidget( howItWorks, 1, 0 );
|
|
|
|
addConfig( NoteShared::NoteSharedGlobalConfig::self(), w );
|
|
lay->addStretch();
|
|
load();
|
|
}
|
|
|
|
void NoteActionConfig::slotHelpLinkClicked(const QString &)
|
|
{
|
|
const QString help =
|
|
i18n( "<qt>"
|
|
"<p>You can customize command line. "
|
|
"You can use:</p>"
|
|
"<ul>"
|
|
"<li>%t returns current note title</li>"
|
|
"<li>%f returns current note text</li>"
|
|
"</ul>"
|
|
"</qt>" );
|
|
|
|
QWhatsThis::showText( QCursor::pos(), help );
|
|
}
|
|
|
|
void NoteActionConfig::save()
|
|
{
|
|
KCModule::save();
|
|
}
|
|
|
|
void NoteActionConfig::load()
|
|
{
|
|
KCModule::load();
|
|
}
|