diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kdeui/kspelldlg.cpp | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.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/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kspelldlg.cpp')
-rw-r--r-- | kdeui/kspelldlg.cpp | 285 |
1 files changed, 285 insertions, 0 deletions
diff --git a/kdeui/kspelldlg.cpp b/kdeui/kspelldlg.cpp new file mode 100644 index 000000000..60607dd75 --- /dev/null +++ b/kdeui/kspelldlg.cpp @@ -0,0 +1,285 @@ +/* This file is part of the KDE libraries + Copyright (C) 1997 David Sweet <dsweet@kde.org> + Copyright (C) 2000 Rik Hemsley <rik@kde.org> + Copyright (C) 2000-2001 Wolfram Diestel <wolfram@steloj.de> + Copyright (C) 2003 Zack Rusin <zack@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include <qstringlist.h> +#include <qpushbutton.h> +#include <qlabel.h> +#include <qlayout.h> + +#include <kapplication.h> +#include <klocale.h> +#include <klistbox.h> +#include <kcombobox.h> +#include <klistview.h> +#include <klineedit.h> +#include <kpushbutton.h> +#include <kprogress.h> +#include <kbuttonbox.h> +#include <kdebug.h> + +#include "ksconfig.h" +#include "kspelldlg.h" +#include "kspellui.h" + +//to initially disable sorting in the suggestions listview +#define NONSORTINGCOLUMN 2 + +class KSpellDlg::KSpellDlgPrivate { +public: + KSpellUI* ui; + KSpellConfig* spellConfig; +}; + +KSpellDlg::KSpellDlg( QWidget * parent, const char * name, bool _progressbar, bool _modal ) + : KDialogBase( + parent, name, _modal, i18n("Check Spelling"), Help|Cancel|User1, + Cancel, true, i18n("&Finished") + ), + progressbar( false ) +{ + Q_UNUSED( _progressbar ); + d = new KSpellDlgPrivate; + d->ui = new KSpellUI( this ); + setMainWidget( d->ui ); + + connect( d->ui->m_replaceBtn, SIGNAL(clicked()), + this, SLOT(replace())); + connect( this, SIGNAL(ready(bool)), + d->ui->m_replaceBtn, SLOT(setEnabled(bool)) ); + + connect( d->ui->m_replaceAllBtn, SIGNAL(clicked()), this, SLOT(replaceAll())); + connect(this, SIGNAL(ready(bool)), d->ui->m_replaceAllBtn, SLOT(setEnabled(bool))); + + connect( d->ui->m_skipBtn, SIGNAL(clicked()), this, SLOT(ignore())); + connect( this, SIGNAL(ready(bool)), d->ui->m_skipBtn, SLOT(setEnabled(bool))); + + connect( d->ui->m_skipAllBtn, SIGNAL(clicked()), this, SLOT(ignoreAll())); + connect( this, SIGNAL(ready(bool)), d->ui->m_skipAllBtn, SLOT(setEnabled(bool))); + + connect( d->ui->m_addBtn, SIGNAL(clicked()), this, SLOT(add())); + connect( this, SIGNAL(ready(bool)), d->ui->m_addBtn, SLOT(setEnabled(bool))); + + connect( d->ui->m_suggestBtn, SIGNAL(clicked()), this, SLOT(suggest())); + connect( this, SIGNAL(ready(bool)), d->ui->m_suggestBtn, SLOT(setEnabled(bool)) ); + d->ui->m_suggestBtn->hide(); + + connect(this, SIGNAL(user1Clicked()), this, SLOT(stop())); + + connect( d->ui->m_replacement, SIGNAL(textChanged(const QString &)), + SLOT(textChanged(const QString &)) ); + + connect( d->ui->m_replacement, SIGNAL(returnPressed()), SLOT(replace()) ); + connect( d->ui->m_suggestions, SIGNAL(selectionChanged(QListViewItem*)), + SLOT(slotSelectionChanged(QListViewItem*)) ); + + connect( d->ui->m_suggestions, SIGNAL( doubleClicked ( QListViewItem *, const QPoint &, int ) ), + SLOT( replace() ) ); + d->spellConfig = new KSpellConfig( 0, 0 ,0, false ); + d->spellConfig->fillDicts( d->ui->m_language ); + connect( d->ui->m_language, SIGNAL(activated(int)), + d->spellConfig, SLOT(sSetDictionary(int)) ); + connect( d->spellConfig, SIGNAL(configChanged()), + SLOT(slotConfigChanged()) ); + + setHelp( "spelldlg", "kspell" ); + setMinimumSize( sizeHint() ); + emit ready( false ); +} + +KSpellDlg::~KSpellDlg() +{ + delete d->spellConfig; + delete d; +} + +void +KSpellDlg::init( const QString & _word, QStringList * _sugg ) +{ + sugg = _sugg; + word = _word; + + d->ui->m_suggestions->clear(); + d->ui->m_suggestions->setSorting( NONSORTINGCOLUMN ); + for ( QStringList::Iterator it = _sugg->begin(); it != _sugg->end(); ++it ) { + QListViewItem *item = new QListViewItem( d->ui->m_suggestions, + d->ui->m_suggestions->lastItem() ); + item->setText( 0, *it ); + } + kdDebug(750) << "KSpellDlg::init [" << word << "]" << endl; + + emit ready( true ); + + d->ui->m_unknownWord->setText( _word ); + + if ( sugg->count() == 0 ) { + d->ui->m_replacement->setText( _word ); + d->ui->m_replaceBtn->setEnabled( false ); + d->ui->m_replaceAllBtn->setEnabled( false ); + d->ui->m_suggestBtn->setEnabled( false ); + } else { + d->ui->m_replacement->setText( (*sugg)[0] ); + d->ui->m_replaceBtn->setEnabled( true ); + d->ui->m_replaceAllBtn->setEnabled( true ); + d->ui->m_suggestBtn->setEnabled( false ); + d->ui->m_suggestions->setSelected( d->ui->m_suggestions->firstChild(), true ); + } +} + +void +KSpellDlg::init( const QString& _word, QStringList* _sugg, + const QString& context ) +{ + sugg = _sugg; + word = _word; + + d->ui->m_suggestions->clear(); + d->ui->m_suggestions->setSorting( NONSORTINGCOLUMN ); + for ( QStringList::Iterator it = _sugg->begin(); it != _sugg->end(); ++it ) { + QListViewItem *item = new QListViewItem( d->ui->m_suggestions, + d->ui->m_suggestions->lastItem() ); + item->setText( 0, *it ); + } + + kdDebug(750) << "KSpellDlg::init [" << word << "]" << endl; + + emit ready( true ); + + d->ui->m_unknownWord->setText( _word ); + d->ui->m_contextLabel->setText( context ); + + if ( sugg->count() == 0 ) { + d->ui->m_replacement->setText( _word ); + d->ui->m_replaceBtn->setEnabled( false ); + d->ui->m_replaceAllBtn->setEnabled( false ); + d->ui->m_suggestBtn->setEnabled( false ); + } else { + d->ui->m_replacement->setText( (*sugg)[0] ); + d->ui->m_replaceBtn->setEnabled( true ); + d->ui->m_replaceAllBtn->setEnabled( true ); + d->ui->m_suggestBtn->setEnabled( false ); + d->ui->m_suggestions->setSelected( d->ui->m_suggestions->firstChild(), true ); + } +} + +void +KSpellDlg::slotProgress( unsigned int p ) +{ + if (!progressbar) + return; + + progbar->setValue( (int) p ); +} + +void +KSpellDlg::textChanged( const QString & ) +{ + d->ui->m_replaceBtn->setEnabled( true ); + d->ui->m_replaceAllBtn->setEnabled( true ); + d->ui->m_suggestBtn->setEnabled( true ); +} + +void +KSpellDlg::slotSelectionChanged( QListViewItem* item ) +{ + if ( item ) + d->ui->m_replacement->setText( item->text( 0 ) ); +} + +/* + exit functions + */ + +void +KSpellDlg::closeEvent( QCloseEvent * ) +{ + cancel(); +} + +void +KSpellDlg::done( int result ) +{ + emit command( result ); +} +void +KSpellDlg::ignore() +{ + newword = word; + done( KS_IGNORE ); +} + +void +KSpellDlg::ignoreAll() +{ + newword = word; + done( KS_IGNOREALL ); +} + +void +KSpellDlg::add() +{ + newword = word; + done( KS_ADD ); +} + + +void +KSpellDlg::cancel() +{ + newword = word; + done( KS_CANCEL ); +} + +void +KSpellDlg::replace() +{ + newword = d->ui->m_replacement->text(); + done( KS_REPLACE ); +} + +void +KSpellDlg::stop() +{ + newword = word; + done( KS_STOP ); +} + +void +KSpellDlg::replaceAll() +{ + newword = d->ui->m_replacement->text(); + done( KS_REPLACEALL ); +} + +void +KSpellDlg::suggest() +{ + newword = d->ui->m_replacement->text(); + done( KS_SUGGEST ); +} + +void +KSpellDlg::slotConfigChanged() +{ + d->spellConfig->writeGlobalSettings(); + done( KS_CONFIG ); +} + +#include "kspelldlg.moc" |