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
|
/*
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 "padoffsetdialog.h"
#include "ui_padoffsetdialog.h"
#include "mainwindow.h"
PadOffsetDialog::PadOffsetDialog(MainWindow* parent)
: QDialog(parent)
, ui(new Ui_PadOffsetDialog)
, m_pMainWindow(parent)
{
ui->setupUi(this);
QFont font = ui->textL->font();
font.setFamily(QString("Arial Unicode MS"));
font.setPointSize(12);
ui->textL->setFont(font);
ui->textR->setFont(font);
ui->textT->setFont(font);
ui->textB->setFont(font);
// Unicode triangles ...
ui->textL->setText(QChar(0x25c0));
ui->textR->setText(QChar(0x25b6));
ui->textT->setText(QChar(0x25b2));
ui->textB->setText(QChar(0x25bc));
QObject::connect(ui->textC, SIGNAL(clicked()), m_pMainWindow, SLOT(PadCentre()));
QObject::connect(ui->textL, SIGNAL(clicked()), m_pMainWindow, SLOT(PadMoveL()));
QObject::connect(ui->textR, SIGNAL(clicked()), m_pMainWindow, SLOT(PadMoveR()));
QObject::connect(ui->textT, SIGNAL(clicked()), m_pMainWindow, SLOT(PadMoveT()));
QObject::connect(ui->textB, SIGNAL(clicked()), m_pMainWindow, SLOT(PadMoveB()));
QObject::connect(this, SIGNAL(rejected()), this, SLOT(OnCloseX())); // Close using X button
}
PadOffsetDialog::~PadOffsetDialog()
{
delete ui;
}
void PadOffsetDialog::OnCloseX()
{
m_pMainWindow->HidePadOffsetDialog(true); // true ==> force
}
void PadOffsetDialog::keyPressEvent(QKeyEvent* event)
{
#ifndef VEROROUTE_ANDROID
m_pMainWindow->specialKeyPressEvent(event);
#endif
QDialog::keyPressEvent(event);
event->accept();
}
void PadOffsetDialog::keyReleaseEvent(QKeyEvent* event)
{
#ifdef VEROROUTE_ANDROID
if ( event->key() == Qt::Key_Back )
{
QTimer::singleShot(0, this, SLOT(OnCloseX()));
return event->accept();
}
#else
m_pMainWindow->commonKeyReleaseEvent(event);
#endif
QDialog::keyReleaseEvent(event);
event->accept();
}
|