/* **************************************************************************** This file is part of KBabel Copyright (C) 1999-2000 by Matthias Kiefer 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. 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. In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the TQt library by Trolltech AS, Norway (or with modified versions of TQt that use the same license as TQt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than TQt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. **************************************************************************** */ #include "findinfilesdialog.h" #include #include #include #include #include #include #include #include using namespace KBabel; FindInFilesDialog::FindInFilesDialog(bool forReplace, TQWidget* parent) :FindDialog(forReplace, parent) { TQGroupBox* box = new TQGroupBox(2, TQt::Horizontal, i18n("File Options"), mainWidget()); mainWidget()->layout()->add(box); _inAllFiles = new TQCheckBox(i18n("&In all files"),box); _inMarked = new TQCheckBox(i18n("&Marked files"),box); _inTemplates = new TQCheckBox(i18n("In &templates"),box); _askForNextFile = new TQCheckBox(i18n("Ask before ne&xt file"),box); _askForSave = new TQCheckBox(i18n("Save &without asking"),box); TQWhatsThis::add(box,i18n("

File Options

" "

Here you can finetune where to find:" "

  • In all files: search in all files, otherwise searched " "is the selected file or files in the selected folder
  • " "
  • Ask before next file: show a dialog asking to proceed to the next file
  • " "
")); readSettings(); } FindInFilesDialog::~FindInFilesDialog() { saveSettings(); } int FindInFilesDialog::show(TQString initialStr) { FindDialog::show(initialStr); int r = result(); if( r == TQDialog::Accepted ) { if( isReplaceDialog() ) { ReplaceOptions options = replaceOpts(); options.inAllFiles = _inAllFiles->isChecked(); options.inMarkedFiles = _inMarked->isChecked(); options.inTemplates = _inTemplates->isChecked(); options.askForNextFile = _askForNextFile->isChecked(); options.askForSave = !_askForSave->isChecked(); FindDialog::setReplaceOpts(options); } else { FindOptions options = findOpts(); options.inAllFiles = _inAllFiles->isChecked(); options.inMarkedFiles = _inMarked->isChecked(); options.inTemplates = _inTemplates->isChecked(); options.askForNextFile = _askForNextFile->isChecked(); options.askForSave = !_askForSave->isChecked(); FindDialog::setFindOpts( options ); } } return r; } int FindInFilesDialog::exec(TQString initialStr) { FindDialog::exec(initialStr); int r = result(); if( r == TQDialog::Accepted ) { if(isReplaceDialog()) { ReplaceOptions options = replaceOpts(); options.inAllFiles = _inAllFiles->isChecked(); options.inMarkedFiles = _inMarked->isChecked(); options.inTemplates = _inTemplates->isChecked(); options.askForNextFile = _askForNextFile->isChecked(); options.askForSave = !_askForSave->isChecked(); FindDialog::setReplaceOpts(options); } else { FindOptions options = findOpts(); options.inAllFiles = _inAllFiles->isChecked(); options.inMarkedFiles = _inMarked->isChecked(); options.inTemplates = _inTemplates->isChecked(); options.askForNextFile = _askForNextFile->isChecked(); options.askForSave = !_askForSave->isChecked(); FindDialog::setFindOpts( options ); } } return r; } void FindInFilesDialog::setFindOpts(FindOptions options) { FindDialog::setFindOpts(options); _inAllFiles->setChecked(options.inAllFiles); _inTemplates->setChecked(options.inTemplates); _inMarked->setChecked(options.inMarkedFiles); _askForNextFile->setChecked(options.askForNextFile); _askForSave->setChecked(!options.askForSave); } void FindInFilesDialog::setReplaceOpts(ReplaceOptions options) { FindDialog::setReplaceOpts(options); _inAllFiles->setChecked(options.inAllFiles); _inTemplates->setChecked(options.inTemplates); _inMarked->setChecked(options.inMarkedFiles); _askForNextFile->setChecked(options.askForNextFile); _askForSave->setChecked(!options.askForSave); } void FindInFilesDialog::readSettings() { TDEConfig* config = TDEGlobal::config(); if(isReplaceDialog()) { TDEConfigGroupSaver cgs(config,"ReplaceDialog"); ReplaceOptions options = replaceOpts(); options.inAllFiles = config->readBoolEntry("AllFiles", false); options.inTemplates = config->readBoolEntry("InTemplates", false); options.inMarkedFiles = config->readBoolEntry("InMarked", false); options.askForNextFile = config->readBoolEntry("AskForNextFile", true); options.askForSave = config->readBoolEntry("AskForSave", true); _inAllFiles->setChecked(options.inAllFiles); _inTemplates->setChecked(options.inTemplates); _inMarked->setChecked(options.inMarkedFiles); _askForNextFile->setChecked(options.askForNextFile); _askForSave->setChecked(!options.askForSave); FindDialog::setReplaceOpts(options); } else { TDEConfigGroupSaver cgs(config,"FindDialog"); FindOptions options = findOpts(); options.inAllFiles = config->readBoolEntry("AllFiles", false); options.inTemplates = config->readBoolEntry("InTemplates", false); options.inMarkedFiles = config->readBoolEntry("InMarked", false); options.askForNextFile = config->readBoolEntry("AskForNextFile", true); options.askForSave = config->readBoolEntry("AskForSave", true); _inAllFiles->setChecked(options.inAllFiles); _inTemplates->setChecked(options.inTemplates); _inMarked->setChecked(options.inMarkedFiles); _askForNextFile->setChecked(options.askForNextFile); _askForSave->setChecked(!options.askForSave); FindDialog::setFindOpts(options); } } void FindInFilesDialog::saveSettings() { TDEConfig* config = TDEGlobal::config(); if(isReplaceDialog()) { TDEConfigGroupSaver cgs(config,"ReplaceDialog"); ReplaceOptions options = replaceOpts(); config->writeEntry("AllFiles", options.inAllFiles); config->writeEntry("InMarked", options.inMarkedFiles); config->writeEntry("InTemplates", options.inTemplates); config->writeEntry("AskForNextFile",options.askForNextFile); config->writeEntry("AskForSave",options.askForSave); } else { TDEConfigGroupSaver cgs(config,"FindDialog"); FindOptions options = findOpts(); config->writeEntry("AllFiles", options.inAllFiles); config->writeEntry("InMarked", options.inMarkedFiles); config->writeEntry("InTemplates", options.inTemplates); config->writeEntry("AskForNextFile",options.askForNextFile); config->writeEntry("AskForSave",options.askForSave); } } #include "findinfilesdialog.moc"