/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt Linguist of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the Technology Preview License Agreement accompanying ** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ /* TRANSLATOR PhraseBookBox Go to Phrase > Edit Phrase Book... The dialog that pops up is a PhraseBookBox. */ #include "phrasebookbox.h" #include "translationsettingsdialog.h" #include #include #include #include #include QT_BEGIN_NAMESPACE PhraseBookBox::PhraseBookBox(PhraseBook *phraseBook, QWidget *parent) : QDialog(parent), m_phraseBook(phraseBook), m_translationSettingsDialog(0) { // This definition needs to be within class context for lupdate to find it #define NewPhrase tr("(New Entry)") setupUi(this); setWindowTitle(tr("%1[*] - Qt Linguist").arg(m_phraseBook->friendlyPhraseBookName())); setWindowModified(m_phraseBook->isModified()); phrMdl = new PhraseModel(this); m_sortedPhraseModel = new QSortFilterProxyModel(this); m_sortedPhraseModel->setSortCaseSensitivity(Qt::CaseInsensitive); m_sortedPhraseModel->setSortLocaleAware(true); m_sortedPhraseModel->setDynamicSortFilter(true); m_sortedPhraseModel->setSourceModel(phrMdl); phraseList->setModel(m_sortedPhraseModel); phraseList->header()->setDefaultSectionSize(150); phraseList->header()->setResizeMode(QHeaderView::Interactive); connect(sourceLed, SIGNAL(textChanged(QString)), this, SLOT(sourceChanged(QString))); connect(targetLed, SIGNAL(textChanged(QString)), this, SLOT(targetChanged(QString))); connect(definitionLed, SIGNAL(textChanged(QString)), this, SLOT(definitionChanged(QString))); connect(phraseList->selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(selectionChanged())); connect(newBut, SIGNAL(clicked()), this, SLOT(newPhrase())); connect(removeBut, SIGNAL(clicked()), this, SLOT(removePhrase())); connect(settingsBut, SIGNAL(clicked()), this, SLOT(settings())); connect(saveBut, SIGNAL(clicked()), this, SLOT(save())); connect(m_phraseBook, SIGNAL(modifiedChanged(bool)), this, SLOT(setWindowModified(bool))); sourceLed->installEventFilter(this); targetLed->installEventFilter(this); definitionLed->installEventFilter(this); foreach (Phrase *p, phraseBook->phrases()) phrMdl->addPhrase(p); phraseList->sortByColumn(0, Qt::AscendingOrder); enableDisable(); } bool PhraseBookBox::eventFilter(QObject *obj, QEvent *event) { if (event->type() == QEvent::KeyPress && (obj == sourceLed || obj == targetLed || obj == definitionLed)) { const QKeyEvent *keyEvent = static_cast(event); const int key = keyEvent->key(); switch (key) { case Qt::Key_Down: case Qt::Key_Up: case Qt::Key_PageDown: case Qt::Key_PageUp: return QApplication::sendEvent(phraseList, event); } } return QDialog::eventFilter(obj, event); } void PhraseBookBox::newPhrase() { Phrase *p = new Phrase(); p->setSource(NewPhrase); m_phraseBook->append(p); selectItem(phrMdl->addPhrase(p)); } void PhraseBookBox::removePhrase() { QModelIndex index = currentPhraseIndex(); Phrase *phrase = phrMdl->phrase(index); m_phraseBook->remove(phrase); phrMdl->removePhrase(index); delete phrase; } void PhraseBookBox::settings() { if (!m_translationSettingsDialog) m_translationSettingsDialog = new TranslationSettingsDialog(this); m_translationSettingsDialog->setPhraseBook(m_phraseBook); m_translationSettingsDialog->exec(); } void PhraseBookBox::save() { const QString &fileName = m_phraseBook->fileName(); if (!m_phraseBook->save(fileName)) QMessageBox::warning(this, tr("Qt Linguist"), tr("Cannot save phrase book '%1'.").arg(fileName)); } void PhraseBookBox::sourceChanged(const QString& source) { QModelIndex index = currentPhraseIndex(); if (index.isValid()) phrMdl->setData(phrMdl->index(index.row(), 0), source); } void PhraseBookBox::targetChanged(const QString& target) { QModelIndex index = currentPhraseIndex(); if (index.isValid()) phrMdl->setData(phrMdl->index(index.row(), 1), target); } void PhraseBookBox::definitionChanged(const QString& definition) { QModelIndex index = currentPhraseIndex(); if (index.isValid()) phrMdl->setData(phrMdl->index(index.row(), 2), definition); } void PhraseBookBox::selectionChanged() { enableDisable(); } void PhraseBookBox::selectItem(const QModelIndex &index) { const QModelIndex &sortedIndex = m_sortedPhraseModel->mapFromSource(index); phraseList->scrollTo(sortedIndex); phraseList->setCurrentIndex(sortedIndex); } void PhraseBookBox::enableDisable() { QModelIndex index = currentPhraseIndex(); sourceLed->blockSignals(true); targetLed->blockSignals(true); definitionLed->blockSignals(true); bool indexValid = index.isValid(); if (indexValid) { Phrase *p = phrMdl->phrase(index); sourceLed->setText(p->source().simplified()); targetLed->setText(p->target().simplified()); definitionLed->setText(p->definition()); } else { sourceLed->setText(QString()); targetLed->setText(QString()); definitionLed->setText(QString()); } sourceLed->setEnabled(indexValid); targetLed->setEnabled(indexValid); definitionLed->setEnabled(indexValid); removeBut->setEnabled(indexValid); sourceLed->blockSignals(false); targetLed->blockSignals(false); definitionLed->blockSignals(false); QWidget *f = QApplication::focusWidget(); if (f != sourceLed && f != targetLed && f != definitionLed) { QLineEdit *led = (sourceLed->text() == NewPhrase ? sourceLed : targetLed); led->setFocus(); led->selectAll(); } else { static_cast(f)->selectAll(); } } QModelIndex PhraseBookBox::currentPhraseIndex() const { return m_sortedPhraseModel->mapToSource(phraseList->currentIndex()); } QT_END_NAMESPACE