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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*********************************************************************************
NixNote - An open-source client for the Evernote service.
Copyright (C) 2013 Randy Baumgarte
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.
***********************************************************************************/
#include "tabledialog.h"
#include "global.h"
#include <QString>
extern Global global;
TableDialog::TableDialog(QWidget *parent) :
QDialog(parent)
{
okPressed = false;
this->setWindowTitle(QString(tr("Insert Table")));
//setWindowIcon(new QIcon(iconPath+"table.png"));
setLayout(&grid);
unit.addItem(tr("Percent"),true);
unit.addItem(tr("Pixels"), false);
width.setText("80");
widthValidator.setBottom(0);
widthValidator.setTop(100);
width.setValidator(&widthValidator);
connect(&width, SIGNAL(textChanged(QString)), this, SLOT(validateWidth()));
rows.setMinimum(1);
rows.setMaximum(30);
cols.setMinimum(1);
cols.setMaximum(30);
connect(&unit, SIGNAL(activated(int)), this, SLOT(unitChanged()));
input.addWidget(new QLabel(tr("Rows")),1,1);
input.addWidget(&rows, 1, 2);
input.addWidget(new QLabel(tr("Columns")), 2, 1);
input.addWidget(&cols, 2, 2);
input.addWidget(new QLabel(tr("Width")), 3, 1);
input.addWidget(&width, 3, 2);
input.addWidget(new QLabel(tr("Unit")), 4, 1);
input.addWidget(&unit, 4, 2);
input.setContentsMargins(10, 10, -10, -10);
grid.addLayout(&input, 1,1);
msgGrid.addWidget(&error,1,1);
grid.addLayout(&msgGrid, 2, 1);
ok.setText(tr("OK"));
connect(&ok, SIGNAL(clicked()), this, SLOT(okButtonPressed()));
cancel.setText(tr("Cancel"));
connect(&cancel, SIGNAL(clicked()), this, SLOT(cancelButtonPressed()));
button.addWidget(&ok, 1,1);
button.addWidget(&cancel, 1,2);
grid.addLayout(&button, 3, 1);
this->setLayout(&grid);
this->setFont(global.getGuiFont(font()));
}
// The OK button was pressed
void TableDialog::okButtonPressed() {
okPressed = true;
close();
}
// The CANCEL button was pressed
void TableDialog::cancelButtonPressed() {
okPressed = false;
close();
}
// Check if the OK button was pressed
bool TableDialog::isOkPressed() {
return okPressed;
}
// Check if proper input was input
void TableDialog::validateInput() {
ok.setEnabled(false);
ok.setEnabled(true);
}
void TableDialog::validateWidth() {
if (width.text().trimmed().length() == 0) {
ok.setEnabled(false);
} else
ok.setEnabled(true);
}
void TableDialog::unitChanged() {
int i = unit.currentIndex();
if (unit.itemData(i).toBool()) { // if 'percent'
int w = width.text().toInt();
if (w > 100)
width.setText("80");
widthValidator.setTop(100);
} else {
widthValidator.setTop(32767);
}
}
int TableDialog::getRows() {
return rows.text().toInt();
}
int TableDialog::getCols() {
return cols.text().toInt();
}
int TableDialog::getWidth() {
return width.text().toInt();
}
bool TableDialog::isPercent() {
int i = unit.currentIndex();
return unit.itemData(i).toBool();
}
|