/*************************************************************************** * copyright : (C) 2003-2007 by Pascal Brachet * * http://www.xm1math.net/texmaker/ * * * * 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 "finddialog.h" FindDialog::FindDialog(QWidget* parent, const char* name, Qt::WFlags fl ) : QDialog( parent, fl ) { setWindowTitle(name); setModal(true); ui.setupUi(this); connect(ui.findButton, SIGNAL( clicked() ), this, SLOT( doFind() ) ); connect(ui.closeButton, SIGNAL( clicked() ), this, SLOT( reject() ) ); } FindDialog::~FindDialog() { } void FindDialog::doFind() { if ( !editor ) return; if ( !editor->search( ui.comboFind->currentText(), ui.checkCase->isChecked(), ui.checkWords->isChecked(), ui.radioForward->isChecked(), !ui.checkBegin->isChecked() ) ) { ui.checkBegin->setChecked( TRUE ); } else ui.checkBegin->setChecked( FALSE ); editor->viewport()->repaint(); } void FindDialog::SetEditor(LatexEditor *ed) { editor=ed; }