Split compositional links from page enhancements
This commit is contained in:
@@ -42,6 +42,7 @@
|
||||
#include "levelonecommands.h"
|
||||
#include "loadsave.h"
|
||||
#include "mainwidget.h"
|
||||
#include "pagecomposelinksdockwidget.h"
|
||||
#include "pageenhancementsdockwidget.h"
|
||||
#include "pageoptionsdockwidget.h"
|
||||
#include "palettedockwidget.h"
|
||||
@@ -238,6 +239,8 @@ void MainWindow::init()
|
||||
addDockWidget(Qt::RightDockWidgetArea, m_x26DockWidget);
|
||||
m_paletteDockWidget = new PaletteDockWidget(m_textWidget);
|
||||
addDockWidget(Qt::RightDockWidgetArea, m_paletteDockWidget);
|
||||
m_pageComposeLinksDockWidget = new PageComposeLinksDockWidget(m_textWidget);
|
||||
addDockWidget(Qt::RightDockWidgetArea, m_pageComposeLinksDockWidget);
|
||||
|
||||
m_textScene = new LevelOneScene(m_textWidget, this);
|
||||
|
||||
@@ -638,6 +641,7 @@ void MainWindow::createActions()
|
||||
toolsMenu->addAction(m_x26DockWidget->toggleViewAction());
|
||||
toolsMenu->addAction(m_pageEnhancementsDockWidget->toggleViewAction());
|
||||
toolsMenu->addAction(m_paletteDockWidget->toggleViewAction());
|
||||
toolsMenu->addAction(m_pageComposeLinksDockWidget->toggleViewAction());
|
||||
|
||||
//FIXME is this main menubar separator to put help menu towards the right?
|
||||
menuBar()->addSeparator();
|
||||
@@ -848,6 +852,8 @@ void MainWindow::readSettings()
|
||||
m_x26DockWidget->setFloating(true);
|
||||
m_paletteDockWidget->hide();
|
||||
m_paletteDockWidget->setFloating(true);
|
||||
m_pageComposeLinksDockWidget->hide();
|
||||
m_pageComposeLinksDockWidget->setFloating(true);
|
||||
} else
|
||||
restoreState(windowState);
|
||||
}
|
||||
@@ -1160,4 +1166,5 @@ void MainWindow::updatePageWidgets()
|
||||
m_pageEnhancementsDockWidget->updateWidgets();
|
||||
m_x26DockWidget->loadX26List();
|
||||
m_paletteDockWidget->updateAllColourButtons();
|
||||
m_pageComposeLinksDockWidget->updateWidgets();
|
||||
}
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
#include <QToolButton>
|
||||
|
||||
#include "mainwidget.h"
|
||||
#include "pagecomposelinksdockwidget.h"
|
||||
#include "pageenhancementsdockwidget.h"
|
||||
#include "pageoptionsdockwidget.h"
|
||||
#include "palettedockwidget.h"
|
||||
@@ -114,6 +115,7 @@ private:
|
||||
PageEnhancementsDockWidget *m_pageEnhancementsDockWidget;
|
||||
X26DockWidget *m_x26DockWidget;
|
||||
PaletteDockWidget *m_paletteDockWidget;
|
||||
PageComposeLinksDockWidget *m_pageComposeLinksDockWidget;
|
||||
|
||||
QAction *m_recentFileActs[m_MaxRecentFiles];
|
||||
QAction *m_recentFileSeparator;
|
||||
|
||||
222
pagecomposelinksdockwidget.cpp
Normal file
222
pagecomposelinksdockwidget.cpp
Normal file
@@ -0,0 +1,222 @@
|
||||
/*
|
||||
* Copyright (C) 2020-2022 Gavin MacGregor
|
||||
*
|
||||
* This file is part of QTeletextMaker.
|
||||
*
|
||||
* QTeletextMaker 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.
|
||||
*
|
||||
* QTeletextMaker 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 QTeletextMaker. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <QCheckBox>
|
||||
#include <QComboBox>
|
||||
#include <QGridLayout>
|
||||
#include <QLabel>
|
||||
#include <QLineEdit>
|
||||
#include <QMap>
|
||||
#include <QPair>
|
||||
#include <QRegExpValidator>
|
||||
#include <QString>
|
||||
|
||||
#include "pagecomposelinksdockwidget.h"
|
||||
|
||||
PageComposeLinksDockWidget::PageComposeLinksDockWidget(TeletextWidget *parent): QDockWidget(parent)
|
||||
{
|
||||
QVBoxLayout *pageComposeLinksLayout = new QVBoxLayout;
|
||||
QWidget *pageComposeLinksWidget = new QWidget;
|
||||
|
||||
m_parentMainWidget = parent;
|
||||
|
||||
this->setObjectName("PageComposeLinksDockWidget");
|
||||
this->setWindowTitle("Compositional links");
|
||||
|
||||
QGridLayout *x27Layout = new QGridLayout;
|
||||
|
||||
QLabel *levelAllLabel = new QLabel(tr("Levels 2.5 and 3.5"));
|
||||
levelAllLabel->setAlignment(Qt::AlignCenter);
|
||||
x27Layout->addWidget(levelAllLabel, 0, 0, 1, 5);
|
||||
|
||||
// Link functions
|
||||
x27Layout->addWidget(new QLabel(tr("GPOP")), 2, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("POP")), 3, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("GDRCS")), 4, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("DRCS")), 5, 0, 1, 1);
|
||||
|
||||
// Labels across the top
|
||||
x27Layout->addWidget(new QLabel(tr("L2.5")), 1, 1, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("L3.5")), 1, 2, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("Page no")), 1, 3, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("Sub pages required")), 1, 4, 1, 1);
|
||||
|
||||
QLabel *level3p5OnlyLabel = new QLabel(tr("Level 3.5 only"));
|
||||
level3p5OnlyLabel->setAlignment(Qt::AlignCenter);
|
||||
x27Layout->addWidget(level3p5OnlyLabel, 6, 0, 1, 5);
|
||||
|
||||
m_pageNumberValidator = new QRegExpValidator(QRegExp("[1-8][0-9A-Fa-f][0-9A-Fa-f]"), this);
|
||||
|
||||
for (int i=0; i<8; i++) {
|
||||
if (i < 4) {
|
||||
// Required at which Levels
|
||||
m_composeLinkLevelCheckbox[i][0] = new QCheckBox(this);
|
||||
x27Layout->addWidget(m_composeLinkLevelCheckbox[i][0], i+2, 1, 1, 1);
|
||||
connect(m_composeLinkLevelCheckbox[i][0], &QCheckBox::stateChanged, [=](bool active) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkLevel2p5(i, active); });
|
||||
m_composeLinkLevelCheckbox[i][1] = new QCheckBox(this);
|
||||
x27Layout->addWidget(m_composeLinkLevelCheckbox[i][1], i+2, 2, 1, 1);
|
||||
connect(m_composeLinkLevelCheckbox[i][1], &QCheckBox::stateChanged, [=](bool active) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkLevel3p5(i, active); });
|
||||
} else {
|
||||
// Selectable link functions for Level 3.5
|
||||
m_composeLinkFunctionComboBox[i-4] = new QComboBox;
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("GPOP");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("POP");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("GDRCS");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("DRCS");
|
||||
x27Layout->addWidget(m_composeLinkFunctionComboBox[i-4], i+3, 0, 1, 1, Qt::AlignTop);
|
||||
connect(m_composeLinkFunctionComboBox[i-4], QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkFunction(i, index); } );
|
||||
}
|
||||
// Page link
|
||||
m_composeLinkPageNumberLineEdit[i] = new QLineEdit("100");
|
||||
m_composeLinkPageNumberLineEdit[i]->setMaxLength(3);
|
||||
m_composeLinkPageNumberLineEdit[i]->setInputMask(">DHH");
|
||||
m_composeLinkPageNumberLineEdit[i]->setValidator(m_pageNumberValidator);
|
||||
x27Layout->addWidget(m_composeLinkPageNumberLineEdit[i], i+(i<4 ? 2 : 3), 3, 1, 1);
|
||||
connect(m_composeLinkPageNumberLineEdit[i], &QLineEdit::textEdited, [=](QString value) { setComposeLinkPageNumber(i, value); } );
|
||||
|
||||
// Sub page numbers required
|
||||
m_composeLinkSubPageNumbersLineEdit[i] = new QLineEdit(this);
|
||||
x27Layout->addWidget(m_composeLinkSubPageNumbersLineEdit[i], i+(i<4 ? 2 : 3), 4, 1, 1);
|
||||
connect(m_composeLinkSubPageNumbersLineEdit[i], &QLineEdit::textEdited, [=](QString value) { setComposeLinkSubPageNumbers(i, value); } );
|
||||
}
|
||||
|
||||
pageComposeLinksLayout->addLayout(x27Layout);
|
||||
|
||||
pageComposeLinksLayout->addStretch(1);
|
||||
|
||||
pageComposeLinksWidget->setLayout(pageComposeLinksLayout);
|
||||
this->setWidget(pageComposeLinksWidget);
|
||||
}
|
||||
|
||||
void PageComposeLinksDockWidget::setComposeLinkPageNumber(int linkNumber, const QString &newPageNumberString)
|
||||
{
|
||||
// The LineEdit should check if a valid hex number was entered, but just in case...
|
||||
bool newPageNumberOk;
|
||||
int newPageNumberRead = newPageNumberString.toInt(&newPageNumberOk, 16);
|
||||
if ((!newPageNumberOk) || newPageNumberRead < 0x100 || newPageNumberRead > 0x8ff)
|
||||
return;
|
||||
|
||||
// Stored as page link with relative magazine number, convert from absolute page number that was entered
|
||||
newPageNumberRead ^= (m_parentMainWidget->document()->pageNumber() & 0x700);
|
||||
m_parentMainWidget->document()->currentSubPage()->setComposeLinkPageNumber(linkNumber, newPageNumberRead);
|
||||
}
|
||||
|
||||
void PageComposeLinksDockWidget::setComposeLinkSubPageNumbers(int linkNumber, const QString &newSubPagesString)
|
||||
{
|
||||
int newSubPageCodes = 0x0000;
|
||||
|
||||
if (!newSubPagesString.isEmpty()) {
|
||||
// Turn user-entered comma separated subpages and subpage-ranges into bits
|
||||
// First we do the "comma separated"
|
||||
const QStringList items = newSubPagesString.split(QLatin1Char(','), QString::SkipEmptyParts);
|
||||
// Now see if there's valid single numbers or ranges between the commas
|
||||
for (const QString &item : items) {
|
||||
if (item.isEmpty())
|
||||
return;
|
||||
if (item.contains(QLatin1Char('-'))) {
|
||||
// Dash found, should be a range of subpages: check for two things either side of dash
|
||||
const QStringList rangeItems = item.split('-');
|
||||
if (rangeItems.count() != 2)
|
||||
return;
|
||||
// Now check if the two things are valid numbers 0-15, with first number less than second
|
||||
bool ok1, ok2;
|
||||
const int number1 = rangeItems[0].toInt(&ok1);
|
||||
const int number2 = rangeItems[1].toInt(&ok2);
|
||||
if (!ok1 || !ok2 || number1 < 0 || number2 < 0 || number1 > 15 || number2 > 15 || number2 < number1)
|
||||
return;
|
||||
// Yes, it is a valid range. Apply it to the result
|
||||
for (int i=number1; i<=number2; i++)
|
||||
newSubPageCodes |= (1 << i);
|
||||
} else {
|
||||
// A single thing (maybe extracted between commas): check if the thing is a number 0-15
|
||||
bool ok;
|
||||
const int number = item.toInt(&ok);
|
||||
if (!ok || number < 0 || number > 15)
|
||||
return;
|
||||
// Yes, it is a valid number. Apply it to the result
|
||||
newSubPageCodes |= (1 << number);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
m_parentMainWidget->document()->currentSubPage()->setComposeLinkSubPageCodes(linkNumber, newSubPageCodes);
|
||||
}
|
||||
|
||||
void PageComposeLinksDockWidget::updateWidgets()
|
||||
{
|
||||
for (int i=0; i<8; i++) {
|
||||
if (i >= 4) {
|
||||
m_composeLinkFunctionComboBox[i-4]->blockSignals(true);
|
||||
m_composeLinkFunctionComboBox[i-4]->setCurrentIndex(m_parentMainWidget->document()->currentSubPage()->composeLinkFunction(i));
|
||||
m_composeLinkFunctionComboBox[i-4]->blockSignals(false);
|
||||
} else {
|
||||
m_composeLinkLevelCheckbox[i][0]->blockSignals(true);
|
||||
m_composeLinkLevelCheckbox[i][0]->setChecked(m_parentMainWidget->document()->currentSubPage()->composeLinkLevel2p5(i));
|
||||
m_composeLinkLevelCheckbox[i][0]->blockSignals(false);
|
||||
m_composeLinkLevelCheckbox[i][1]->blockSignals(true);
|
||||
m_composeLinkLevelCheckbox[i][1]->setChecked(m_parentMainWidget->document()->currentSubPage()->composeLinkLevel3p5(i));
|
||||
m_composeLinkLevelCheckbox[i][1]->blockSignals(false);
|
||||
}
|
||||
// Stored as page link with relative magazine number, convert to absolute page number for display
|
||||
int absoluteLinkPageNumber = m_parentMainWidget->document()->currentSubPage()->composeLinkPageNumber(i) ^ (m_parentMainWidget->document()->pageNumber() & 0x700);
|
||||
// Fix magazine 0 to 8
|
||||
if ((absoluteLinkPageNumber & 0x700) == 0x000)
|
||||
absoluteLinkPageNumber |= 0x800;
|
||||
m_composeLinkPageNumberLineEdit[i]->blockSignals(true);
|
||||
m_composeLinkPageNumberLineEdit[i]->setText(QString::number(absoluteLinkPageNumber, 16).toUpper());
|
||||
m_composeLinkPageNumberLineEdit[i]->blockSignals(false);
|
||||
|
||||
// Turn subpage bits into user-friendly comma separated numbers and number-ranges
|
||||
QString rangeString;
|
||||
|
||||
if (m_parentMainWidget->document()->currentSubPage()->composeLinkSubPageCodes(i) != 0x0000) {
|
||||
// First build a list of consecutive ranges seen
|
||||
// The "b-index" is based on https://codereview.stackexchange.com/a/90074
|
||||
QMap<int, QPair<int, int>> ranges;
|
||||
int index = 0;
|
||||
for (int b=0; b<16; b++)
|
||||
if ((m_parentMainWidget->document()->currentSubPage()->composeLinkSubPageCodes(i) >> b) & 0x01) {
|
||||
if (!ranges.contains(b-index))
|
||||
ranges.insert(b-index, qMakePair(b, b));
|
||||
else
|
||||
ranges[b-index].second = b;
|
||||
index++;
|
||||
}
|
||||
// Now go through the list and add single numbers or ranges as appropriate
|
||||
QPair<int, int> range;
|
||||
foreach (range, ranges) {
|
||||
// For second and subsequent entries only, append a comma first
|
||||
if (!rangeString.isEmpty())
|
||||
rangeString.append(',');
|
||||
// Append the single number or the first number of the range
|
||||
rangeString.append(QString("%1").arg(range.first));
|
||||
// If that was part of a range and not a single orphaned number
|
||||
if (range.first != range.second) {
|
||||
// Ranges of 3 or more use a dash. A range of 2 can make do with a comma
|
||||
rangeString.append((range.first+1 == range.second) ? ',' : '-');
|
||||
// Append the second number of the range
|
||||
rangeString.append(QString("%1").arg(range.second));
|
||||
}
|
||||
}
|
||||
}
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->blockSignals(true);
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->setText(rangeString);
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->blockSignals(false);
|
||||
}
|
||||
}
|
||||
52
pagecomposelinksdockwidget.h
Normal file
52
pagecomposelinksdockwidget.h
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (C) 2020-2022 Gavin MacGregor
|
||||
*
|
||||
* This file is part of QTeletextMaker.
|
||||
*
|
||||
* QTeletextMaker 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.
|
||||
*
|
||||
* QTeletextMaker 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 QTeletextMaker. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PAGECOMPOSELINKSDOCKWIDGET_H
|
||||
#define PAGECOMPOSELINKSDOCKWIDGET_H
|
||||
|
||||
#include <QCheckBox>
|
||||
#include <QComboBox>
|
||||
#include <QDockWidget>
|
||||
#include <QLineEdit>
|
||||
#include <QRegExpValidator>
|
||||
#include <QString>
|
||||
|
||||
#include "mainwidget.h"
|
||||
|
||||
class PageComposeLinksDockWidget : public QDockWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
PageComposeLinksDockWidget(TeletextWidget *parent);
|
||||
void updateWidgets();
|
||||
|
||||
private:
|
||||
void setComposeLinkPageNumber(int, const QString &);
|
||||
void setComposeLinkSubPageNumbers(int, const QString &);
|
||||
|
||||
TeletextWidget *m_parentMainWidget;
|
||||
QCheckBox *m_composeLinkLevelCheckbox[4][2]; // For links 0-3
|
||||
QComboBox *m_composeLinkFunctionComboBox[4]; // For links 4-7; remember to subtract 4!
|
||||
QLineEdit *m_composeLinkPageNumberLineEdit[8], *m_composeLinkSubPageNumbersLineEdit[8];
|
||||
|
||||
QRegExpValidator *m_pageNumberValidator;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -22,12 +22,7 @@
|
||||
#include <QGridLayout>
|
||||
#include <QGroupBox>
|
||||
#include <QLabel>
|
||||
#include <QLineEdit>
|
||||
#include <QMap>
|
||||
#include <QPair>
|
||||
#include <QRegExpValidator>
|
||||
#include <QSpinBox>
|
||||
#include <QString>
|
||||
|
||||
#include "pageenhancementsdockwidget.h"
|
||||
|
||||
@@ -39,25 +34,26 @@ PageEnhancementsDockWidget::PageEnhancementsDockWidget(TeletextWidget *parent):
|
||||
m_parentMainWidget = parent;
|
||||
|
||||
this->setObjectName("PageEnhancementsDockWidget");
|
||||
this->setWindowTitle("Page enhancements");
|
||||
this->setWindowTitle("X/28 page enhancements");
|
||||
|
||||
QGroupBox *x28GroupBox = new QGroupBox(tr("X/28 enhancements"));
|
||||
QGridLayout *x28Layout = new QGridLayout;
|
||||
// Colour group box and layout
|
||||
QGroupBox *colourGroupBox = new QGroupBox(tr("Colours"));
|
||||
QGridLayout *colourLayout = new QGridLayout;
|
||||
|
||||
// Default screen and default row colours
|
||||
x28Layout->addWidget(new QLabel(tr("Default screen colour")), 0, 0, 1, 1);
|
||||
x28Layout->addWidget(new QLabel(tr("Default row colour")), 1, 0, 1, 1);
|
||||
colourLayout->addWidget(new QLabel(tr("Default screen colour")), 0, 0, 1, 1);
|
||||
colourLayout->addWidget(new QLabel(tr("Default row colour")), 1, 0, 1, 1);
|
||||
m_defaultScreenColourCombo = new QComboBox;
|
||||
m_defaultScreenColourCombo->setModel(m_parentMainWidget->document()->clutModel());
|
||||
m_defaultRowColourCombo = new QComboBox;
|
||||
m_defaultRowColourCombo->setModel(m_parentMainWidget->document()->clutModel());
|
||||
x28Layout->addWidget(m_defaultScreenColourCombo, 0, 1, 1, 1, Qt::AlignTop);
|
||||
colourLayout->addWidget(m_defaultScreenColourCombo, 0, 1, 1, 1, Qt::AlignTop);
|
||||
connect(m_defaultScreenColourCombo, QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index){ m_parentMainWidget->setDefaultScreenColour(index); });
|
||||
x28Layout->addWidget(m_defaultRowColourCombo, 1, 1, 1, 1, Qt::AlignTop);
|
||||
colourLayout->addWidget(m_defaultRowColourCombo, 1, 1, 1, 1, Qt::AlignTop);
|
||||
connect(m_defaultRowColourCombo, QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index){ m_parentMainWidget->setDefaultRowColour(index); });
|
||||
|
||||
// CLUT remapping
|
||||
x28Layout->addWidget(new QLabel(tr("CLUT remapping")), 2, 0, 1, 1);
|
||||
colourLayout->addWidget(new QLabel(tr("CLUT remapping")), 2, 0, 1, 1);
|
||||
m_colourTableCombo = new QComboBox;
|
||||
m_colourTableCombo->addItem("Fore 0 Back 0");
|
||||
m_colourTableCombo->addItem("Fore 0 Back 1");
|
||||
@@ -67,91 +63,44 @@ PageEnhancementsDockWidget::PageEnhancementsDockWidget(TeletextWidget *parent):
|
||||
m_colourTableCombo->addItem("Fore 2 Back 1");
|
||||
m_colourTableCombo->addItem("Fore 2 Back 2");
|
||||
m_colourTableCombo->addItem("Fore 2 Back 3");
|
||||
x28Layout->addWidget(m_colourTableCombo, 2, 1, 1, 1, Qt::AlignTop);
|
||||
colourLayout->addWidget(m_colourTableCombo, 2, 1, 1, 1, Qt::AlignTop);
|
||||
connect(m_colourTableCombo, QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index){ m_parentMainWidget->setColourTableRemap(index); });
|
||||
|
||||
// Black background colour substitution
|
||||
m_blackBackgroundSubstAct = new QCheckBox("Black background colour substitution");
|
||||
x28Layout->addWidget(m_blackBackgroundSubstAct, 3, 0, 1, 2, Qt::AlignTop);
|
||||
colourLayout->addWidget(m_blackBackgroundSubstAct, 3, 0, 1, 2, Qt::AlignTop);
|
||||
connect(m_blackBackgroundSubstAct, &QCheckBox::stateChanged, m_parentMainWidget, &TeletextWidget::setBlackBackgroundSubst);
|
||||
|
||||
// Add group box to the main layout
|
||||
colourGroupBox->setLayout(colourLayout);
|
||||
pageEnhancementsLayout->addWidget(colourGroupBox);
|
||||
|
||||
|
||||
// Side panels group box and layout
|
||||
QGroupBox *sidePanelsGroupBox = new QGroupBox(tr("Side panels"));
|
||||
QGridLayout *sidePanelsLayout = new QGridLayout;
|
||||
|
||||
// Side panel columns
|
||||
x28Layout->addWidget(new QLabel(tr("Left side panel columns")), 4, 0, 1, 1);
|
||||
sidePanelsLayout->addWidget(new QLabel(tr("Left side panel columns")), 0, 0, 1, 1);
|
||||
m_leftSidePanelSpinBox = new QSpinBox(this);
|
||||
m_leftSidePanelSpinBox->setMaximum(16);
|
||||
x28Layout->addWidget(m_leftSidePanelSpinBox, 4, 1, 1, 1, Qt::AlignTop);
|
||||
sidePanelsLayout->addWidget(m_leftSidePanelSpinBox, 0, 1, 1, 1, Qt::AlignTop);
|
||||
connect(m_leftSidePanelSpinBox, QOverload<int>::of(&QSpinBox::valueChanged), [=](int index){ setLeftSidePanelWidth(index); });
|
||||
|
||||
x28Layout->addWidget(new QLabel(tr("Right side panel columns")), 5, 0, 1, 1);
|
||||
sidePanelsLayout->addWidget(new QLabel(tr("Right side panel columns")), 1, 0, 1, 1);
|
||||
m_rightSidePanelSpinBox = new QSpinBox(this);
|
||||
m_rightSidePanelSpinBox->setMaximum(16);
|
||||
x28Layout->addWidget(m_rightSidePanelSpinBox, 5, 1, 1, 1, Qt::AlignTop);
|
||||
sidePanelsLayout->addWidget(m_rightSidePanelSpinBox, 1, 1, 1, 1, Qt::AlignTop);
|
||||
connect(m_rightSidePanelSpinBox, QOverload<int>::of(&QSpinBox::valueChanged), [=](int index){ setRightSidePanelWidth(index); });
|
||||
|
||||
// Side panels status
|
||||
m_sidePanelStatusAct = new QCheckBox("Side panels at level 3.5 only");
|
||||
x28Layout->addWidget(m_sidePanelStatusAct, 6, 0, 1, 2, Qt::AlignTop);
|
||||
sidePanelsLayout->addWidget(m_sidePanelStatusAct, 2, 0, 1, 2, Qt::AlignTop);
|
||||
connect(m_sidePanelStatusAct, &QCheckBox::stateChanged, m_parentMainWidget, &TeletextWidget::setSidePanelAtL35Only);
|
||||
|
||||
x28GroupBox->setLayout(x28Layout);
|
||||
pageEnhancementsLayout->addWidget(x28GroupBox);
|
||||
|
||||
QGroupBox *x27GroupBox = new QGroupBox(tr("X/27 links - Level 2.5 and 3.5"));
|
||||
QGridLayout *x27Layout = new QGridLayout;
|
||||
|
||||
// Link functions
|
||||
x27Layout->addWidget(new QLabel(tr("GPOP")), 1, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("POP")), 2, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("GDRCS")), 3, 0, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("DRCS")), 4, 0, 1, 1);
|
||||
|
||||
// Labels across the top
|
||||
x27Layout->addWidget(new QLabel(tr("L2.5")), 0, 1, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("L3.5")), 0, 2, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("Page no")), 0, 3, 1, 1);
|
||||
x27Layout->addWidget(new QLabel(tr("Sub pages required")), 0, 4, 1, 1);
|
||||
|
||||
QLabel *level3p5OnlyLabel = new QLabel(tr("Level 3.5 only"));
|
||||
level3p5OnlyLabel->setAlignment(Qt::AlignCenter);
|
||||
x27Layout->addWidget(level3p5OnlyLabel, 5, 0, 1, 5);
|
||||
|
||||
m_pageNumberValidator = new QRegExpValidator(QRegExp("[1-8][0-9A-Fa-f][0-9A-Fa-f]"), this);
|
||||
|
||||
for (int i=0; i<8; i++) {
|
||||
if (i < 4) {
|
||||
// Required at which Levels
|
||||
m_composeLinkLevelCheckbox[i][0] = new QCheckBox(this);
|
||||
x27Layout->addWidget(m_composeLinkLevelCheckbox[i][0], i+1, 1, 1, 1);
|
||||
connect(m_composeLinkLevelCheckbox[i][0], &QCheckBox::stateChanged, [=](bool active) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkLevel2p5(i, active); });
|
||||
m_composeLinkLevelCheckbox[i][1] = new QCheckBox(this);
|
||||
x27Layout->addWidget(m_composeLinkLevelCheckbox[i][1], i+1, 2, 1, 1);
|
||||
connect(m_composeLinkLevelCheckbox[i][1], &QCheckBox::stateChanged, [=](bool active) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkLevel3p5(i, active); });
|
||||
} else {
|
||||
// Selectable link functions for Level 3.5
|
||||
m_composeLinkFunctionComboBox[i-4] = new QComboBox;
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("GPOP");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("POP");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("GDRCS");
|
||||
m_composeLinkFunctionComboBox[i-4]->addItem("DRCS");
|
||||
x27Layout->addWidget(m_composeLinkFunctionComboBox[i-4], i+2, 0, 1, 1, Qt::AlignTop);
|
||||
connect(m_composeLinkFunctionComboBox[i-4], QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index) { m_parentMainWidget->document()->currentSubPage()->setComposeLinkFunction(i, index); } );
|
||||
}
|
||||
// Page link
|
||||
m_composeLinkPageNumberLineEdit[i] = new QLineEdit("100");
|
||||
m_composeLinkPageNumberLineEdit[i]->setMaxLength(3);
|
||||
m_composeLinkPageNumberLineEdit[i]->setInputMask(">DHH");
|
||||
m_composeLinkPageNumberLineEdit[i]->setValidator(m_pageNumberValidator);
|
||||
x27Layout->addWidget(m_composeLinkPageNumberLineEdit[i], i+(i<4 ? 1 : 2), 3, 1, 1);
|
||||
connect(m_composeLinkPageNumberLineEdit[i], &QLineEdit::textEdited, [=](QString value) { setComposeLinkPageNumber(i, value); } );
|
||||
|
||||
// Sub page numbers required
|
||||
m_composeLinkSubPageNumbersLineEdit[i] = new QLineEdit(this);
|
||||
x27Layout->addWidget(m_composeLinkSubPageNumbersLineEdit[i], i+(i<4 ? 1 : 2), 4, 1, 1);
|
||||
connect(m_composeLinkSubPageNumbersLineEdit[i], &QLineEdit::textEdited, [=](QString value) { setComposeLinkSubPageNumbers(i, value); } );
|
||||
}
|
||||
|
||||
x27GroupBox->setLayout(x27Layout);
|
||||
pageEnhancementsLayout->addWidget(x27GroupBox);
|
||||
// Add group box to the main layout
|
||||
sidePanelsGroupBox->setLayout(sidePanelsLayout);
|
||||
pageEnhancementsLayout->addWidget(sidePanelsGroupBox);
|
||||
|
||||
pageEnhancementsLayout->addStretch(1);
|
||||
|
||||
@@ -181,60 +130,6 @@ void PageEnhancementsDockWidget::setRightSidePanelWidth(int newRightPanelSize)
|
||||
m_parentMainWidget->setSidePanelWidths(m_leftSidePanelSpinBox->value(), newRightPanelSize);
|
||||
}
|
||||
|
||||
void PageEnhancementsDockWidget::setComposeLinkPageNumber(int linkNumber, const QString &newPageNumberString)
|
||||
{
|
||||
// The LineEdit should check if a valid hex number was entered, but just in case...
|
||||
bool newPageNumberOk;
|
||||
int newPageNumberRead = newPageNumberString.toInt(&newPageNumberOk, 16);
|
||||
if ((!newPageNumberOk) || newPageNumberRead < 0x100 || newPageNumberRead > 0x8ff)
|
||||
return;
|
||||
|
||||
// Stored as page link with relative magazine number, convert from absolute page number that was entered
|
||||
newPageNumberRead ^= (m_parentMainWidget->document()->pageNumber() & 0x700);
|
||||
m_parentMainWidget->document()->currentSubPage()->setComposeLinkPageNumber(linkNumber, newPageNumberRead);
|
||||
}
|
||||
|
||||
void PageEnhancementsDockWidget::setComposeLinkSubPageNumbers(int linkNumber, const QString &newSubPagesString)
|
||||
{
|
||||
int newSubPageCodes = 0x0000;
|
||||
|
||||
if (!newSubPagesString.isEmpty()) {
|
||||
// Turn user-entered comma separated subpages and subpage-ranges into bits
|
||||
// First we do the "comma separated"
|
||||
const QStringList items = newSubPagesString.split(QLatin1Char(','), QString::SkipEmptyParts);
|
||||
// Now see if there's valid single numbers or ranges between the commas
|
||||
for (const QString &item : items) {
|
||||
if (item.isEmpty())
|
||||
return;
|
||||
if (item.contains(QLatin1Char('-'))) {
|
||||
// Dash found, should be a range of subpages: check for two things either side of dash
|
||||
const QStringList rangeItems = item.split('-');
|
||||
if (rangeItems.count() != 2)
|
||||
return;
|
||||
// Now check if the two things are valid numbers 0-15, with first number less than second
|
||||
bool ok1, ok2;
|
||||
const int number1 = rangeItems[0].toInt(&ok1);
|
||||
const int number2 = rangeItems[1].toInt(&ok2);
|
||||
if (!ok1 || !ok2 || number1 < 0 || number2 < 0 || number1 > 15 || number2 > 15 || number2 < number1)
|
||||
return;
|
||||
// Yes, it is a valid range. Apply it to the result
|
||||
for (int i=number1; i<=number2; i++)
|
||||
newSubPageCodes |= (1 << i);
|
||||
} else {
|
||||
// A single thing (maybe extracted between commas): check if the thing is a number 0-15
|
||||
bool ok;
|
||||
const int number = item.toInt(&ok);
|
||||
if (!ok || number < 0 || number > 15)
|
||||
return;
|
||||
// Yes, it is a valid number. Apply it to the result
|
||||
newSubPageCodes |= (1 << number);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
m_parentMainWidget->document()->currentSubPage()->setComposeLinkSubPageCodes(linkNumber, newSubPageCodes);
|
||||
}
|
||||
|
||||
void PageEnhancementsDockWidget::updateWidgets()
|
||||
{
|
||||
int leftSidePanelColumnsResult = 0;
|
||||
@@ -268,64 +163,4 @@ void PageEnhancementsDockWidget::updateWidgets()
|
||||
m_sidePanelStatusAct->blockSignals(true);
|
||||
m_sidePanelStatusAct->setChecked(!m_parentMainWidget->document()->currentSubPage()->sidePanelStatusL25());
|
||||
m_sidePanelStatusAct->blockSignals(false);
|
||||
|
||||
for (int i=0; i<8; i++) {
|
||||
if (i >= 4) {
|
||||
m_composeLinkFunctionComboBox[i-4]->blockSignals(true);
|
||||
m_composeLinkFunctionComboBox[i-4]->setCurrentIndex(m_parentMainWidget->document()->currentSubPage()->composeLinkFunction(i));
|
||||
m_composeLinkFunctionComboBox[i-4]->blockSignals(false);
|
||||
} else {
|
||||
m_composeLinkLevelCheckbox[i][0]->blockSignals(true);
|
||||
m_composeLinkLevelCheckbox[i][0]->setChecked(m_parentMainWidget->document()->currentSubPage()->composeLinkLevel2p5(i));
|
||||
m_composeLinkLevelCheckbox[i][0]->blockSignals(false);
|
||||
m_composeLinkLevelCheckbox[i][1]->blockSignals(true);
|
||||
m_composeLinkLevelCheckbox[i][1]->setChecked(m_parentMainWidget->document()->currentSubPage()->composeLinkLevel3p5(i));
|
||||
m_composeLinkLevelCheckbox[i][1]->blockSignals(false);
|
||||
}
|
||||
// Stored as page link with relative magazine number, convert to absolute page number for display
|
||||
int absoluteLinkPageNumber = m_parentMainWidget->document()->currentSubPage()->composeLinkPageNumber(i) ^ (m_parentMainWidget->document()->pageNumber() & 0x700);
|
||||
// Fix magazine 0 to 8
|
||||
if ((absoluteLinkPageNumber & 0x700) == 0x000)
|
||||
absoluteLinkPageNumber |= 0x800;
|
||||
m_composeLinkPageNumberLineEdit[i]->blockSignals(true);
|
||||
m_composeLinkPageNumberLineEdit[i]->setText(QString::number(absoluteLinkPageNumber, 16).toUpper());
|
||||
m_composeLinkPageNumberLineEdit[i]->blockSignals(false);
|
||||
|
||||
// Turn subpage bits into user-friendly comma separated numbers and number-ranges
|
||||
QString rangeString;
|
||||
|
||||
if (m_parentMainWidget->document()->currentSubPage()->composeLinkSubPageCodes(i) != 0x0000) {
|
||||
// First build a list of consecutive ranges seen
|
||||
// The "b-index" is based on https://codereview.stackexchange.com/a/90074
|
||||
QMap<int, QPair<int, int>> ranges;
|
||||
int index = 0;
|
||||
for (int b=0; b<16; b++)
|
||||
if ((m_parentMainWidget->document()->currentSubPage()->composeLinkSubPageCodes(i) >> b) & 0x01) {
|
||||
if (!ranges.contains(b-index))
|
||||
ranges.insert(b-index, qMakePair(b, b));
|
||||
else
|
||||
ranges[b-index].second = b;
|
||||
index++;
|
||||
}
|
||||
// Now go through the list and add single numbers or ranges as appropriate
|
||||
QPair<int, int> range;
|
||||
foreach (range, ranges) {
|
||||
// For second and subsequent entries only, append a comma first
|
||||
if (!rangeString.isEmpty())
|
||||
rangeString.append(',');
|
||||
// Append the single number or the first number of the range
|
||||
rangeString.append(QString("%1").arg(range.first));
|
||||
// If that was part of a range and not a single orphaned number
|
||||
if (range.first != range.second) {
|
||||
// Ranges of 3 or more use a dash. A range of 2 can make do with a comma
|
||||
rangeString.append((range.first+1 == range.second) ? ',' : '-');
|
||||
// Append the second number of the range
|
||||
rangeString.append(QString("%1").arg(range.second));
|
||||
}
|
||||
}
|
||||
}
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->blockSignals(true);
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->setText(rangeString);
|
||||
m_composeLinkSubPageNumbersLineEdit[i]->blockSignals(false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,10 +23,7 @@
|
||||
#include <QCheckBox>
|
||||
#include <QComboBox>
|
||||
#include <QDockWidget>
|
||||
#include <QLineEdit>
|
||||
#include <QRegExpValidator>
|
||||
#include <QSpinBox>
|
||||
#include <QString>
|
||||
|
||||
#include "mainwidget.h"
|
||||
|
||||
@@ -41,19 +38,11 @@ public:
|
||||
private:
|
||||
void setLeftSidePanelWidth(int);
|
||||
void setRightSidePanelWidth(int);
|
||||
void setComposeLinkPageNumber(int, const QString &);
|
||||
void setComposeLinkSubPageNumbers(int, const QString &);
|
||||
|
||||
TeletextWidget *m_parentMainWidget;
|
||||
QComboBox *m_defaultScreenColourCombo, *m_defaultRowColourCombo, *m_colourTableCombo;
|
||||
QCheckBox *m_blackBackgroundSubstAct, *m_sidePanelStatusAct;
|
||||
QSpinBox *m_leftSidePanelSpinBox, *m_rightSidePanelSpinBox;
|
||||
|
||||
QCheckBox *m_composeLinkLevelCheckbox[4][2]; // For links 0-3
|
||||
QComboBox *m_composeLinkFunctionComboBox[4]; // For links 4-7; remember to subtract 4!
|
||||
QLineEdit *m_composeLinkPageNumberLineEdit[8], *m_composeLinkSubPageNumbersLineEdit[8];
|
||||
|
||||
QRegExpValidator *m_pageNumberValidator;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -12,6 +12,7 @@ HEADERS = decode.h \
|
||||
mainwindow.h \
|
||||
pagebase.h \
|
||||
pagex26base.h \
|
||||
pagecomposelinksdockwidget.h \
|
||||
pageenhancementsdockwidget.h \
|
||||
pageoptionsdockwidget.h \
|
||||
palettedockwidget.h \
|
||||
@@ -30,6 +31,7 @@ SOURCES = decode.cpp \
|
||||
mainwindow.cpp \
|
||||
pagebase.cpp \
|
||||
pagex26base.cpp \
|
||||
pagecomposelinksdockwidget.cpp \
|
||||
pageenhancementsdockwidget.cpp \
|
||||
pageoptionsdockwidget.cpp \
|
||||
palettedockwidget.cpp \
|
||||
|
||||
Reference in New Issue
Block a user