1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
VeroRoute - Qt based Veroboard/Perfboard/PCB layout & routing application.
Copyright (C) 2017 Alex Lawrow ( dralx@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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "finddialog.h"
#include "ui_finddialog.h"
#include "mainwindow.h"
FindDialog::FindDialog(MainWindow* parent)
: QDialog(parent)
, ui(new Ui_FindDialog)
, m_pMainWindow(parent)
{
ui->setupUi(this);
ui->radioName->setChecked(true);
QObject::connect(ui->radioName, SIGNAL(toggled(bool)), this, SLOT(ToggleName(bool)));
QObject::connect(ui->checkExact, SIGNAL(toggled(bool)), this, SLOT(ToggleExact(bool)));
QObject::connect(ui->nameEdit, SIGNAL(textChanged(QString)), this, SLOT(TextChanged(QString)));
}
FindDialog::~FindDialog()
{
delete ui;
}
void FindDialog::ToggleName(bool b)
{
m_bName = b;
if ( m_bCanFind ) m_pMainWindow->Find(m_bName, m_bExact, m_str);
}
void FindDialog::ToggleExact(bool b)
{
m_bExact = b;
if ( m_bCanFind ) m_pMainWindow->Find(m_bName, m_bExact, m_str);
}
void FindDialog::TextChanged(const QString& str)
{
m_str = str;
if ( m_bCanFind ) m_pMainWindow->Find(m_bName, m_bExact, m_str);
}
void FindDialog::showEvent(QShowEvent* event)
{
m_bCanFind = true;
if ( m_pMainWindow->GetNumFound() == 0 )
ui->nameEdit->setText(QString(""));
TextChanged(m_str);
QDialog::showEvent(event);
}
void FindDialog::hideEvent(QHideEvent* event)
{
m_bCanFind = false;
QDialog::hideEvent(event);
}
void FindDialog::closeEvent(QCloseEvent* event)
{
m_bCanFind = false;
QDialog::closeEvent(event);
}
void FindDialog::keyPressEvent(QKeyEvent* event)
{
#ifndef VEROROUTE_ANDROID
m_pMainWindow->specialKeyPressEvent(event);
#endif
QDialog::keyPressEvent(event);
event->accept();
}
void FindDialog::keyReleaseEvent(QKeyEvent* event)
{
#ifdef VEROROUTE_ANDROID
if ( event->key() == Qt::Key_Back )
{
QTimer::singleShot(0, m_pMainWindow, SLOT(HideFindDialog()));
return event->accept();
}
#else
m_pMainWindow->commonKeyReleaseEvent(event);
#endif
QDialog::keyReleaseEvent(event);
event->accept();
}
|