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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
/*
* Copyright (c) 208 Dimitris Tassopoulos <dimtass@gmail.com>
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* For more information on the GPL, please go to:
* http://www.gnu.org/copyleft/gpl.html
*/
#include "macrosettings.h"
#include <QDebug>
#include <QMessageBox>
#define TRACE \
if (!debug) { \
} else \
qDebug()
static bool debug = false;
#define MACRO_ITEM(CMD, NAME, TMR_INTERVAL, BUTTON, TMR_ACTIVE, TMR) \
new macro_item(CMD, NAME, TMR_INTERVAL, BUTTON, TMR_ACTIVE, TMR)
MacroSettings::MacroSettings(QPushButton **mainButtons, QWidget *parent)
: QDialog(parent)
, m_mainForm(parent)
{
setupUi(this);
this->setWindowTitle("Macro Settings");
/* Create an array of macro objects in order to make code simpler */
m_macros = new macro_item *[NUM_OF_BUTTONS] {
MACRO_ITEM(m_le_macro_txt_1, m_le_macro_bt_txt_1, m_sb_macro_tmr_1, m_bt_macro_1, m_cb_enable_macro_tmr_1,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_2, m_le_macro_bt_txt_2, m_sb_macro_tmr_2, m_bt_macro_2, m_cb_enable_macro_tmr_2,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_3, m_le_macro_bt_txt_3, m_sb_macro_tmr_3, m_bt_macro_3, m_cb_enable_macro_tmr_3,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_4, m_le_macro_bt_txt_4, m_sb_macro_tmr_4, m_bt_macro_4, m_cb_enable_macro_tmr_4,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_5, m_le_macro_bt_txt_5, m_sb_macro_tmr_5, m_bt_macro_5, m_cb_enable_macro_tmr_5,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_6, m_le_macro_bt_txt_6, m_sb_macro_tmr_6, m_bt_macro_6, m_cb_enable_macro_tmr_6,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_7, m_le_macro_bt_txt_7, m_sb_macro_tmr_7, m_bt_macro_7, m_cb_enable_macro_tmr_7,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_8, m_le_macro_bt_txt_8, m_sb_macro_tmr_8, m_bt_macro_8, m_cb_enable_macro_tmr_8,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_9, m_le_macro_bt_txt_9, m_sb_macro_tmr_9, m_bt_macro_9, m_cb_enable_macro_tmr_9,
new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_10, m_le_macro_bt_txt_10, m_sb_macro_tmr_10, m_bt_macro_10,
m_cb_enable_macro_tmr_10, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_11, m_le_macro_bt_txt_11, m_sb_macro_tmr_11, m_bt_macro_11,
m_cb_enable_macro_tmr_11, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_12, m_le_macro_bt_txt_12, m_sb_macro_tmr_12, m_bt_macro_12,
m_cb_enable_macro_tmr_12, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_13, m_le_macro_bt_txt_13, m_sb_macro_tmr_13, m_bt_macro_13,
m_cb_enable_macro_tmr_13, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_14, m_le_macro_bt_txt_14, m_sb_macro_tmr_14, m_bt_macro_14,
m_cb_enable_macro_tmr_14, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_15, m_le_macro_bt_txt_15, m_sb_macro_tmr_15, m_bt_macro_15,
m_cb_enable_macro_tmr_15, new QTimer(this)),
MACRO_ITEM(m_le_macro_txt_16, m_le_macro_bt_txt_16, m_sb_macro_tmr_16, m_bt_macro_16,
m_cb_enable_macro_tmr_16, new QTimer(this)),
};
/* Setup signal/slots */
for (size_t i = 0; i < NUM_OF_BUTTONS; i++) {
/* Click events from the panel in the main menu */
connect(mainButtons[i], &QPushButton::clicked, this, &MacroSettings::macroPress);
/* events to change this dialog's buttons text */
connect(m_macros[i]->name, &QLineEdit::textChanged, this,
[=]() { m_macros[i]->button->setText(m_macros[i]->name->text()); });
/* events to change the buttons text on main menu */
connect(m_macros[i]->name, &QLineEdit::textChanged, this,
[=]() { mainButtons[i]->setText(m_macros[i]->name->text()); });
/* event handling for this dialog's buttons */
connect(m_macros[i]->button, &QPushButton::clicked, this, &MacroSettings::macroPress);
/* timer enable/disable events */
connect(m_macros[i]->tmr_active, &QCheckBox::stateChanged, [=](int state) {
if (state == Qt::Checked) {
m_macros[i]->tmr->stop();
m_macros[i]->tmr->setInterval(m_macros[i]->tmr_interval->text().toInt());
m_macros[i]->tmr->start();
TRACE << "Timer " << i << " started.";
} else {
m_macros[i]->tmr->stop();
TRACE << "Timer " << i << " stopped.";
}
});
/* timer events */
connect(m_macros[i]->tmr, &QTimer::timeout, [=]() { emit sendCmd(m_macros[i]->cmd->text().toLatin1()); });
}
connect(m_bt_load_macros, &QPushButton::clicked, this, &MacroSettings::openFile);
connect(m_bt_save_macros, &QPushButton::clicked, this, &MacroSettings::saveFile);
connect(m_bt_macro_help, &QPushButton::clicked, this, &MacroSettings::helpMsg);
m_lbl_macros_path->setText("");
}
MacroSettings::~MacroSettings()
{
if (m_macros)
delete[] m_macros;
}
/**
* @brief Extract the button index. That's a bit dirty way to get indexes
* from the buttons. For this to happen the buttons must always be named
* as 'm_bt_macro_' and then the index.
* @param btnName The button object name
* @return int The index of the button that corresponds to m_macros[]
*/
int MacroSettings::getButtonIndex(QString btnName)
{
int idx = -1;
if (btnName.startsWith("m_bt_macro_")) {
idx = btnName.remove("m_bt_macro_").toInt() - 1;
}
return idx;
}
/**
* @brief Sends the cmd that corresponds to the macro button
*/
void MacroSettings::macroPress()
{
QPushButton *button = qobject_cast<QPushButton *>(sender());
if (button) {
int idx = getButtonIndex(button->objectName());
if (idx < 0)
return;
/* Send macro text */
emit sendCmd(m_macros[idx]->cmd->text().toLatin1());
TRACE << "[MacroSettings] macroPress " << m_macros[idx]->button->objectName() << " : "
<< m_macros[idx]->cmd->text();
}
}
/**
* @brief Load a macro file that is compatible with Br@y's terminal
* @param fname The filename of the *.tmf file.
*/
void MacroSettings::loadFile(QString fname)
{
if (fname.isEmpty())
return;
QFile file(fname);
if (!file.open(QFile::ReadOnly | QFile::Text)) {
QMessageBox::critical(this, tr("Could not open file"), file.errorString());
return;
}
QTextStream in(&file);
if (parseFile(in))
m_lbl_macros_path->setText(fname);
file.close();
if (QString::compare(m_macroFilename, fname, Qt::CaseSensitive)) {
m_macroFilename = fname;
m_lbl_macros_path->setText(m_macroFilename);
emit fileChanged(m_macroFilename);
}
}
void MacroSettings::openFile()
{
QString fname = QFileDialog::getOpenFileName(this, tr("Open a bray's terminal macro settings file"),
QDir::homePath(), "Macros (*.tmf)");
if (!fname.isEmpty())
loadFile(fname);
}
/**
* @brief Parse a macro *.tmf file and fill the dialog form
* @param in The file text stream
* @return true if all gone OK, otherwise false
*/
bool MacroSettings::parseFile(QTextStream &in)
{
/* Read the first line */
QString line = in.readLine();
if (line.startsWith("# Terminal macro file v2")) {
for (size_t i = 0; i < NUM_OF_BUTTONS; i++) {
/* Get button name */
line = in.readLine();
m_macros[i]->button->setText(line);
m_macros[i]->name->setText(line);
/* Get button cmd */
line = in.readLine();
m_macros[i]->cmd->setText(line);
}
} else {
QMessageBox::warning(this, tr("Error"), tr("Unsupported macro file!"));
return false;
}
return true;
}
void MacroSettings::saveFile()
{
QDir dir(QDir::homePath());
QString fname = QFileDialog::getSaveFileName(this, tr("Open a bray's terminal macro settings file"),
dir.filePath(m_macroFilename), "Macros (*.tmf)");
if (fname.isEmpty())
return;
TRACE << "Save to: " << fname;
QFile file(fname);
if (!file.open(QFile::WriteOnly | QFile::Text)) {
QMessageBox::warning(this, tr("Could not open file"), file.errorString());
return;
}
QTextStream out(&file);
out << "# Terminal macro file v2" << endl;
for (size_t i = 0; i < NUM_OF_BUTTONS; i++) {
out << m_macros[i]->button->text() << endl;
out << m_macros[i]->cmd->text() << endl;
}
out.flush();
file.close();
if (QString::compare(m_macroFilename, fname, Qt::CaseSensitive)) {
m_macroFilename = fname;
m_lbl_macros_path->setText(m_macroFilename);
emit fileChanged(m_macroFilename);
}
}
void MacroSettings::helpMsg(void)
{
QString help_str = tr("In order to use macros you need to need to\n"
"fill the serial command you want to send in\n"
"the first column. Then you can name the macro\n"
"in the second column. This name will also be\n"
"applied on the button label.\n\n"
"To trigger the macro you can press the button\n"
"on this dialog or in the main interface.\n\n"
"If you want to auto-trigger the macro on time\n"
"intervals then you can set the (msec) timer\n"
"interval and then enable/disable the macro timer\n"
"using the checkbox. Note that each timer is\n"
"autonomous.\n\n"
"The macro format is compatible with the tmf\n"
"format of Bray's terminal.");
QMessageBox::information(this, tr("How to use"), help_str);
}
|