You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/kmail/snippetdlg.cpp

128 lines
3.9 KiB

/***************************************************************************
* snippet feature from tdevelop/plugins/snippet/ *
* *
* Copyright (C) 2007 by Robert Gruber *
* rgruber@users.sourceforge.net *
* *
* 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 "snippetdlg.h"
#include <kdialog.h>
#include <klineedit.h>
#include <tdelocale.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <kpushbutton.h>
#include <ktextedit.h>
#include "kkeybutton.h"
#include "tdeactioncollection.h"
#include "tdemessagebox.h"
/*
* Constructs a SnippetDlg as a child of 'parent', with the
* name 'name' and widget flags set to 'f'.
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
SnippetDlg::SnippetDlg( TDEActionCollection* ac, TQWidget* parent, const char* name, bool modal, WFlags fl )
: SnippetDlgBase( parent, name, modal, fl ), actionCollection( ac )
{
if ( !name )
setName( "SnippetDlg" );
textLabel3 = new TQLabel( this, "textLabel3" );
keyButton = new KKeyButton( this );
connect( keyButton, TQ_SIGNAL( capturedShortcut( const TDEShortcut& ) ),
this, TQ_SLOT( slotCapturedShortcut( const TDEShortcut& ) ) );
btnAdd->setEnabled( false );
connect( snippetName, TQ_SIGNAL(textChanged(const TQString &)),
this, TQ_SLOT(slotTextChanged(const TQString &)) );
connect( snippetName, TQ_SIGNAL(returnPressed()),
this, TQ_SLOT(slotReturnPressed()) );
layout3->addWidget( textLabel3, 7, 0 );
layout3->addWidget( keyButton, 7, 1 );
// tab order
setTabOrder( snippetText, keyButton );
setTabOrder( keyButton, btnAdd );
setTabOrder( btnAdd, btnCancel );
textLabel3->setBuddy( keyButton );
languageChange();
}
/*
* Destroys the object and frees any allocated resources
*/
SnippetDlg::~SnippetDlg()
{
// no need to delete child widgets, TQt does it all for us
}
/*
* Sets the strings of the subwidgets using the current
* language.
*/
void SnippetDlg::languageChange()
{
textLabel3->setText( i18n( "Sh&ortcut:" ) );
}
static bool shortcutIsValid( const TDEActionCollection* actionCollection, const TDEShortcut &sc )
{
TDEActionPtrList actions = actionCollection->actions();
TDEActionPtrList::Iterator it( actions.begin() );
for ( ; it != actions.end(); it++ ) {
if ( (*it)->shortcut() == sc ) return false;
}
return true;
}
void SnippetDlg::slotCapturedShortcut( const TDEShortcut& sc )
{
if ( sc == keyButton->shortcut() ) return;
if ( sc.toString().isNull() ) {
// null is fine, that's reset, but sc.іsNull() will be false :/
keyButton->setShortcut( TDEShortcut::null(), false );
} else {
if( !shortcutIsValid( actionCollection, sc ) ) {
TQString msg( i18n( "The selected shortcut is already used, "
"please select a different one." ) );
KMessageBox::sorry( this, msg );
} else {
keyButton->setShortcut( sc, false );
}
}
}
void SnippetDlg::setShowShortcut( bool show )
{
textLabel3->setShown( show );
keyButton->setShown( show );
}
void SnippetDlg::slotTextChanged( const TQString &text )
{
btnAdd->setEnabled( !text.isEmpty() );
}
void SnippetDlg::slotReturnPressed()
{
if ( !snippetName->text().isEmpty() ) {
accept();
}
}
#include "snippetdlg.moc"