Compare commits
26 Commits
0.6.3-beta
...
0.6.4-beta
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
343fd2cf26 | ||
|
|
d184c50246 | ||
|
|
9045160d3a | ||
|
|
98071d823c | ||
|
|
eb0dd7266b | ||
|
|
c32876600b | ||
|
|
fbdde54fe4 | ||
|
|
54bdf1783a | ||
|
|
23a0d3c47e | ||
|
|
9b4ee66e1c | ||
|
|
7cd632b4e2 | ||
|
|
a0dd98144a | ||
|
|
80a450e0de | ||
|
|
f90ea6ca9c | ||
|
|
dfff4c5e17 | ||
|
|
e9855ceba3 | ||
|
|
238515006d | ||
|
|
771bc66b89 | ||
|
|
5b688d47ea | ||
|
|
05cf313b63 | ||
|
|
12649e3adf | ||
|
|
539c6c9b32 | ||
|
|
5d0241ad43 | ||
|
|
9e64033d7c | ||
|
|
ecefa03559 | ||
|
|
3db1815772 |
17
decode.cpp
17
decode.cpp
@@ -169,7 +169,8 @@ TeletextPageDecode::TeletextPageDecode()
|
|||||||
m_rowHeight[r] = NormalHeight;
|
m_rowHeight[r] = NormalHeight;
|
||||||
for (int c=0; c<72; c++) {
|
for (int c=0; c<72; c++) {
|
||||||
if (c < 40) {
|
if (c < 40) {
|
||||||
m_cellLevel1Mosaic[r][c] = false;
|
m_cellLevel1MosaicAttr[r][c] = false;
|
||||||
|
m_cellLevel1MosaicChar[r][c] = false;
|
||||||
m_cellLevel1CharSet[r][c] = 0;
|
m_cellLevel1CharSet[r][c] = 0;
|
||||||
}
|
}
|
||||||
m_refresh[r][c] = true;
|
m_refresh[r][c] = true;
|
||||||
@@ -723,13 +724,18 @@ void TeletextPageDecode::decodeRow(int r)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Level 1 character
|
// Level 1 character
|
||||||
|
if (c < 40) {
|
||||||
|
m_cellLevel1CharSet[r][c] = level1CharSet;
|
||||||
|
m_cellLevel1MosaicAttr[r][c] = level1Mosaics;
|
||||||
|
// Set to true on mosaic CHARACTER - not on blast through alphanumerics
|
||||||
|
m_cellLevel1MosaicChar[r][c] = level1Mosaics && (m_levelOnePage->character(r, c) & 0x20);
|
||||||
|
}
|
||||||
|
|
||||||
if (c < 40 && m_rowHeight[r] != BottomHalf) {
|
if (c < 40 && m_rowHeight[r] != BottomHalf) {
|
||||||
m_level1ActivePainter.result.character.diacritical = 0;
|
m_level1ActivePainter.result.character.diacritical = 0;
|
||||||
if (m_levelOnePage->character(r, c) >= 0x20) {
|
if (m_levelOnePage->character(r, c) >= 0x20) {
|
||||||
m_level1ActivePainter.result.character.code = m_levelOnePage->character(r, c);
|
m_level1ActivePainter.result.character.code = m_levelOnePage->character(r, c);
|
||||||
// Set to true on mosaic character - not on blast through alphanumerics
|
if (m_cellLevel1MosaicChar[r][c]) {
|
||||||
m_cellLevel1Mosaic[r][c] = level1Mosaics && (m_levelOnePage->character(r, c) & 0x20);
|
|
||||||
if (m_cellLevel1Mosaic[r][c]) {
|
|
||||||
m_level1ActivePainter.result.character.set = 24 + (level1SeparatedMosaics || m_level1ActivePainter.attribute.display.underlineSeparated);
|
m_level1ActivePainter.result.character.set = 24 + (level1SeparatedMosaics || m_level1ActivePainter.attribute.display.underlineSeparated);
|
||||||
level1HoldMosaicCharacter = m_levelOnePage->character(r, c);
|
level1HoldMosaicCharacter = m_levelOnePage->character(r, c);
|
||||||
level1HoldMosaicSeparated = level1SeparatedMosaics;
|
level1HoldMosaicSeparated = level1SeparatedMosaics;
|
||||||
@@ -743,9 +749,6 @@ void TeletextPageDecode::decodeRow(int r)
|
|||||||
// In side panel or on bottom half of Level 1 double height row, no Level 1 characters here
|
// In side panel or on bottom half of Level 1 double height row, no Level 1 characters here
|
||||||
m_level1ActivePainter.result.character = { 0x20, 0, 0 };
|
m_level1ActivePainter.result.character = { 0x20, 0, 0 };
|
||||||
|
|
||||||
if (c < 40)
|
|
||||||
m_cellLevel1CharSet[r][c] = level1CharSet;
|
|
||||||
|
|
||||||
// X/26 characters
|
// X/26 characters
|
||||||
|
|
||||||
// Used to track if character was placed by X/26 data
|
// Used to track if character was placed by X/26 data
|
||||||
|
|||||||
6
decode.h
6
decode.h
@@ -64,7 +64,8 @@ public:
|
|||||||
bool cellItalic(int r, int c) const { return m_cell[r][c].attribute.style.italic; };
|
bool cellItalic(int r, int c) const { return m_cell[r][c].attribute.style.italic; };
|
||||||
bool cellProportional(int r, int c) const { return m_cell[r][c].attribute.style.proportional; };
|
bool cellProportional(int r, int c) const { return m_cell[r][c].attribute.style.proportional; };
|
||||||
|
|
||||||
bool level1MosaicAttribute(int r, int c) const { return m_cellLevel1Mosaic[r][c]; };
|
bool level1MosaicAttr(int r, int c) const { return m_cellLevel1MosaicAttr[r][c]; };
|
||||||
|
bool level1MosaicChar(int r, int c) const { return m_cellLevel1MosaicChar[r][c]; };
|
||||||
int level1CharSet(int r, int c) const { return m_cellLevel1CharSet[r][c]; };
|
int level1CharSet(int r, int c) const { return m_cellLevel1CharSet[r][c]; };
|
||||||
|
|
||||||
RowHeight rowHeight(int r) const { return m_rowHeight[r]; };
|
RowHeight rowHeight(int r) const { return m_rowHeight[r]; };
|
||||||
@@ -261,7 +262,8 @@ private:
|
|||||||
|
|
||||||
bool m_refresh[25][72];
|
bool m_refresh[25][72];
|
||||||
textCell m_cell[25][72];
|
textCell m_cell[25][72];
|
||||||
bool m_cellLevel1Mosaic[25][40];
|
bool m_cellLevel1MosaicAttr[25][40];
|
||||||
|
bool m_cellLevel1MosaicChar[25][40];
|
||||||
int m_cellLevel1CharSet[25][40];
|
int m_cellLevel1CharSet[25][40];
|
||||||
LevelOnePage* m_levelOnePage;
|
LevelOnePage* m_levelOnePage;
|
||||||
int m_fullRowColour[25];
|
int m_fullRowColour[25];
|
||||||
|
|||||||
@@ -21,8 +21,10 @@
|
|||||||
#include <QByteArray>
|
#include <QByteArray>
|
||||||
#include <QByteArrayList>
|
#include <QByteArrayList>
|
||||||
#include <QClipboard>
|
#include <QClipboard>
|
||||||
|
#include <QImage>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
|
#include <QSet>
|
||||||
|
|
||||||
#include "levelonecommands.h"
|
#include "levelonecommands.h"
|
||||||
|
|
||||||
@@ -38,13 +40,10 @@ LevelOneCommand::LevelOneCommand(TeletextDocument *teletextDocument, QUndoComman
|
|||||||
m_firstDo = true;
|
m_firstDo = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QByteArrayList LevelOneCommand::storeCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn)
|
||||||
StoreOldCharactersCommand::StoreOldCharactersCommand(TeletextDocument *teletextDocument, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
{
|
||||||
}
|
QByteArrayList result;
|
||||||
|
|
||||||
void StoreOldCharactersCommand::storeOldCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn)
|
|
||||||
{
|
|
||||||
for (int r=topRow; r<=bottomRow; r++) {
|
for (int r=topRow; r<=bottomRow; r++) {
|
||||||
QByteArray rowArray;
|
QByteArray rowArray;
|
||||||
|
|
||||||
@@ -57,12 +56,17 @@ void StoreOldCharactersCommand::storeOldCharacters(int topRow, int leftColumn, i
|
|||||||
// Not sure if this is really necessary as out-of-bounds access might not occur?
|
// Not sure if this is really necessary as out-of-bounds access might not occur?
|
||||||
rowArray.append(0x7f);
|
rowArray.append(0x7f);
|
||||||
|
|
||||||
m_oldCharacters.append(rowArray);
|
result.append(rowArray);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void StoreOldCharactersCommand::retrieveOldCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn)
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void LevelOneCommand::retrieveCharacters(int topRow, int leftColumn, const QByteArrayList &storedChars)
|
||||||
{
|
{
|
||||||
|
const int bottomRow = topRow + storedChars.size() - 1;
|
||||||
|
const int rightColumn = leftColumn + storedChars.at(0).size() - 1;
|
||||||
|
|
||||||
int arrayR = 0;
|
int arrayR = 0;
|
||||||
int arrayC;
|
int arrayC;
|
||||||
|
|
||||||
@@ -71,7 +75,7 @@ void StoreOldCharactersCommand::retrieveOldCharacters(int topRow, int leftColumn
|
|||||||
for (int c=leftColumn; c<=rightColumn; c++)
|
for (int c=leftColumn; c<=rightColumn; c++)
|
||||||
// Guard against size of pasted block going beyond last line or column
|
// Guard against size of pasted block going beyond last line or column
|
||||||
if (r < 25 && c < 40) {
|
if (r < 25 && c < 40) {
|
||||||
m_teletextDocument->currentSubPage()->setCharacter(r, c, m_oldCharacters[arrayR].at(arrayC));
|
m_teletextDocument->currentSubPage()->setCharacter(r, c, storedChars.at(arrayR).at(arrayC));
|
||||||
|
|
||||||
arrayC++;
|
arrayC++;
|
||||||
}
|
}
|
||||||
@@ -148,12 +152,19 @@ bool TypeCharacterCommand::mergeWith(const QUndoCommand *command)
|
|||||||
ToggleMosaicBitCommand::ToggleMosaicBitCommand(TeletextDocument *teletextDocument, unsigned char bitToToggle, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
ToggleMosaicBitCommand::ToggleMosaicBitCommand(TeletextDocument *teletextDocument, unsigned char bitToToggle, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
||||||
{
|
{
|
||||||
m_oldCharacter = teletextDocument->currentSubPage()->character(m_row, m_column);
|
m_oldCharacter = teletextDocument->currentSubPage()->character(m_row, m_column);
|
||||||
|
|
||||||
if (bitToToggle == 0x20 || bitToToggle == 0x7f)
|
if (bitToToggle == 0x20 || bitToToggle == 0x7f)
|
||||||
|
// Clear or fill the whole mosaic character
|
||||||
m_newCharacter = bitToToggle;
|
m_newCharacter = bitToToggle;
|
||||||
else if (bitToToggle == 0x66)
|
else if (bitToToggle == 0x66)
|
||||||
|
// Dither
|
||||||
m_newCharacter = (m_row & 1) ? 0x66 : 0x39;
|
m_newCharacter = (m_row & 1) ? 0x66 : 0x39;
|
||||||
else
|
else if (m_oldCharacter & 0x20)
|
||||||
|
// Previous character was mosaic, just toggle the bit(s)
|
||||||
m_newCharacter = m_oldCharacter ^ bitToToggle;
|
m_newCharacter = m_oldCharacter ^ bitToToggle;
|
||||||
|
else
|
||||||
|
// Previous character was blast-through, change to mosaic and set bit alone
|
||||||
|
m_newCharacter = bitToToggle | 0x20;
|
||||||
|
|
||||||
setText(QObject::tr("mosaic"));
|
setText(QObject::tr("mosaic"));
|
||||||
|
|
||||||
@@ -308,6 +319,145 @@ bool DeleteKeyCommand::mergeWith(const QUndoCommand *command)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ShiftMosaicsCommand::ShiftMosaicsCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_selectionTopRow = m_teletextDocument->selectionTopRow();
|
||||||
|
m_selectionLeftColumn = m_teletextDocument->selectionLeftColumn();
|
||||||
|
m_selectionBottomRow = m_teletextDocument->selectionBottomRow();
|
||||||
|
m_selectionRightColumn = m_teletextDocument->selectionRightColumn();
|
||||||
|
|
||||||
|
m_selectionCornerRow = m_teletextDocument->selectionCornerRow();
|
||||||
|
m_selectionCornerColumn = m_teletextDocument->selectionCornerColumn();
|
||||||
|
|
||||||
|
m_mosaicList = mosaicList;
|
||||||
|
|
||||||
|
m_oldCharacters = storeCharacters(m_selectionTopRow, m_selectionLeftColumn, m_selectionBottomRow, m_selectionRightColumn);
|
||||||
|
m_newCharacters = m_oldCharacters;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ShiftMosaicsCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
retrieveCharacters(m_selectionTopRow, m_selectionLeftColumn, m_newCharacters);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
|
||||||
|
m_teletextDocument->setSelectionCorner(m_selectionCornerRow, m_selectionCornerColumn);
|
||||||
|
m_teletextDocument->moveCursor(m_row, m_column, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ShiftMosaicsCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
retrieveCharacters(m_selectionTopRow, m_selectionLeftColumn, m_oldCharacters);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
|
||||||
|
m_teletextDocument->setSelectionCorner(m_selectionCornerRow, m_selectionCornerColumn);
|
||||||
|
m_teletextDocument->moveCursor(m_row, m_column, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ShiftMosaicsCommand::mergeWith(const QUndoCommand *command)
|
||||||
|
{
|
||||||
|
const ShiftMosaicsCommand *newerCommand = static_cast<const ShiftMosaicsCommand *>(command);
|
||||||
|
|
||||||
|
if (m_subPageIndex != newerCommand->m_subPageIndex || m_selectionTopRow != newerCommand->m_selectionTopRow || m_selectionLeftColumn != newerCommand->m_selectionLeftColumn || m_selectionBottomRow != newerCommand->m_selectionBottomRow || m_selectionRightColumn != newerCommand->m_selectionRightColumn)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
m_newCharacters = newerCommand->m_newCharacters;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
ShiftMosaicsUpCommand::ShiftMosaicsUpCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent) : ShiftMosaicsCommand(teletextDocument, mosaicList, parent)
|
||||||
|
{
|
||||||
|
for (int r=m_selectionTopRow; r<=m_selectionBottomRow; r++)
|
||||||
|
for (int c=m_selectionLeftColumn; c<=m_selectionRightColumn; c++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, c))) {
|
||||||
|
const int lr = r - m_selectionTopRow;
|
||||||
|
const int lc = c - m_selectionLeftColumn;
|
||||||
|
unsigned char mosaicWrap = 0x00;
|
||||||
|
|
||||||
|
for (int sr=r+1; sr<=m_selectionBottomRow; sr++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(sr, c))) {
|
||||||
|
mosaicWrap = m_newCharacters[sr - m_selectionTopRow][lc];
|
||||||
|
mosaicWrap = ((mosaicWrap & 0x01) << 4) | ((mosaicWrap & 0x02) << 5);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_newCharacters[lr][lc] = ((m_newCharacters[lr][lc] >> 2) & 0x07) | ((m_newCharacters[lr][lc] & 0x40) >> 3) | mosaicWrap | 0x20;
|
||||||
|
}
|
||||||
|
|
||||||
|
setText(QObject::tr("shift mosaics up"));
|
||||||
|
}
|
||||||
|
|
||||||
|
ShiftMosaicsDownCommand::ShiftMosaicsDownCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent) : ShiftMosaicsCommand(teletextDocument, mosaicList, parent)
|
||||||
|
{
|
||||||
|
for (int r=m_selectionBottomRow; r>=m_selectionTopRow; r--)
|
||||||
|
for (int c=m_selectionLeftColumn; c<=m_selectionRightColumn; c++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, c))) {
|
||||||
|
const int lr = r - m_selectionTopRow;
|
||||||
|
const int lc = c - m_selectionLeftColumn;
|
||||||
|
unsigned char mosaicWrap = 0x00;
|
||||||
|
|
||||||
|
for (int sr=r-1; sr>=m_selectionTopRow; sr--)
|
||||||
|
if (m_mosaicList.contains(qMakePair(sr, c))) {
|
||||||
|
mosaicWrap = m_newCharacters[sr - m_selectionTopRow][lc];
|
||||||
|
mosaicWrap = ((mosaicWrap & 0x10) >> 4) | ((mosaicWrap & 0x40) >> 5);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_newCharacters[lr][lc] = ((m_newCharacters[lr][lc] & 0x07) << 2) | ((m_newCharacters[lr][lc] & 0x08) << 3) | mosaicWrap | 0x20;
|
||||||
|
}
|
||||||
|
|
||||||
|
setText(QObject::tr("shift mosaics down"));
|
||||||
|
}
|
||||||
|
|
||||||
|
ShiftMosaicsLeftCommand::ShiftMosaicsLeftCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent) : ShiftMosaicsCommand(teletextDocument, mosaicList, parent)
|
||||||
|
{
|
||||||
|
for (int c=m_selectionLeftColumn; c<=m_selectionRightColumn; c++)
|
||||||
|
for (int r=m_selectionTopRow; r<=m_selectionBottomRow; r++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, c))) {
|
||||||
|
const int lr = r - m_selectionTopRow;
|
||||||
|
const int lc = c - m_selectionLeftColumn;
|
||||||
|
unsigned char mosaicWrap = 0x00;
|
||||||
|
|
||||||
|
for (int sc=c+1; sc<=m_selectionRightColumn; sc++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, sc))) {
|
||||||
|
mosaicWrap = m_newCharacters[lr][sc - m_selectionLeftColumn];
|
||||||
|
mosaicWrap = ((mosaicWrap & 0x05) << 1) | ((mosaicWrap & 0x10) << 2);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_newCharacters[lr][lc] = ((m_newCharacters[lr][lc] & 0x0a) >> 1) | ((m_newCharacters[lr][lc] & 0x40) >> 2) | mosaicWrap | 0x20;
|
||||||
|
}
|
||||||
|
|
||||||
|
setText(QObject::tr("shift mosaics left"));
|
||||||
|
}
|
||||||
|
|
||||||
|
ShiftMosaicsRightCommand::ShiftMosaicsRightCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent) : ShiftMosaicsCommand(teletextDocument, mosaicList, parent)
|
||||||
|
{
|
||||||
|
for (int c=m_selectionRightColumn; c>=m_selectionLeftColumn; c--)
|
||||||
|
for (int r=m_selectionTopRow; r<=m_selectionBottomRow; r++)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, c))) {
|
||||||
|
const int lr = r - m_selectionTopRow;
|
||||||
|
const int lc = c - m_selectionLeftColumn;
|
||||||
|
unsigned char mosaicWrap = 0x00;
|
||||||
|
|
||||||
|
for (int sc=c-1; sc>=m_selectionLeftColumn; sc--)
|
||||||
|
if (m_mosaicList.contains(qMakePair(r, sc))) {
|
||||||
|
mosaicWrap = m_newCharacters[lr][sc - m_selectionLeftColumn];
|
||||||
|
mosaicWrap = ((mosaicWrap & 0x0a) >> 1) | ((mosaicWrap & 0x40) >> 2);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_newCharacters[lr][lc] = ((m_newCharacters[lr][lc] & 0x05) << 1) | ((m_newCharacters[lr][lc] & 0x10) << 2) | mosaicWrap | 0x20;
|
||||||
|
}
|
||||||
|
|
||||||
|
setText(QObject::tr("shift mosaics right"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
InsertRowCommand::InsertRowCommand(TeletextDocument *teletextDocument, bool copyRow, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
InsertRowCommand::InsertRowCommand(TeletextDocument *teletextDocument, bool copyRow, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
||||||
{
|
{
|
||||||
m_copyRow = copyRow;
|
m_copyRow = copyRow;
|
||||||
@@ -394,7 +544,7 @@ void DeleteRowCommand::undo()
|
|||||||
|
|
||||||
|
|
||||||
#ifndef QT_NO_CLIPBOARD
|
#ifndef QT_NO_CLIPBOARD
|
||||||
CutCommand::CutCommand(TeletextDocument *teletextDocument, QUndoCommand *parent) : StoreOldCharactersCommand(teletextDocument, parent)
|
CutCommand::CutCommand(TeletextDocument *teletextDocument, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
||||||
{
|
{
|
||||||
m_selectionTopRow = m_teletextDocument->selectionTopRow();
|
m_selectionTopRow = m_teletextDocument->selectionTopRow();
|
||||||
m_selectionBottomRow = m_teletextDocument->selectionBottomRow();
|
m_selectionBottomRow = m_teletextDocument->selectionBottomRow();
|
||||||
@@ -404,7 +554,7 @@ CutCommand::CutCommand(TeletextDocument *teletextDocument, QUndoCommand *parent)
|
|||||||
m_selectionCornerRow = m_teletextDocument->selectionCornerRow();
|
m_selectionCornerRow = m_teletextDocument->selectionCornerRow();
|
||||||
m_selectionCornerColumn = m_teletextDocument->selectionCornerColumn();
|
m_selectionCornerColumn = m_teletextDocument->selectionCornerColumn();
|
||||||
|
|
||||||
storeOldCharacters(m_selectionTopRow, m_selectionLeftColumn, m_selectionBottomRow, m_selectionRightColumn);
|
m_oldCharacters = storeCharacters(m_selectionTopRow, m_selectionLeftColumn, m_selectionBottomRow, m_selectionRightColumn);
|
||||||
|
|
||||||
setText(QObject::tr("cut"));
|
setText(QObject::tr("cut"));
|
||||||
}
|
}
|
||||||
@@ -425,7 +575,7 @@ void CutCommand::undo()
|
|||||||
{
|
{
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
|
||||||
retrieveOldCharacters(m_selectionTopRow, m_selectionLeftColumn, m_selectionBottomRow, m_selectionRightColumn);
|
retrieveCharacters(m_selectionTopRow, m_selectionLeftColumn, m_oldCharacters);
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
|
||||||
@@ -434,7 +584,7 @@ void CutCommand::undo()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
PasteCommand::PasteCommand(TeletextDocument *teletextDocument, int pageCharSet, QUndoCommand *parent) : StoreOldCharactersCommand(teletextDocument, parent)
|
PasteCommand::PasteCommand(TeletextDocument *teletextDocument, int pageCharSet, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
||||||
{
|
{
|
||||||
const QClipboard *clipboard = QApplication::clipboard();
|
const QClipboard *clipboard = QApplication::clipboard();
|
||||||
const QMimeData *mimeData = clipboard->mimeData();
|
const QMimeData *mimeData = clipboard->mimeData();
|
||||||
@@ -497,9 +647,7 @@ PasteCommand::PasteCommand(TeletextDocument *teletextDocument, int pageCharSet,
|
|||||||
|
|
||||||
if (!m_selectionActive) {
|
if (!m_selectionActive) {
|
||||||
// If selection is NOT active, use the full width of the page to paste.
|
// If selection is NOT active, use the full width of the page to paste.
|
||||||
// The second and subsequent lines will start at column 1, unless the
|
// The second and subsequent lines will start at column 1
|
||||||
// cursor is explicitly on column 0.
|
|
||||||
if (m_pasteLeftColumn != 0)
|
|
||||||
m_pasteLeftColumn = 1;
|
m_pasteLeftColumn = 1;
|
||||||
|
|
||||||
// Check if first word in the first line will fit from the cursor position
|
// Check if first word in the first line will fit from the cursor position
|
||||||
@@ -607,12 +755,81 @@ PasteCommand::PasteCommand(TeletextDocument *teletextDocument, int pageCharSet,
|
|||||||
m_pasteBottomRow = m_pasteTopRow + m_clipboardDataHeight - 1;
|
m_pasteBottomRow = m_pasteTopRow + m_clipboardDataHeight - 1;
|
||||||
m_pasteRightColumn = m_pasteLeftColumn + m_clipboardDataWidth - 1;
|
m_pasteRightColumn = m_pasteLeftColumn + m_clipboardDataWidth - 1;
|
||||||
}
|
}
|
||||||
|
} else if (mimeData->hasImage()) {
|
||||||
|
QImage imageData = qvariant_cast<QImage>(mimeData->imageData());
|
||||||
|
m_plainText = false;
|
||||||
|
// Round up when dividing pixel size into character cell size
|
||||||
|
m_clipboardDataHeight = (imageData.height() + 2) / 3;
|
||||||
|
m_clipboardDataWidth = (imageData.width() + 1) / 2;
|
||||||
|
|
||||||
|
// Format_MonoLSB reverses the bits which makes them easier to shuffle into sixels
|
||||||
|
if (imageData.depth() == 1)
|
||||||
|
imageData.convertTo(QImage::Format_MonoLSB);
|
||||||
|
else
|
||||||
|
// Only pure black and white images convert reliably this way...
|
||||||
|
imageData = imageData.convertToFormat(QImage::Format_MonoLSB, QVector<QRgb>{0x000000ff, 0xffffffff});
|
||||||
|
|
||||||
|
for (int r=0; r<m_clipboardDataHeight; r++)
|
||||||
|
m_pastingCharacters.append(QByteArray(m_clipboardDataWidth, 0x00));
|
||||||
|
|
||||||
|
// Directly read the pixel-bits and convert them to sixels with some funky bit manipulation
|
||||||
|
for (int y=0; y<imageData.height(); y++) {
|
||||||
|
const unsigned char *bytePointer = imageData.constScanLine(y);
|
||||||
|
// Three rows of sixels per character cell
|
||||||
|
const int r = y / 3;
|
||||||
|
// Where to shuffle the bits into the top, middle or bottom row of sixels
|
||||||
|
// Yes it does put the bottom right sixel into bit 5 instead of bit 6;
|
||||||
|
// this gets remedied further on
|
||||||
|
const int yShift = (y % 3) * 2;
|
||||||
|
// The loop does eight horizontal pixels into four character cells at a time
|
||||||
|
for (int x=0; x<imageData.width(); x+=8) {
|
||||||
|
const unsigned char byteScanned = *bytePointer;
|
||||||
|
const int c = x / 2;
|
||||||
|
|
||||||
|
m_pastingCharacters[r][c] = m_pastingCharacters[r][c] | ((byteScanned & 0x03) << yShift);
|
||||||
|
// Since we're doing four character cells at a time, we need to exit the loop
|
||||||
|
// early before we go out of bounds.
|
||||||
|
// Yes it does leave an undefined last column of sixels from images that are an
|
||||||
|
// odd numbered number of pixels wide; this gets remedied further on
|
||||||
|
if (x + 2 >= imageData.width())
|
||||||
|
continue;
|
||||||
|
m_pastingCharacters[r][c+1] = m_pastingCharacters[r][c+1] | (((byteScanned >> 2) & 0x03) << yShift);
|
||||||
|
if (x + 4 >= imageData.width())
|
||||||
|
continue;
|
||||||
|
m_pastingCharacters[r][c+2] = m_pastingCharacters[r][c+2] | (((byteScanned >> 4) & 0x03) << yShift);
|
||||||
|
if (x + 6 >= imageData.width())
|
||||||
|
continue;
|
||||||
|
m_pastingCharacters[r][c+3] = m_pastingCharacters[r][c+3] | (((byteScanned >> 6) & 0x03) << yShift);
|
||||||
|
|
||||||
|
bytePointer++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int r=0; r<m_clipboardDataHeight; r++) {
|
||||||
|
for (int c=0; c<m_clipboardDataWidth; c++)
|
||||||
|
if (m_pastingCharacters.at(r).at(c) & 0x20)
|
||||||
|
// If bit 5 was set, correct this to bit 6
|
||||||
|
// but we keep bit 5 set as all mosaic characters have bit 5 set
|
||||||
|
m_pastingCharacters[r][c] = m_pastingCharacters.at(r).at(c) | 0x40;
|
||||||
|
else
|
||||||
|
// Set bit 5 to have it recognised as a mosaic character
|
||||||
|
m_pastingCharacters[r][c] = m_pastingCharacters.at(r).at(c) | 0x20;
|
||||||
|
// If image was an odd numbered width, neutralise the undefined sixels
|
||||||
|
// on the right half
|
||||||
|
if (imageData.width() & 0x01)
|
||||||
|
m_pastingCharacters[r][m_clipboardDataWidth-1] = m_pastingCharacters.at(r).at(m_clipboardDataWidth-1) & 0x35;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!m_selectionActive) {
|
||||||
|
m_pasteBottomRow = m_row + m_clipboardDataHeight - 1;
|
||||||
|
m_pasteRightColumn = m_column + m_clipboardDataWidth - 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_clipboardDataWidth == 0 || m_clipboardDataHeight == 0)
|
if (m_clipboardDataWidth == 0 || m_clipboardDataHeight == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
storeOldCharacters(m_pasteTopRow, m_pasteLeftColumn, m_pasteBottomRow, m_pasteRightColumn);
|
m_oldCharacters = storeCharacters(m_pasteTopRow, m_pasteLeftColumn, m_pasteBottomRow, m_pasteRightColumn);
|
||||||
|
|
||||||
setText(QObject::tr("paste"));
|
setText(QObject::tr("paste"));
|
||||||
}
|
}
|
||||||
@@ -678,7 +895,7 @@ void PasteCommand::undo()
|
|||||||
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
|
||||||
retrieveOldCharacters(m_pasteTopRow, m_pasteLeftColumn, m_pasteBottomRow, m_pasteRightColumn);
|
retrieveCharacters(m_pasteTopRow, m_pasteLeftColumn, m_oldCharacters);
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
|
||||||
@@ -729,219 +946,3 @@ void DeleteSubPageCommand::undo()
|
|||||||
m_teletextDocument->unDeleteSubPageFromRecycle(m_subPageIndex);
|
m_teletextDocument->unDeleteSubPageFromRecycle(m_subPageIndex);
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex, true);
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
SetFullScreenColourCommand::SetFullScreenColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_oldColour = teletextDocument->currentSubPage()->defaultScreenColour();
|
|
||||||
m_newColour = newColour;
|
|
||||||
|
|
||||||
setText(QObject::tr("full screen colour"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetFullScreenColourCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setDefaultScreenColour(m_newColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetFullScreenColourCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setDefaultScreenColour(m_oldColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SetFullScreenColourCommand::mergeWith(const QUndoCommand *command)
|
|
||||||
{
|
|
||||||
const SetFullScreenColourCommand *newerCommand = static_cast<const SetFullScreenColourCommand *>(command);
|
|
||||||
|
|
||||||
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
m_newColour = newerCommand->m_newColour;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
SetFullRowColourCommand::SetFullRowColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_oldColour = teletextDocument->currentSubPage()->defaultRowColour();
|
|
||||||
m_newColour = newColour;
|
|
||||||
|
|
||||||
setText(QObject::tr("full row colour"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetFullRowColourCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setDefaultRowColour(m_newColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetFullRowColourCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setDefaultRowColour(m_oldColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SetFullRowColourCommand::mergeWith(const QUndoCommand *command)
|
|
||||||
{
|
|
||||||
const SetFullRowColourCommand *newerCommand = static_cast<const SetFullRowColourCommand *>(command);
|
|
||||||
|
|
||||||
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
m_newColour = newerCommand->m_newColour;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
SetCLUTRemapCommand::SetCLUTRemapCommand(TeletextDocument *teletextDocument, int newMap, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_oldMap = teletextDocument->currentSubPage()->colourTableRemap();
|
|
||||||
m_newMap = newMap;
|
|
||||||
|
|
||||||
setText(QObject::tr("CLUT remapping"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetCLUTRemapCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setColourTableRemap(m_newMap);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetCLUTRemapCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setColourTableRemap(m_oldMap);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SetCLUTRemapCommand::mergeWith(const QUndoCommand *command)
|
|
||||||
{
|
|
||||||
const SetCLUTRemapCommand *newerCommand = static_cast<const SetCLUTRemapCommand *>(command);
|
|
||||||
|
|
||||||
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
m_newMap = newerCommand->m_newMap;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
SetBlackBackgroundSubstCommand::SetBlackBackgroundSubstCommand(TeletextDocument *teletextDocument, bool newSub, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_oldSub = teletextDocument->currentSubPage()->blackBackgroundSubst();
|
|
||||||
m_newSub = newSub;
|
|
||||||
|
|
||||||
setText(QObject::tr("black background substitution"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetBlackBackgroundSubstCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setBlackBackgroundSubst(m_newSub);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetBlackBackgroundSubstCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setBlackBackgroundSubst(m_oldSub);
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
emit m_teletextDocument->pageOptionsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SetBlackBackgroundSubstCommand::mergeWith(const QUndoCommand *command)
|
|
||||||
{
|
|
||||||
const SetBlackBackgroundSubstCommand *newerCommand = static_cast<const SetBlackBackgroundSubstCommand *>(command);
|
|
||||||
|
|
||||||
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
setObsolete(true);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
SetColourCommand::SetColourCommand(TeletextDocument *teletextDocument, int colourIndex, int newColour, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_colourIndex = colourIndex;
|
|
||||||
m_oldColour = teletextDocument->currentSubPage()->CLUT(colourIndex);
|
|
||||||
m_newColour = newColour;
|
|
||||||
|
|
||||||
setText(QObject::tr("colour change"));
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetColourCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setCLUT(m_colourIndex, m_newColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->colourChanged(m_colourIndex);
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetColourCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
m_teletextDocument->currentSubPage()->setCLUT(m_colourIndex, m_oldColour);
|
|
||||||
|
|
||||||
emit m_teletextDocument->colourChanged(m_colourIndex);
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ResetCLUTCommand::ResetCLUTCommand(TeletextDocument *teletextDocument, int colourTable, QUndoCommand *parent) : LevelOneCommand(teletextDocument, parent)
|
|
||||||
{
|
|
||||||
m_colourTable = colourTable;
|
|
||||||
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++)
|
|
||||||
m_oldColourEntry[i&7] = teletextDocument->currentSubPage()->CLUT(i);
|
|
||||||
|
|
||||||
setText(QObject::tr("CLUT %1 reset").arg(m_colourTable));
|
|
||||||
}
|
|
||||||
|
|
||||||
void ResetCLUTCommand::redo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++) {
|
|
||||||
m_teletextDocument->currentSubPage()->setCLUT(i, m_teletextDocument->currentSubPage()->CLUT(i, 0));
|
|
||||||
emit m_teletextDocument->colourChanged(i);
|
|
||||||
}
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
void ResetCLUTCommand::undo()
|
|
||||||
{
|
|
||||||
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
|
||||||
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++) {
|
|
||||||
m_teletextDocument->currentSubPage()->setCLUT(i, m_oldColourEntry[i&7]);
|
|
||||||
emit m_teletextDocument->colourChanged(i);
|
|
||||||
}
|
|
||||||
|
|
||||||
emit m_teletextDocument->contentsChanged();
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
#define LEVELONECOMMANDS_H
|
#define LEVELONECOMMANDS_H
|
||||||
|
|
||||||
#include <QByteArrayList>
|
#include <QByteArrayList>
|
||||||
|
#include <QSet>
|
||||||
#include <QUndoCommand>
|
#include <QUndoCommand>
|
||||||
|
|
||||||
#include "document.h"
|
#include "document.h"
|
||||||
@@ -31,23 +32,14 @@ public:
|
|||||||
LevelOneCommand(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
LevelOneCommand(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
QByteArrayList storeCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn);
|
||||||
|
void retrieveCharacters(int topRow, int leftColumn, const QByteArrayList &oldChars);
|
||||||
|
|
||||||
TeletextDocument *m_teletextDocument;
|
TeletextDocument *m_teletextDocument;
|
||||||
int m_subPageIndex, m_row, m_column;
|
int m_subPageIndex, m_row, m_column;
|
||||||
bool m_firstDo;
|
bool m_firstDo;
|
||||||
};
|
};
|
||||||
|
|
||||||
class StoreOldCharactersCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
StoreOldCharactersCommand(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
void storeOldCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn);
|
|
||||||
void retrieveOldCharacters(int topRow, int leftColumn, int bottomRow, int rightColumn);
|
|
||||||
|
|
||||||
QByteArrayList m_oldCharacters;
|
|
||||||
};
|
|
||||||
|
|
||||||
class TypeCharacterCommand : public LevelOneCommand
|
class TypeCharacterCommand : public LevelOneCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -116,6 +108,62 @@ private:
|
|||||||
unsigned char m_oldRowContents[40], m_newRowContents[40];
|
unsigned char m_oldRowContents[40], m_newRowContents[40];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ShiftMosaicsCommand : public LevelOneCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ShiftMosaicsCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
bool mergeWith(const QUndoCommand *command) override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
QByteArrayList m_oldCharacters, m_newCharacters;
|
||||||
|
QSet<QPair<int, int>> m_mosaicList;
|
||||||
|
int m_selectionTopRow, m_selectionBottomRow, m_selectionLeftColumn, m_selectionRightColumn;
|
||||||
|
int m_selectionCornerRow, m_selectionCornerColumn;
|
||||||
|
};
|
||||||
|
|
||||||
|
class ShiftMosaicsUpCommand : public ShiftMosaicsCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 110 };
|
||||||
|
|
||||||
|
ShiftMosaicsUpCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
int id() const override { return Id; }
|
||||||
|
};
|
||||||
|
|
||||||
|
class ShiftMosaicsDownCommand : public ShiftMosaicsCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 111 };
|
||||||
|
|
||||||
|
ShiftMosaicsDownCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
int id() const override { return Id; }
|
||||||
|
};
|
||||||
|
|
||||||
|
class ShiftMosaicsLeftCommand : public ShiftMosaicsCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 112 };
|
||||||
|
|
||||||
|
ShiftMosaicsLeftCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
int id() const override { return Id; }
|
||||||
|
};
|
||||||
|
|
||||||
|
class ShiftMosaicsRightCommand : public ShiftMosaicsCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 113 };
|
||||||
|
|
||||||
|
ShiftMosaicsRightCommand(TeletextDocument *teletextDocument, const QSet<QPair<int, int>> &mosaicList, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
int id() const override { return Id; }
|
||||||
|
};
|
||||||
|
|
||||||
class InsertSubPageCommand : public LevelOneCommand
|
class InsertSubPageCommand : public LevelOneCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -164,7 +212,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#ifndef QT_NO_CLIPBOARD
|
#ifndef QT_NO_CLIPBOARD
|
||||||
class CutCommand : public StoreOldCharactersCommand
|
class CutCommand : public LevelOneCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CutCommand(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
CutCommand(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
||||||
@@ -173,11 +221,12 @@ public:
|
|||||||
void undo() override;
|
void undo() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
QByteArrayList m_oldCharacters;
|
||||||
int m_selectionTopRow, m_selectionBottomRow, m_selectionLeftColumn, m_selectionRightColumn;
|
int m_selectionTopRow, m_selectionBottomRow, m_selectionLeftColumn, m_selectionRightColumn;
|
||||||
int m_selectionCornerRow, m_selectionCornerColumn;
|
int m_selectionCornerRow, m_selectionCornerColumn;
|
||||||
};
|
};
|
||||||
|
|
||||||
class PasteCommand : public StoreOldCharactersCommand
|
class PasteCommand : public LevelOneCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PasteCommand(TeletextDocument *teletextDocument, int pageCharSet, QUndoCommand *parent = 0);
|
PasteCommand(TeletextDocument *teletextDocument, int pageCharSet, QUndoCommand *parent = 0);
|
||||||
@@ -186,7 +235,7 @@ public:
|
|||||||
void undo() override;
|
void undo() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QByteArrayList m_pastingCharacters;
|
QByteArrayList m_oldCharacters, m_pastingCharacters;
|
||||||
int m_pasteTopRow, m_pasteBottomRow, m_pasteLeftColumn, m_pasteRightColumn;
|
int m_pasteTopRow, m_pasteBottomRow, m_pasteLeftColumn, m_pasteRightColumn;
|
||||||
int m_clipboardDataHeight, m_clipboardDataWidth;
|
int m_clipboardDataHeight, m_clipboardDataWidth;
|
||||||
int m_selectionCornerRow, m_selectionCornerColumn;
|
int m_selectionCornerRow, m_selectionCornerColumn;
|
||||||
@@ -194,93 +243,4 @@ private:
|
|||||||
};
|
};
|
||||||
#endif // !QT_NO_CLIPBOARD
|
#endif // !QT_NO_CLIPBOARD
|
||||||
|
|
||||||
class SetFullScreenColourCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum { Id = 105 };
|
|
||||||
|
|
||||||
SetFullScreenColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
bool mergeWith(const QUndoCommand *command) override;
|
|
||||||
int id() const override { return Id; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_oldColour, m_newColour;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SetFullRowColourCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum { Id = 106 };
|
|
||||||
|
|
||||||
SetFullRowColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
bool mergeWith(const QUndoCommand *command) override;
|
|
||||||
int id() const override { return Id; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_oldColour, m_newColour;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SetCLUTRemapCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum { Id = 107 };
|
|
||||||
|
|
||||||
SetCLUTRemapCommand(TeletextDocument *teletextDocument, int newMap, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
bool mergeWith(const QUndoCommand *command) override;
|
|
||||||
int id() const override { return Id; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_oldMap, m_newMap;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SetBlackBackgroundSubstCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum { Id = 108 };
|
|
||||||
|
|
||||||
SetBlackBackgroundSubstCommand(TeletextDocument *teletextDocument, bool newSub, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
bool mergeWith(const QUndoCommand *command) override;
|
|
||||||
int id() const override { return Id; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_oldSub, m_newSub;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SetColourCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
SetColourCommand(TeletextDocument *teletextDocument, int colourIndex, int newColour, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_colourIndex, m_oldColour, m_newColour;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ResetCLUTCommand : public LevelOneCommand
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
ResetCLUTCommand(TeletextDocument *teletextDocument, int colourTable, QUndoCommand *parent = 0);
|
|
||||||
|
|
||||||
void redo() override;
|
|
||||||
void undo() override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_colourTable;
|
|
||||||
int m_oldColourEntry[8];
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
2
main.cpp
2
main.cpp
@@ -30,7 +30,7 @@ int main(int argc, char *argv[])
|
|||||||
QApplication::setApplicationDisplayName(QApplication::applicationName());
|
QApplication::setApplicationDisplayName(QApplication::applicationName());
|
||||||
QApplication::setOrganizationName("gkmac.co.uk");
|
QApplication::setOrganizationName("gkmac.co.uk");
|
||||||
QApplication::setOrganizationDomain("gkmac.co.uk");
|
QApplication::setOrganizationDomain("gkmac.co.uk");
|
||||||
QApplication::setApplicationVersion("0.6.3-beta");
|
QApplication::setApplicationVersion("0.6.4-beta");
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
parser.setApplicationDescription(QApplication::applicationName());
|
parser.setApplicationDescription(QApplication::applicationName());
|
||||||
parser.addHelpOption();
|
parser.addHelpOption();
|
||||||
|
|||||||
@@ -26,11 +26,13 @@
|
|||||||
#include <QGraphicsProxyWidget>
|
#include <QGraphicsProxyWidget>
|
||||||
#include <QGraphicsScene>
|
#include <QGraphicsScene>
|
||||||
#include <QGraphicsSceneEvent>
|
#include <QGraphicsSceneEvent>
|
||||||
|
#include <QImage>
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QPair>
|
#include <QPair>
|
||||||
|
#include <QSet>
|
||||||
#include <QUndoCommand>
|
#include <QUndoCommand>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
@@ -226,7 +228,7 @@ void TeletextWidget::keyPressEvent(QKeyEvent *event)
|
|||||||
// Map it to block character so it doesn't need to be inserted-between later on
|
// Map it to block character so it doesn't need to be inserted-between later on
|
||||||
if (mappedKeyPress & 0x80)
|
if (mappedKeyPress & 0x80)
|
||||||
mappedKeyPress = 0x7f;
|
mappedKeyPress = 0x7f;
|
||||||
if (m_pageDecode.level1MosaicAttribute(m_teletextDocument->cursorRow(), m_teletextDocument->cursorColumn()) && (mappedKeyPress < 0x40 || mappedKeyPress > 0x5f)) {
|
if (m_pageDecode.level1MosaicAttr(m_teletextDocument->cursorRow(), m_teletextDocument->cursorColumn()) && (mappedKeyPress < 0x40 || mappedKeyPress > 0x5f)) {
|
||||||
// We're on a mosaic and a blast-through character was NOT pressed
|
// We're on a mosaic and a blast-through character was NOT pressed
|
||||||
if (event->key() >= Qt::Key_0 && event->key() <= Qt::Key_9 && event->modifiers() & Qt::KeypadModifier) {
|
if (event->key() >= Qt::Key_0 && event->key() <= Qt::Key_9 && event->modifiers() & Qt::KeypadModifier) {
|
||||||
switch (event->key()) {
|
switch (event->key()) {
|
||||||
@@ -317,6 +319,7 @@ void TeletextWidget::keyPressEvent(QKeyEvent *event)
|
|||||||
setCharacter(mappedKeyPress);
|
setCharacter(mappedKeyPress);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (event->key()) {
|
switch (event->key()) {
|
||||||
case Qt::Key_Backspace:
|
case Qt::Key_Backspace:
|
||||||
m_teletextDocument->undoStack()->push(new BackspaceKeyCommand(m_teletextDocument, m_insertMode));
|
m_teletextDocument->undoStack()->push(new BackspaceKeyCommand(m_teletextDocument, m_insertMode));
|
||||||
@@ -332,15 +335,27 @@ void TeletextWidget::keyPressEvent(QKeyEvent *event)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case Qt::Key_Up:
|
case Qt::Key_Up:
|
||||||
|
if (event->modifiers() & Qt::ControlModifier)
|
||||||
|
shiftMosaics(event->key());
|
||||||
|
else
|
||||||
m_teletextDocument->cursorUp(event->modifiers() & Qt::ShiftModifier);
|
m_teletextDocument->cursorUp(event->modifiers() & Qt::ShiftModifier);
|
||||||
break;
|
break;
|
||||||
case Qt::Key_Down:
|
case Qt::Key_Down:
|
||||||
|
if (event->modifiers() & Qt::ControlModifier)
|
||||||
|
shiftMosaics(event->key());
|
||||||
|
else
|
||||||
m_teletextDocument->cursorDown(event->modifiers() & Qt::ShiftModifier);
|
m_teletextDocument->cursorDown(event->modifiers() & Qt::ShiftModifier);
|
||||||
break;
|
break;
|
||||||
case Qt::Key_Left:
|
case Qt::Key_Left:
|
||||||
|
if (event->modifiers() & Qt::ControlModifier)
|
||||||
|
shiftMosaics(event->key());
|
||||||
|
else
|
||||||
m_teletextDocument->cursorLeft(event->modifiers() & Qt::ShiftModifier);
|
m_teletextDocument->cursorLeft(event->modifiers() & Qt::ShiftModifier);
|
||||||
break;
|
break;
|
||||||
case Qt::Key_Right:
|
case Qt::Key_Right:
|
||||||
|
if (event->modifiers() & Qt::ControlModifier)
|
||||||
|
shiftMosaics(event->key());
|
||||||
|
else
|
||||||
m_teletextDocument->cursorRight(event->modifiers() & Qt::ShiftModifier);
|
m_teletextDocument->cursorRight(event->modifiers() & Qt::ShiftModifier);
|
||||||
break;
|
break;
|
||||||
case Qt::Key_Return:
|
case Qt::Key_Return:
|
||||||
@@ -361,11 +376,6 @@ void TeletextWidget::keyPressEvent(QKeyEvent *event)
|
|||||||
case Qt::Key_PageDown:
|
case Qt::Key_PageDown:
|
||||||
m_teletextDocument->selectSubPagePrevious();
|
m_teletextDocument->selectSubPagePrevious();
|
||||||
break;
|
break;
|
||||||
case Qt::Key_F6:
|
|
||||||
m_pageDecode.decodePage();
|
|
||||||
m_pageRender.renderPage(true);
|
|
||||||
update();
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
QFrame::keyPressEvent(event);
|
QFrame::keyPressEvent(event);
|
||||||
}
|
}
|
||||||
@@ -381,10 +391,40 @@ void TeletextWidget::toggleCharacterBit(unsigned char bitToToggle)
|
|||||||
m_teletextDocument->undoStack()->push(new ToggleMosaicBitCommand(m_teletextDocument, bitToToggle));
|
m_teletextDocument->undoStack()->push(new ToggleMosaicBitCommand(m_teletextDocument, bitToToggle));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TeletextWidget::shiftMosaics(int key)
|
||||||
|
{
|
||||||
|
if (!m_teletextDocument->selectionActive())
|
||||||
|
return;
|
||||||
|
|
||||||
|
QSet<QPair<int, int>> mosaicList;
|
||||||
|
|
||||||
|
for (int r=m_teletextDocument->selectionTopRow(); r<=m_teletextDocument->selectionBottomRow(); r++)
|
||||||
|
for (int c=m_teletextDocument->selectionLeftColumn(); c<=m_teletextDocument->selectionRightColumn(); c++)
|
||||||
|
if (m_pageDecode.level1MosaicChar(r, c))
|
||||||
|
mosaicList.insert(qMakePair(r, c));
|
||||||
|
|
||||||
|
if (!mosaicList.isEmpty())
|
||||||
|
switch (key) {
|
||||||
|
case Qt::Key_Up:
|
||||||
|
m_teletextDocument->undoStack()->push(new ShiftMosaicsUpCommand(m_teletextDocument, mosaicList));
|
||||||
|
break;
|
||||||
|
case Qt::Key_Down:
|
||||||
|
m_teletextDocument->undoStack()->push(new ShiftMosaicsDownCommand(m_teletextDocument, mosaicList));
|
||||||
|
break;
|
||||||
|
case Qt::Key_Left:
|
||||||
|
m_teletextDocument->undoStack()->push(new ShiftMosaicsLeftCommand(m_teletextDocument, mosaicList));
|
||||||
|
break;
|
||||||
|
case Qt::Key_Right:
|
||||||
|
m_teletextDocument->undoStack()->push(new ShiftMosaicsRightCommand(m_teletextDocument, mosaicList));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void TeletextWidget::selectionToClipboard()
|
void TeletextWidget::selectionToClipboard()
|
||||||
{
|
{
|
||||||
QByteArray nativeData;
|
QByteArray nativeData;
|
||||||
QString plainTextData;
|
QString plainTextData;
|
||||||
|
QImage *imageData = nullptr;
|
||||||
QClipboard *clipboard = QApplication::clipboard();
|
QClipboard *clipboard = QApplication::clipboard();
|
||||||
|
|
||||||
nativeData.resize(2 + m_teletextDocument->selectionWidth() * m_teletextDocument->selectionHeight());
|
nativeData.resize(2 + m_teletextDocument->selectionWidth() * m_teletextDocument->selectionHeight());
|
||||||
@@ -403,6 +443,31 @@ void TeletextWidget::selectionToClipboard()
|
|||||||
plainTextData.append(keymapping[m_pageDecode.level1CharSet(r, c)].key(m_teletextDocument->currentSubPage()->character(r, c), QChar(m_teletextDocument->currentSubPage()->character(r, c))));
|
plainTextData.append(keymapping[m_pageDecode.level1CharSet(r, c)].key(m_teletextDocument->currentSubPage()->character(r, c), QChar(m_teletextDocument->currentSubPage()->character(r, c))));
|
||||||
else
|
else
|
||||||
plainTextData.append(' ');
|
plainTextData.append(' ');
|
||||||
|
|
||||||
|
if (m_pageDecode.level1MosaicChar(r, c)) {
|
||||||
|
// A first mosaic character was found so create the image "just in time"
|
||||||
|
if (imageData == nullptr) {
|
||||||
|
imageData = new QImage(m_teletextDocument->selectionWidth() * 2, m_teletextDocument->selectionHeight() * 3, QImage::Format_Mono);
|
||||||
|
|
||||||
|
imageData->fill(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
const int ix = (c - m_teletextDocument->selectionLeftColumn()) * 2;
|
||||||
|
const int iy = (r - m_teletextDocument->selectionTopRow()) * 3;
|
||||||
|
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x01)
|
||||||
|
imageData->setPixel(ix, iy, 1);
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x02)
|
||||||
|
imageData->setPixel(ix+1, iy, 1);
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x04)
|
||||||
|
imageData->setPixel(ix, iy+1, 1);
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x08)
|
||||||
|
imageData->setPixel(ix+1, iy+1, 1);
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x10)
|
||||||
|
imageData->setPixel(ix, iy+2, 1);
|
||||||
|
if (m_teletextDocument->currentSubPage()->character(r, c) & 0x40)
|
||||||
|
imageData->setPixel(ix+1, iy+2, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
plainTextData.append('\n');
|
plainTextData.append('\n');
|
||||||
@@ -411,6 +476,11 @@ void TeletextWidget::selectionToClipboard()
|
|||||||
QMimeData *mimeData = new QMimeData();
|
QMimeData *mimeData = new QMimeData();
|
||||||
mimeData->setData("application/x-teletext", nativeData);
|
mimeData->setData("application/x-teletext", nativeData);
|
||||||
mimeData->setText(plainTextData);
|
mimeData->setText(plainTextData);
|
||||||
|
if (imageData != nullptr) {
|
||||||
|
mimeData->setImageData(*imageData);
|
||||||
|
delete imageData;
|
||||||
|
}
|
||||||
|
|
||||||
clipboard->setMimeData(mimeData);
|
clipboard->setMimeData(mimeData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -102,6 +102,7 @@ private:
|
|||||||
int m_flashTiming, m_flashPhase;
|
int m_flashTiming, m_flashPhase;
|
||||||
|
|
||||||
void timerEvent(QTimerEvent *event) override;
|
void timerEvent(QTimerEvent *event) override;
|
||||||
|
void shiftMosaics(int key);
|
||||||
void selectionToClipboard();
|
void selectionToClipboard();
|
||||||
|
|
||||||
QPair<int, int> mouseToRowAndColumn(const QPoint &mousePosition);
|
QPair<int, int> mouseToRowAndColumn(const QPoint &mousePosition);
|
||||||
|
|||||||
@@ -33,6 +33,7 @@
|
|||||||
#include <QScreen>
|
#include <QScreen>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QShortcut>
|
#include <QShortcut>
|
||||||
|
#include <QSlider>
|
||||||
#include <QStatusBar>
|
#include <QStatusBar>
|
||||||
#include <QToolBar>
|
#include <QToolBar>
|
||||||
#include <QToolButton>
|
#include <QToolButton>
|
||||||
@@ -278,7 +279,7 @@ void MainWindow::init()
|
|||||||
if (m_viewSmoothTransform)
|
if (m_viewSmoothTransform)
|
||||||
m_textView->setRenderHints(QPainter::SmoothPixmapTransform);
|
m_textView->setRenderHints(QPainter::SmoothPixmapTransform);
|
||||||
m_textView->setBackgroundBrush(QBrush(QColor(32, 48, 96)));
|
m_textView->setBackgroundBrush(QBrush(QColor(32, 48, 96)));
|
||||||
setSceneDimensions();
|
m_zoomSlider->setValue(m_viewZoom);
|
||||||
setCentralWidget(m_textView);
|
setCentralWidget(m_textView);
|
||||||
|
|
||||||
connect(m_textWidget->document(), &TeletextDocument::cursorMoved, this, &MainWindow::updateCursorPosition);
|
connect(m_textWidget->document(), &TeletextDocument::cursorMoved, this, &MainWindow::updateCursorPosition);
|
||||||
@@ -766,26 +767,36 @@ void MainWindow::setSmoothTransform(bool smoothTransform)
|
|||||||
|
|
||||||
void MainWindow::zoomIn()
|
void MainWindow::zoomIn()
|
||||||
{
|
{
|
||||||
if (m_viewZoom < 4)
|
if (m_viewZoom < 4) {
|
||||||
m_viewZoom++;
|
m_viewZoom++;
|
||||||
else if (m_viewZoom < 12)
|
m_zoomSlider->setValue(m_viewZoom);
|
||||||
|
} else if (m_viewZoom < 12) {
|
||||||
m_viewZoom += 2;
|
m_viewZoom += 2;
|
||||||
setSceneDimensions();
|
m_zoomSlider->setValue(m_viewZoom / 2 + 2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::zoomOut()
|
void MainWindow::zoomOut()
|
||||||
{
|
{
|
||||||
if (m_viewZoom > 4)
|
if (m_viewZoom > 4) {
|
||||||
m_viewZoom -= 2;
|
m_viewZoom -= 2;
|
||||||
else if (m_viewZoom > 0)
|
m_zoomSlider->setValue(m_viewZoom == 4 ? 4 : m_viewZoom / 2 + 2);
|
||||||
|
} else if (m_viewZoom > 0) {
|
||||||
m_viewZoom--;
|
m_viewZoom--;
|
||||||
|
m_zoomSlider->setValue(m_viewZoom);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::zoomSet(int viewZoom)
|
||||||
|
{
|
||||||
|
m_viewZoom = (viewZoom < 5) ? viewZoom : (viewZoom - 2) * 2;
|
||||||
setSceneDimensions();
|
setSceneDimensions();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::zoomReset()
|
void MainWindow::zoomReset()
|
||||||
{
|
{
|
||||||
m_viewZoom = 2;
|
m_viewZoom = 2;
|
||||||
setSceneDimensions();
|
m_zoomSlider->setValue(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::toggleInsertMode()
|
void MainWindow::toggleInsertMode()
|
||||||
@@ -821,6 +832,17 @@ void MainWindow::createStatusBar()
|
|||||||
m_cursorPositionLabel = new QLabel("1, 1");
|
m_cursorPositionLabel = new QLabel("1, 1");
|
||||||
statusBar()->insertWidget(3, m_cursorPositionLabel);
|
statusBar()->insertWidget(3, m_cursorPositionLabel);
|
||||||
|
|
||||||
|
m_zoomSlider = new QSlider;
|
||||||
|
m_zoomSlider->setOrientation(Qt::Horizontal);
|
||||||
|
m_zoomSlider->setMinimumHeight(m_subPageLabel->height());
|
||||||
|
m_zoomSlider->setMaximumHeight(m_subPageLabel->height());
|
||||||
|
m_zoomSlider->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
|
||||||
|
m_zoomSlider->setRange(0, 8);
|
||||||
|
m_zoomSlider->setPageStep(1);
|
||||||
|
m_zoomSlider->setFocusPolicy(Qt::NoFocus);
|
||||||
|
statusBar()->insertWidget(4, m_zoomSlider);
|
||||||
|
connect(m_zoomSlider, &QSlider::valueChanged, this, &MainWindow::zoomSet);
|
||||||
|
|
||||||
m_insertModePushButton = new QPushButton("OVERWRITE");
|
m_insertModePushButton = new QPushButton("OVERWRITE");
|
||||||
m_insertModePushButton->setFlat(true);
|
m_insertModePushButton->setFlat(true);
|
||||||
m_insertModePushButton->setMinimumHeight(m_subPageLabel->height());
|
m_insertModePushButton->setMinimumHeight(m_subPageLabel->height());
|
||||||
|
|||||||
@@ -21,13 +21,13 @@
|
|||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|
||||||
#include <QCheckBox>
|
#include <QCheckBox>
|
||||||
#include <QComboBox>
|
|
||||||
#include <QGraphicsProxyWidget>
|
#include <QGraphicsProxyWidget>
|
||||||
#include <QGraphicsScene>
|
#include <QGraphicsScene>
|
||||||
#include <QGraphicsView>
|
#include <QGraphicsView>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
#include <QSlider>
|
||||||
#include <QToolButton>
|
#include <QToolButton>
|
||||||
|
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
@@ -84,6 +84,7 @@ private slots:
|
|||||||
void setSmoothTransform(bool smoothTransform);
|
void setSmoothTransform(bool smoothTransform);
|
||||||
void zoomIn();
|
void zoomIn();
|
||||||
void zoomOut();
|
void zoomOut();
|
||||||
|
void zoomSet(int viewZoom);
|
||||||
void zoomReset();
|
void zoomReset();
|
||||||
|
|
||||||
void toggleInsertMode();
|
void toggleInsertMode();
|
||||||
@@ -131,6 +132,7 @@ private:
|
|||||||
|
|
||||||
QLabel *m_subPageLabel, *m_cursorPositionLabel;
|
QLabel *m_subPageLabel, *m_cursorPositionLabel;
|
||||||
QToolButton *m_previousSubPageButton, *m_nextSubPageButton;
|
QToolButton *m_previousSubPageButton, *m_nextSubPageButton;
|
||||||
|
QSlider *m_zoomSlider;
|
||||||
QPushButton *m_insertModePushButton;
|
QPushButton *m_insertModePushButton;
|
||||||
QRadioButton *m_levelRadioButton[4];
|
QRadioButton *m_levelRadioButton[4];
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
#include "pageenhancementsdockwidget.h"
|
#include "pageenhancementsdockwidget.h"
|
||||||
|
|
||||||
#include "levelonecommands.h"
|
#include "x28commands.h"
|
||||||
|
|
||||||
PageEnhancementsDockWidget::PageEnhancementsDockWidget(TeletextWidget *parent): QDockWidget(parent)
|
PageEnhancementsDockWidget::PageEnhancementsDockWidget(TeletextWidget *parent): QDockWidget(parent)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#include "palettedockwidget.h"
|
#include "palettedockwidget.h"
|
||||||
|
|
||||||
#include "levelonecommands.h"
|
#include "x28commands.h"
|
||||||
#include "document.h"
|
#include "document.h"
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
|
|
||||||
|
|||||||
@@ -19,8 +19,10 @@ HEADERS = decode.h \
|
|||||||
render.h \
|
render.h \
|
||||||
x26commands.h \
|
x26commands.h \
|
||||||
x26dockwidget.h \
|
x26dockwidget.h \
|
||||||
|
x26menus.h \
|
||||||
x26model.h \
|
x26model.h \
|
||||||
x26triplets.h
|
x26triplets.h \
|
||||||
|
x28commands.h
|
||||||
SOURCES = decode.cpp \
|
SOURCES = decode.cpp \
|
||||||
document.cpp \
|
document.cpp \
|
||||||
levelonecommands.cpp \
|
levelonecommands.cpp \
|
||||||
@@ -38,8 +40,10 @@ SOURCES = decode.cpp \
|
|||||||
render.cpp \
|
render.cpp \
|
||||||
x26commands.cpp \
|
x26commands.cpp \
|
||||||
x26dockwidget.cpp \
|
x26dockwidget.cpp \
|
||||||
|
x26menus.cpp \
|
||||||
x26model.cpp \
|
x26model.cpp \
|
||||||
x26triplets.cpp
|
x26triplets.cpp \
|
||||||
|
x28commands.cpp
|
||||||
RESOURCES = qteletextmaker.qrc
|
RESOURCES = qteletextmaker.qrc
|
||||||
|
|
||||||
# install
|
# install
|
||||||
|
|||||||
4
render.h
4
render.h
@@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
#include <QBitmap>
|
#include <QBitmap>
|
||||||
#include <QColor>
|
#include <QColor>
|
||||||
|
#include <QIcon>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
|
|
||||||
@@ -33,8 +34,9 @@ public:
|
|||||||
TeletextFontBitmap();
|
TeletextFontBitmap();
|
||||||
~TeletextFontBitmap();
|
~TeletextFontBitmap();
|
||||||
|
|
||||||
QBitmap *rawBitmap() const { return s_fontBitmap; }
|
|
||||||
QImage *image() const { return s_fontImage; }
|
QImage *image() const { return s_fontImage; }
|
||||||
|
QPixmap charBitmap(int c, int s) const { return s_fontBitmap->copy((c-32)*12, s*10, 12, 10); }
|
||||||
|
QIcon charIcon(int c, int s) const { return QIcon(charBitmap(c, s)); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static int s_instances;
|
static int s_instances;
|
||||||
|
|||||||
@@ -17,6 +17,8 @@
|
|||||||
* along with QTeletextMaker. If not, see <https://www.gnu.org/licenses/>.
|
* along with QTeletextMaker. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "x26dockwidget.h"
|
||||||
|
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
#include <QActionGroup>
|
#include <QActionGroup>
|
||||||
#include <QButtonGroup>
|
#include <QButtonGroup>
|
||||||
@@ -36,11 +38,12 @@
|
|||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
#include "x26dockwidget.h"
|
#include "x26menus.h"
|
||||||
|
|
||||||
CharacterListModel::CharacterListModel(QObject *parent): QAbstractListModel(parent)
|
CharacterListModel::CharacterListModel(QObject *parent): QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
m_characterSet = 0;
|
m_characterSet = 0;
|
||||||
|
m_mosaic = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
int CharacterListModel::rowCount(const QModelIndex & /*parent*/) const
|
int CharacterListModel::rowCount(const QModelIndex & /*parent*/) const
|
||||||
@@ -56,16 +59,30 @@ QVariant CharacterListModel::data(const QModelIndex &index, int role) const
|
|||||||
if (role == Qt::DisplayRole)
|
if (role == Qt::DisplayRole)
|
||||||
return QString("0x%1").arg(index.row()+0x20, 2, 16);
|
return QString("0x%1").arg(index.row()+0x20, 2, 16);
|
||||||
|
|
||||||
if (role == Qt::DecorationRole)
|
if (role == Qt::DecorationRole) {
|
||||||
return m_fontBitmap.rawBitmap()->copy(index.row()*12, m_characterSet*10, 12, 10);
|
if (m_mosaic && (index.row()+32) & 0x20)
|
||||||
|
return m_fontBitmap.charBitmap(index.row()+32, 24);
|
||||||
|
else
|
||||||
|
return m_fontBitmap.charBitmap(index.row()+32, m_characterSet);
|
||||||
|
}
|
||||||
|
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CharacterListModel::setCharacterSet(int characterSet)
|
void CharacterListModel::setCharacterSet(int characterSet)
|
||||||
{
|
{
|
||||||
if (characterSet != m_characterSet) {
|
if (characterSet != m_characterSet || m_mosaic) {
|
||||||
m_characterSet = characterSet;
|
m_characterSet = characterSet;
|
||||||
|
m_mosaic = false;
|
||||||
|
emit dataChanged(createIndex(0, 0), createIndex(95, 0), QVector<int>(Qt::DecorationRole));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CharacterListModel::setG1AndBlastCharacterSet(int characterSet)
|
||||||
|
{
|
||||||
|
if (characterSet != m_characterSet || !m_mosaic) {
|
||||||
|
m_characterSet = characterSet;
|
||||||
|
m_mosaic = true;
|
||||||
emit dataChanged(createIndex(0, 0), createIndex(95, 0), QVector<int>(Qt::DecorationRole));
|
emit dataChanged(createIndex(0, 0), createIndex(95, 0), QVector<int>(Qt::DecorationRole));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -134,91 +151,15 @@ X26DockWidget::X26DockWidget(TeletextWidget *parent): QDockWidget(parent)
|
|||||||
cookedTripletLayout->addWidget(m_cookedModePushButton);
|
cookedTripletLayout->addWidget(m_cookedModePushButton);
|
||||||
|
|
||||||
// Cooked triplet menu
|
// Cooked triplet menu
|
||||||
// We build the menus for both "Insert" buttons at the same time
|
// We connect the menus for both "Insert" buttons at the same time
|
||||||
m_cookedModeMenu = new QMenu(this);
|
m_cookedModeMenu = new TripletModeQMenu(this);
|
||||||
m_insertBeforeMenu = new QMenu(this);
|
m_insertBeforeMenu = new TripletModeQMenu(this);
|
||||||
m_insertAfterMenu = new QMenu(this);
|
m_insertAfterMenu = new TripletModeQMenu(this);
|
||||||
|
|
||||||
for (int m=0; m<3; m++) {
|
for (int m=0; m<64; m++) {
|
||||||
QMenu *menuToBuild;
|
connect(static_cast<TripletModeQMenu *>(m_cookedModeMenu)->action(m), &QAction::triggered, [=]() { cookedModeMenuSelected(m); });
|
||||||
|
connect(static_cast<TripletModeQMenu *>(m_insertBeforeMenu)->action(m), &QAction::triggered, [=]() { insertTriplet(m, false); });
|
||||||
if (m == 0)
|
connect(static_cast<TripletModeQMenu *>(m_insertAfterMenu)->action(m), &QAction::triggered, [=]() { insertTriplet(m, true); });
|
||||||
menuToBuild = m_cookedModeMenu;
|
|
||||||
else if (m == 1)
|
|
||||||
menuToBuild = m_insertBeforeMenu;
|
|
||||||
else // if (m == 2)
|
|
||||||
menuToBuild = m_insertAfterMenu;
|
|
||||||
|
|
||||||
auto newModeMenuAction=[&](QMenu *menu, int mode)
|
|
||||||
{
|
|
||||||
QAction *action = menu->addAction(m_x26Model->modeTripletName(mode));
|
|
||||||
if (m == 0)
|
|
||||||
connect(action, &QAction::triggered, [=]() { cookedModeMenuSelected(mode); });
|
|
||||||
else if (m == 1)
|
|
||||||
connect(action, &QAction::triggered, [=]() { insertTriplet(mode, false); });
|
|
||||||
else // if (m == 2)
|
|
||||||
connect(action, &QAction::triggered, [=]() { insertTriplet(mode, true); });
|
|
||||||
};
|
|
||||||
|
|
||||||
newModeMenuAction(menuToBuild, 0x04);
|
|
||||||
QMenu *rowTripletSubMenu = menuToBuild->addMenu(tr("Row triplet"));
|
|
||||||
newModeMenuAction(rowTripletSubMenu, 0x00);
|
|
||||||
newModeMenuAction(rowTripletSubMenu, 0x01);
|
|
||||||
newModeMenuAction(rowTripletSubMenu, 0x07);
|
|
||||||
newModeMenuAction(rowTripletSubMenu, 0x18);
|
|
||||||
QMenu *columnTripletSubMenu = menuToBuild->addMenu(tr("Column triplet"));
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x20);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x23);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x27);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x2c);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x2e);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x28);
|
|
||||||
columnTripletSubMenu->addSeparator();
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x29);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x2f);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x21);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x22);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x2b);
|
|
||||||
newModeMenuAction(columnTripletSubMenu, 0x2d);
|
|
||||||
QMenu *diacriticalSubMenu = columnTripletSubMenu->addMenu(tr("G0 diacritical"));
|
|
||||||
for (int i=0; i<16; i++)
|
|
||||||
newModeMenuAction(diacriticalSubMenu, 0x30 + i);
|
|
||||||
QMenu *objectSubMenu = menuToBuild->addMenu(tr("Object"));
|
|
||||||
newModeMenuAction(objectSubMenu, 0x10);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x11);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x12);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x13);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x15);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x16);
|
|
||||||
newModeMenuAction(objectSubMenu, 0x17);
|
|
||||||
newModeMenuAction(menuToBuild, 0x1f);
|
|
||||||
menuToBuild->addSeparator();
|
|
||||||
QMenu *pdcSubMenu = menuToBuild->addMenu(tr("PDC/reserved"));
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x08);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x09);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x0a);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x0b);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x0c);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x0d);
|
|
||||||
newModeMenuAction(pdcSubMenu, 0x26);
|
|
||||||
QMenu *reservedRowSubMenu = pdcSubMenu->addMenu(tr("Reserved row"));
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x02);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x03);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x05);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x06);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x0e);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x0f);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x14);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x19);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x1a);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x1b);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x1c);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x1d);
|
|
||||||
newModeMenuAction(reservedRowSubMenu, 0x1e);
|
|
||||||
QMenu *reservedColumnSubMenu = pdcSubMenu->addMenu(tr("Reserved column"));
|
|
||||||
newModeMenuAction(reservedColumnSubMenu, 0x24);
|
|
||||||
newModeMenuAction(reservedColumnSubMenu, 0x25);
|
|
||||||
newModeMenuAction(reservedColumnSubMenu, 0x2a);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m_cookedModePushButton->setMenu(m_cookedModeMenu);
|
m_cookedModePushButton->setMenu(m_cookedModeMenu);
|
||||||
@@ -718,7 +659,7 @@ void X26DockWidget::updateAllCookedTripletWidgets(const QModelIndex &index)
|
|||||||
const int modeExt = index.model()->data(index.model()->index(index.row(), 2), Qt::EditRole).toInt();
|
const int modeExt = index.model()->data(index.model()->index(index.row(), 2), Qt::EditRole).toInt();
|
||||||
|
|
||||||
m_cookedModePushButton->setEnabled(true);
|
m_cookedModePushButton->setEnabled(true);
|
||||||
m_cookedModePushButton->setText(m_x26Model->modeTripletName(modeExt));
|
m_cookedModePushButton->setText(m_modeTripletNames.modeName(modeExt));
|
||||||
|
|
||||||
switch (modeExt) {
|
switch (modeExt) {
|
||||||
case 0x04: // Set active position
|
case 0x04: // Set active position
|
||||||
@@ -767,7 +708,7 @@ void X26DockWidget::updateAllCookedTripletWidgets(const QModelIndex &index)
|
|||||||
case 0x3f: // G0 character with diacritical
|
case 0x3f: // G0 character with diacritical
|
||||||
m_characterCodeComboBox->blockSignals(true);
|
m_characterCodeComboBox->blockSignals(true);
|
||||||
if (modeExt == 0x21)
|
if (modeExt == 0x21)
|
||||||
m_characterListModel.setCharacterSet(24);
|
m_characterListModel.setG1AndBlastCharacterSet(index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+3).toInt());
|
||||||
else if (modeExt == 0x22 || modeExt == 0x2b)
|
else if (modeExt == 0x22 || modeExt == 0x2b)
|
||||||
m_characterListModel.setCharacterSet(26);
|
m_characterListModel.setCharacterSet(26);
|
||||||
else
|
else
|
||||||
@@ -1052,12 +993,21 @@ void X26DockWidget::updateModelFromCookedWidget(const int value, const int role)
|
|||||||
void X26DockWidget::insertTriplet(int modeExt, bool after)
|
void X26DockWidget::insertTriplet(int modeExt, bool after)
|
||||||
{
|
{
|
||||||
QModelIndex index = m_x26View->currentIndex();
|
QModelIndex index = m_x26View->currentIndex();
|
||||||
|
|
||||||
|
if (index.isValid())
|
||||||
|
insertTriplet(modeExt, index.row()+after);
|
||||||
|
else
|
||||||
|
insertTriplet(modeExt);
|
||||||
|
}
|
||||||
|
|
||||||
|
void X26DockWidget::insertTriplet(int modeExt, int row)
|
||||||
|
{
|
||||||
X26Triplet newTriplet(modeExt < 0x20 ? 41 : 0, modeExt & 0x1f, 0);
|
X26Triplet newTriplet(modeExt < 0x20 ? 41 : 0, modeExt & 0x1f, 0);
|
||||||
int newListRow;
|
|
||||||
|
if (row != -1) {
|
||||||
|
QModelIndex index = m_x26View->currentIndex();
|
||||||
|
|
||||||
if (index.isValid()) {
|
if (index.isValid()) {
|
||||||
newListRow = index.row()+after;
|
|
||||||
|
|
||||||
// If we're inserting a column triplet next to another column triplet,
|
// If we're inserting a column triplet next to another column triplet,
|
||||||
// duplicate the column number
|
// duplicate the column number
|
||||||
// Avoid the PDC and reserved mode triplets
|
// Avoid the PDC and reserved mode triplets
|
||||||
@@ -1070,7 +1020,7 @@ void X26DockWidget::insertTriplet(int modeExt, bool after)
|
|||||||
// If we're inserting a Set Active Position or Full Row Colour triplet,
|
// If we're inserting a Set Active Position or Full Row Colour triplet,
|
||||||
// look for a previous row setting triplet and set this one to the row after
|
// look for a previous row setting triplet and set this one to the row after
|
||||||
if (modeExt == 0x04 || modeExt == 0x01) {
|
if (modeExt == 0x04 || modeExt == 0x01) {
|
||||||
for (int i=newListRow-1; i>=0; i--) {
|
for (int i=row-1; i>=0; i--) {
|
||||||
const int scanTripletModeExt = index.model()->data(index.model()->index(i, 2), Qt::EditRole).toInt();
|
const int scanTripletModeExt = index.model()->data(index.model()->index(i, 2), Qt::EditRole).toInt();
|
||||||
|
|
||||||
if (scanTripletModeExt == 0x04 || scanTripletModeExt == 0x01) {
|
if (scanTripletModeExt == 0x04 || scanTripletModeExt == 0x01) {
|
||||||
@@ -1085,8 +1035,9 @@ void X26DockWidget::insertTriplet(int modeExt, bool after)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
newListRow = 0;
|
row = 0;
|
||||||
|
|
||||||
// For character triplets, ensure Data is not reserved
|
// For character triplets, ensure Data is not reserved
|
||||||
if (modeExt == 0x21 || modeExt == 0x22 || modeExt == 0x29 || modeExt == 0x2b || modeExt >= 0x2f)
|
if (modeExt == 0x21 || modeExt == 0x22 || modeExt == 0x29 || modeExt == 0x2b || modeExt >= 0x2f)
|
||||||
@@ -1100,7 +1051,7 @@ void X26DockWidget::insertTriplet(int modeExt, bool after)
|
|||||||
newTriplet.setData(7);
|
newTriplet.setData(7);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_x26Model->insertRows(newListRow, 1, QModelIndex(), newTriplet);
|
m_x26Model->insertRows(row, 1, QModelIndex(), newTriplet);
|
||||||
}
|
}
|
||||||
|
|
||||||
void X26DockWidget::insertTripletCopy()
|
void X26DockWidget::insertTripletCopy()
|
||||||
@@ -1123,17 +1074,161 @@ void X26DockWidget::deleteTriplet()
|
|||||||
|
|
||||||
void X26DockWidget::customMenuRequested(QPoint pos)
|
void X26DockWidget::customMenuRequested(QPoint pos)
|
||||||
{
|
{
|
||||||
|
QMenu *customMenu = nullptr;
|
||||||
|
|
||||||
QModelIndex index = m_x26View->indexAt(pos);
|
QModelIndex index = m_x26View->indexAt(pos);
|
||||||
|
|
||||||
QMenu *menu = new QMenu(this);
|
|
||||||
|
|
||||||
QAction *insertAct = new QAction("Insert triplet copy", this);
|
|
||||||
menu->addAction(insertAct);
|
|
||||||
connect(insertAct, &QAction::triggered, this, &X26DockWidget::insertTripletCopy);
|
|
||||||
if (index.isValid()) {
|
if (index.isValid()) {
|
||||||
|
const int modeExt = index.model()->data(index.model()->index(index.row(), 2), Qt::EditRole).toInt();
|
||||||
|
|
||||||
|
switch (modeExt) {
|
||||||
|
case 0x11:
|
||||||
|
case 0x12:
|
||||||
|
case 0x13: { // Invoke Object
|
||||||
|
QMenu *localDefMenu;
|
||||||
|
const QList objectList = m_parentMainWidget->document()->currentSubPage()->enhancements()->objects(modeExt - 0x11);
|
||||||
|
|
||||||
|
for (int i=0; i<objectList.size(); i++) {
|
||||||
|
// Messy way to create submenu only if definitions exist
|
||||||
|
if (i == 0) {
|
||||||
|
customMenu = new QMenu(this);
|
||||||
|
localDefMenu = customMenu->addMenu(tr("Local definition"));
|
||||||
|
}
|
||||||
|
|
||||||
|
const int d = objectList.at(i) / 13;
|
||||||
|
const int t = objectList.at(i) % 13;
|
||||||
|
QAction *action = localDefMenu->addAction(QString("d%1 t%2").arg(d).arg(t));
|
||||||
|
connect(action, &QAction::triggered, [=]() {
|
||||||
|
updateModelFromCookedWidget(0, Qt::UserRole+1);
|
||||||
|
updateModelFromCookedWidget(d, Qt::UserRole+2);
|
||||||
|
updateModelFromCookedWidget(t, Qt::UserRole+3);
|
||||||
|
updateAllCookedTripletWidgets(index);
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
} break;
|
||||||
|
case 0x01: // Full Row colour
|
||||||
|
case 0x07: // Address row 0
|
||||||
|
customMenu = new TripletCLUTQMenu(true, this);
|
||||||
|
|
||||||
|
connect(static_cast<TripletCLUTQMenu *>(customMenu)->action(32), &QAction::triggered, [=]() { updateModelFromCookedWidget(0, Qt::UserRole+2); updateAllCookedTripletWidgets(index); });
|
||||||
|
connect(static_cast<TripletCLUTQMenu *>(customMenu)->action(33), &QAction::triggered, [=]() { updateModelFromCookedWidget(1, Qt::UserRole+2); updateAllCookedTripletWidgets(index); });
|
||||||
|
// fall-through
|
||||||
|
case 0x00: // Full Screen colour
|
||||||
|
case 0x20: // Foreground colour
|
||||||
|
case 0x23: // Background colour
|
||||||
|
if (!customMenu)
|
||||||
|
customMenu = new TripletCLUTQMenu(false, this);
|
||||||
|
|
||||||
|
for (int i=0; i<32; i++) {
|
||||||
|
static_cast<TripletCLUTQMenu *>(customMenu)->setColour(i, m_parentMainWidget->document()->currentSubPage()->CLUTtoQColor(i));
|
||||||
|
connect(static_cast<TripletCLUTQMenu *>(customMenu)->action(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i, Qt::UserRole+1); updateAllCookedTripletWidgets(index); });
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 0x27: // Additional flash functions
|
||||||
|
customMenu = new TripletFlashQMenu(this);
|
||||||
|
|
||||||
|
static_cast<TripletFlashQMenu *>(customMenu)->setModeChecked(index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+1).toInt());
|
||||||
|
static_cast<TripletFlashQMenu *>(customMenu)->setRatePhaseChecked(index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+2).toInt());
|
||||||
|
|
||||||
|
for (int i=0; i<4; i++)
|
||||||
|
connect(static_cast<TripletFlashQMenu *>(customMenu)->modeAction(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i, Qt::UserRole+1); updateAllCookedTripletWidgets(index); });
|
||||||
|
for (int i=0; i<6; i++)
|
||||||
|
connect(static_cast<TripletFlashQMenu *>(customMenu)->ratePhaseAction(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i, Qt::UserRole+2); updateAllCookedTripletWidgets(index); });
|
||||||
|
break;
|
||||||
|
case 0x2c: // Display attributes
|
||||||
|
customMenu = new TripletDisplayAttrsQMenu(this);
|
||||||
|
|
||||||
|
static_cast<TripletDisplayAttrsQMenu *>(customMenu)->setTextSizeChecked(index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+1).toInt());
|
||||||
|
for (int i=0; i<4; i++) {
|
||||||
|
static_cast<TripletDisplayAttrsQMenu *>(customMenu)->setOtherAttrChecked(i, index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+i+2).toBool());
|
||||||
|
connect(static_cast<TripletDisplayAttrsQMenu *>(customMenu)->textSizeAction(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i, Qt::UserRole+1); updateAllCookedTripletWidgets(index); });
|
||||||
|
connect(static_cast<TripletDisplayAttrsQMenu *>(customMenu)->otherAttrAction(i), &QAction::toggled, [=](const int checked) { updateModelFromCookedWidget(checked, Qt::UserRole+i+2); updateAllCookedTripletWidgets(index); });
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 0x2e: // Font style
|
||||||
|
customMenu = new TripletFontStyleQMenu(this);
|
||||||
|
|
||||||
|
for (int i=0; i<3; i++) {
|
||||||
|
static_cast<TripletFontStyleQMenu *>(customMenu)->setStyleChecked(i, index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+i+1).toBool());
|
||||||
|
connect(static_cast<TripletFontStyleQMenu *>(customMenu)->styleAction(i), &QAction::toggled, [=](const int checked) { updateModelFromCookedWidget(checked, Qt::UserRole+i+1); updateAllCookedTripletWidgets(index); });
|
||||||
|
}
|
||||||
|
static_cast<TripletFontStyleQMenu *>(customMenu)->setRowsChecked(index.model()->data(index.model()->index(index.row(), 0), Qt::UserRole+4).toInt());
|
||||||
|
for (int i=0; i<8; i++)
|
||||||
|
connect(static_cast<TripletFontStyleQMenu *>(customMenu)->rowsAction(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i, Qt::UserRole+4); updateAllCookedTripletWidgets(index); });
|
||||||
|
break;
|
||||||
|
case 0x21: // G1 mosaic character
|
||||||
|
customMenu = new TripletCharacterQMenu(m_x26Model->data(index.model()->index(index.row(), 2), Qt::UserRole+3).toInt(), true, this);
|
||||||
|
// fall-through
|
||||||
|
case 0x22: // G3 mosaic character at level 1.5
|
||||||
|
case 0x2b: // G3 mosaic character at level >=2.5
|
||||||
|
case 0x29: // G0 character
|
||||||
|
case 0x2f: // G2 character
|
||||||
|
case 0x30:
|
||||||
|
case 0x31:
|
||||||
|
case 0x32:
|
||||||
|
case 0x33:
|
||||||
|
case 0x34:
|
||||||
|
case 0x35:
|
||||||
|
case 0x36:
|
||||||
|
case 0x37:
|
||||||
|
case 0x38:
|
||||||
|
case 0x39:
|
||||||
|
case 0x3a:
|
||||||
|
case 0x3b:
|
||||||
|
case 0x3c:
|
||||||
|
case 0x3d:
|
||||||
|
case 0x3e:
|
||||||
|
case 0x3f: // G0 character with diacritical
|
||||||
|
if (!customMenu)
|
||||||
|
customMenu = new TripletCharacterQMenu(m_x26Model->data(index.model()->index(index.row(), 2), Qt::UserRole+2).toInt(), false, this);
|
||||||
|
|
||||||
|
for (int i=0; i<96; i++)
|
||||||
|
connect(static_cast<TripletCharacterQMenu *>(customMenu)->action(i), &QAction::triggered, [=]() { updateModelFromCookedWidget(i+32, Qt::UserRole+1); updateAllCookedTripletWidgets(index); });
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (customMenu)
|
||||||
|
customMenu->addSeparator();
|
||||||
|
else
|
||||||
|
customMenu = new QMenu(this);
|
||||||
|
|
||||||
|
TripletModeQMenu *modeChangeMenu = new TripletModeQMenu(this);
|
||||||
|
modeChangeMenu->setTitle(tr("Change triplet mode"));
|
||||||
|
customMenu->addMenu(modeChangeMenu);
|
||||||
|
|
||||||
|
customMenu->addSeparator();
|
||||||
|
|
||||||
|
TripletModeQMenu *insertBeforeQMenu = new TripletModeQMenu(this);
|
||||||
|
insertBeforeQMenu->setTitle(tr("Insert before"));
|
||||||
|
customMenu->addMenu(insertBeforeQMenu);
|
||||||
|
|
||||||
|
TripletModeQMenu *insertAfterQMenu = new TripletModeQMenu(this);
|
||||||
|
insertAfterQMenu->setTitle(tr("Insert after"));
|
||||||
|
customMenu->addMenu(insertAfterQMenu);
|
||||||
|
|
||||||
|
for (int i=0; i<64; i++) {
|
||||||
|
connect(static_cast<TripletModeQMenu *>(modeChangeMenu)->action(i), &QAction::triggered, [=]() { cookedModeMenuSelected(i); });
|
||||||
|
connect(static_cast<TripletModeQMenu *>(insertBeforeQMenu)->action(i), &QAction::triggered, [=]() { insertTriplet(i, false); });
|
||||||
|
connect(static_cast<TripletModeQMenu *>(insertAfterQMenu)->action(i), &QAction::triggered, [=]() { insertTriplet(i, true); });
|
||||||
|
}
|
||||||
|
|
||||||
|
QAction *insertCopyAct = new QAction(tr("Insert copy"), this);
|
||||||
|
customMenu->addAction(insertCopyAct);
|
||||||
|
connect(insertCopyAct, &QAction::triggered, this, &X26DockWidget::insertTripletCopy);
|
||||||
|
|
||||||
QAction *deleteAct = new QAction("Delete triplet", this);
|
QAction *deleteAct = new QAction("Delete triplet", this);
|
||||||
menu->addAction(deleteAct);
|
customMenu->addAction(deleteAct);
|
||||||
connect(deleteAct, &QAction::triggered, this, &X26DockWidget::deleteTriplet);
|
connect(deleteAct, &QAction::triggered, this, &X26DockWidget::deleteTriplet);
|
||||||
|
} else {
|
||||||
|
customMenu = new QMenu(this);
|
||||||
|
|
||||||
|
TripletModeQMenu *appendModeMenu = new TripletModeQMenu(this);
|
||||||
|
appendModeMenu->setTitle(tr("Append"));
|
||||||
|
customMenu->addMenu(appendModeMenu);
|
||||||
|
|
||||||
|
for (int i=0; i<64; i++)
|
||||||
|
connect(static_cast<TripletModeQMenu *>(appendModeMenu)->action(i), &QAction::triggered, [=]() { insertTriplet(i, m_x26Model->rowCount()); });
|
||||||
}
|
}
|
||||||
menu->popup(m_x26View->viewport()->mapToGlobal(pos));
|
|
||||||
|
customMenu->popup(m_x26View->viewport()->mapToGlobal(pos));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
|
#include "x26menus.h"
|
||||||
#include "x26model.h"
|
#include "x26model.h"
|
||||||
|
|
||||||
class CharacterListModel : public QAbstractListModel
|
class CharacterListModel : public QAbstractListModel
|
||||||
@@ -47,10 +48,12 @@ public:
|
|||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||||
void setCharacterSet(int characterSet);
|
void setCharacterSet(int characterSet);
|
||||||
|
void setG1AndBlastCharacterSet(int characterSet);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
TeletextFontBitmap m_fontBitmap;
|
TeletextFontBitmap m_fontBitmap;
|
||||||
int m_characterSet;
|
int m_characterSet;
|
||||||
|
bool m_mosaic;
|
||||||
};
|
};
|
||||||
|
|
||||||
class X26DockWidget : public QDockWidget
|
class X26DockWidget : public QDockWidget
|
||||||
@@ -62,6 +65,7 @@ public:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void insertTriplet(int modeExt, bool after);
|
void insertTriplet(int modeExt, bool after);
|
||||||
|
void insertTriplet(int modeExt, int row = -1);
|
||||||
void insertTripletCopy();
|
void insertTripletCopy();
|
||||||
void deleteTriplet();
|
void deleteTriplet();
|
||||||
void customMenuRequested(QPoint pos);
|
void customMenuRequested(QPoint pos);
|
||||||
@@ -116,6 +120,8 @@ private:
|
|||||||
QCheckBox *m_terminationMarkerMoreFollowsCheckBox;
|
QCheckBox *m_terminationMarkerMoreFollowsCheckBox;
|
||||||
QPushButton *m_insertBeforePushButton, *m_insertAfterPushButton, *m_insertCopyPushButton, *m_deletePushButton;
|
QPushButton *m_insertBeforePushButton, *m_insertAfterPushButton, *m_insertCopyPushButton, *m_deletePushButton;
|
||||||
|
|
||||||
|
ModeTripletNames m_modeTripletNames;
|
||||||
|
|
||||||
TeletextWidget *m_parentMainWidget;
|
TeletextWidget *m_parentMainWidget;
|
||||||
|
|
||||||
void disableTripletWidgets();
|
void disableTripletWidgets();
|
||||||
|
|||||||
251
x26menus.cpp
Normal file
251
x26menus.cpp
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2020-2024 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 "x26menus.h"
|
||||||
|
|
||||||
|
#include <QActionGroup>
|
||||||
|
#include <QColor>
|
||||||
|
#include <QIcon>
|
||||||
|
#include <QMenu>
|
||||||
|
#include <QPixmap>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
|
#include "render.h"
|
||||||
|
|
||||||
|
TripletModeQMenu::TripletModeQMenu(QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
addModeAction(this, 0x04);
|
||||||
|
|
||||||
|
QMenu *rowTripletSubMenu = this->addMenu(tr("Row triplet"));
|
||||||
|
addModeAction(rowTripletSubMenu, 0x00);
|
||||||
|
addModeAction(rowTripletSubMenu, 0x01);
|
||||||
|
addModeAction(rowTripletSubMenu, 0x07);
|
||||||
|
addModeAction(rowTripletSubMenu, 0x18);
|
||||||
|
|
||||||
|
QMenu *columnTripletSubMenu = this->addMenu(tr("Column triplet"));
|
||||||
|
addModeAction(columnTripletSubMenu, 0x20);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x23);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x27);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x2c);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x2e);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x28);
|
||||||
|
columnTripletSubMenu->addSeparator();
|
||||||
|
addModeAction(columnTripletSubMenu, 0x29);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x2f);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x21);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x22);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x2b);
|
||||||
|
addModeAction(columnTripletSubMenu, 0x2d);
|
||||||
|
|
||||||
|
QMenu *diacriticalSubMenu = columnTripletSubMenu->addMenu(tr("G0 diacritical"));
|
||||||
|
for (int i=0; i<16; i++)
|
||||||
|
addModeAction(diacriticalSubMenu, 0x30 + i);
|
||||||
|
|
||||||
|
QMenu *objectSubMenu = this->addMenu(tr("Object"));
|
||||||
|
addModeAction(objectSubMenu, 0x10);
|
||||||
|
addModeAction(objectSubMenu, 0x11);
|
||||||
|
addModeAction(objectSubMenu, 0x12);
|
||||||
|
addModeAction(objectSubMenu, 0x13);
|
||||||
|
addModeAction(objectSubMenu, 0x15);
|
||||||
|
addModeAction(objectSubMenu, 0x16);
|
||||||
|
addModeAction(objectSubMenu, 0x17);
|
||||||
|
addModeAction(this, 0x1f);
|
||||||
|
this->addSeparator();
|
||||||
|
|
||||||
|
QMenu *pdcSubMenu = this->addMenu(tr("PDC/reserved"));
|
||||||
|
addModeAction(pdcSubMenu, 0x08);
|
||||||
|
addModeAction(pdcSubMenu, 0x09);
|
||||||
|
addModeAction(pdcSubMenu, 0x0a);
|
||||||
|
addModeAction(pdcSubMenu, 0x0b);
|
||||||
|
addModeAction(pdcSubMenu, 0x0c);
|
||||||
|
addModeAction(pdcSubMenu, 0x0d);
|
||||||
|
addModeAction(pdcSubMenu, 0x26);
|
||||||
|
|
||||||
|
QMenu *reservedRowSubMenu = pdcSubMenu->addMenu(tr("Reserved row"));
|
||||||
|
addModeAction(reservedRowSubMenu, 0x02);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x03);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x05);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x06);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x0e);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x0f);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x14);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x19);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x1a);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x1b);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x1c);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x1d);
|
||||||
|
addModeAction(reservedRowSubMenu, 0x1e);
|
||||||
|
|
||||||
|
QMenu *reservedColumnSubMenu = pdcSubMenu->addMenu(tr("Reserved column"));
|
||||||
|
addModeAction(reservedColumnSubMenu, 0x24);
|
||||||
|
addModeAction(reservedColumnSubMenu, 0x25);
|
||||||
|
addModeAction(reservedColumnSubMenu, 0x2a);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletModeQMenu::addModeAction(QMenu *menu, int mode)
|
||||||
|
{
|
||||||
|
m_actions[mode] = menu->addAction(m_modeTripletNames.modeName(mode));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TripletCLUTQMenu::TripletCLUTQMenu(bool rows, QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
QMenu *clut[4];
|
||||||
|
|
||||||
|
for (int c=0; c<4; c++) {
|
||||||
|
clut[c] = this->addMenu(QString("CLUT %1").arg(c));
|
||||||
|
|
||||||
|
for (int e=0; e<8; e++)
|
||||||
|
m_actions[c*8+e] = clut[c]->addAction(QString("CLUT %1:%2").arg(c).arg(e));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rows) {
|
||||||
|
m_actions[32] = this->addAction(tr("This row only"));
|
||||||
|
m_actions[33] = this->addAction(tr("Down to bottom"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletCLUTQMenu::setColour(int i, QColor c)
|
||||||
|
{
|
||||||
|
QPixmap menuColour(32, 32); // Should get downscaled to the menu text size
|
||||||
|
|
||||||
|
menuColour.fill(c);
|
||||||
|
m_actions[i]->setIcon(QIcon(menuColour));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TripletCharacterQMenu::TripletCharacterQMenu(int charSet, bool mosaic, QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
QMenu *charRange[6];
|
||||||
|
|
||||||
|
for (int r=0; r<6; r++) {
|
||||||
|
charRange[r] = this->addMenu(QString("0x%010-0x%01f").arg(r+2));
|
||||||
|
|
||||||
|
const int charSetInColumn = (mosaic && ((r & 0x2) == 0)) ? 24 : charSet;
|
||||||
|
|
||||||
|
for (int c=0; c<16; c++)
|
||||||
|
m_actions[r*16+c] = charRange[r]->addAction(QIcon(m_fontBitmap.charBitmap(r*16+c+32, charSetInColumn)), QString("0x%1").arg(r*16+c+32, 2, 16, QChar('0')));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TripletFlashQMenu::TripletFlashQMenu(QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
QMenu *flashModeMenu = this->addMenu(tr("Flash mode"));
|
||||||
|
m_actions[0] = flashModeMenu->addAction(tr("Steady"));
|
||||||
|
m_actions[1] = flashModeMenu->addAction(tr("Normal"));
|
||||||
|
m_actions[2] = flashModeMenu->addAction(tr("Invert"));
|
||||||
|
m_actions[3] = flashModeMenu->addAction(tr("Adjacent CLUT"));
|
||||||
|
m_modeActionGroup = new QActionGroup(this);
|
||||||
|
for (int i=0; i<4; i++) {
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_modeActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
QMenu *flashRatePhaseMenu = this->addMenu(tr("Flash rate/phase"));
|
||||||
|
m_actions[4] = flashRatePhaseMenu->addAction(tr("Slow 1Hz"));
|
||||||
|
m_actions[5] = flashRatePhaseMenu->addAction(tr("Fast 2Hz phase 1"));
|
||||||
|
m_actions[6] = flashRatePhaseMenu->addAction(tr("Fast 2Hz phase 2"));
|
||||||
|
m_actions[7] = flashRatePhaseMenu->addAction(tr("Fast 2Hz phase 3"));
|
||||||
|
m_actions[8] = flashRatePhaseMenu->addAction(tr("Fast 2Hz inc/right"));
|
||||||
|
m_actions[9] = flashRatePhaseMenu->addAction(tr("Fast 2Hz dec/left"));
|
||||||
|
m_ratePhaseActionGroup = new QActionGroup(this);
|
||||||
|
for (int i=4; i<10; i++) {
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_ratePhaseActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletFlashQMenu::setModeChecked(int n)
|
||||||
|
{
|
||||||
|
m_actions[n]->setChecked(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletFlashQMenu::setRatePhaseChecked(int n)
|
||||||
|
{
|
||||||
|
m_actions[n+4]->setChecked(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TripletDisplayAttrsQMenu::TripletDisplayAttrsQMenu(QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
QMenu *sizeMenu = this->addMenu(tr("Text size"));
|
||||||
|
m_actions[0] = sizeMenu->addAction(tr("Normal size"));
|
||||||
|
m_actions[1] = sizeMenu->addAction(tr("Double height"));
|
||||||
|
m_actions[2] = sizeMenu->addAction(tr("Double width"));
|
||||||
|
m_actions[3] = sizeMenu->addAction(tr("Double size"));
|
||||||
|
m_sizeActionGroup = new QActionGroup(this);
|
||||||
|
for (int i=0; i<4; i++) {
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_sizeActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_actions[4] = this->addAction(tr("Boxing/Window"));
|
||||||
|
m_actions[5] = this->addAction(tr("Conceal"));
|
||||||
|
m_actions[6] = this->addAction(tr("Invert"));
|
||||||
|
m_actions[7] = this->addAction(tr("Underline/Separated"));
|
||||||
|
m_otherActionGroup = new QActionGroup(this);
|
||||||
|
m_otherActionGroup->setExclusive(false);
|
||||||
|
for (int i=4; i<8; i++) {
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_otherActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletDisplayAttrsQMenu::setTextSizeChecked(int n)
|
||||||
|
{
|
||||||
|
m_actions[n]->setChecked(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletDisplayAttrsQMenu::setOtherAttrChecked(int n, bool b)
|
||||||
|
{
|
||||||
|
m_actions[n+4]->setChecked(b);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TripletFontStyleQMenu::TripletFontStyleQMenu(QWidget *parent): QMenu(parent)
|
||||||
|
{
|
||||||
|
m_actions[0] = this->addAction(tr("Proportional"));
|
||||||
|
m_actions[1] = this->addAction(tr("Bold"));
|
||||||
|
m_actions[2] = this->addAction(tr("Italic"));
|
||||||
|
m_styleActionGroup = new QActionGroup(this);
|
||||||
|
m_styleActionGroup->setExclusive(false);
|
||||||
|
for (int i=0; i<3; i++) {
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_styleActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
QMenu *rowsMenu = this->addMenu(tr("Next rows"));
|
||||||
|
m_rowsActionGroup = new QActionGroup(this);
|
||||||
|
for (int i=3; i<11; i++) {
|
||||||
|
m_actions[i] = rowsMenu->addAction(QString("%1").arg(i-3));
|
||||||
|
m_actions[i]->setCheckable(true);
|
||||||
|
m_rowsActionGroup->addAction(m_actions[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletFontStyleQMenu::setStyleChecked(int n, bool b)
|
||||||
|
{
|
||||||
|
m_actions[n]->setChecked(b);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TripletFontStyleQMenu::setRowsChecked(int n)
|
||||||
|
{
|
||||||
|
m_actions[n+3]->setChecked(true);
|
||||||
|
}
|
||||||
207
x26menus.h
Normal file
207
x26menus.h
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2020-2024 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 X26MENUS_H
|
||||||
|
#define X26MENUS_H
|
||||||
|
|
||||||
|
#include <QActionGroup>
|
||||||
|
#include <QColor>
|
||||||
|
#include <QMenu>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
|
#include "render.h"
|
||||||
|
|
||||||
|
class ModeTripletNames
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static const QString modeName(int i) { return m_modeTripletName[i]; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
static inline const QString m_modeTripletName[64] {
|
||||||
|
// Row triplet modes
|
||||||
|
"Full screen colour",
|
||||||
|
"Full row colour",
|
||||||
|
"Reserved 0x02",
|
||||||
|
"Reserved 0x03",
|
||||||
|
|
||||||
|
"Set Active Position",
|
||||||
|
"Reserved 0x05",
|
||||||
|
"Reserved 0x06",
|
||||||
|
"Address row 0",
|
||||||
|
|
||||||
|
"PDC origin, source",
|
||||||
|
"PDC month and day",
|
||||||
|
"PDC cursor and start hour",
|
||||||
|
"PDC cursor and end hour",
|
||||||
|
|
||||||
|
"PDC cursor local offset",
|
||||||
|
"PDC series ID and code",
|
||||||
|
"Reserved 0x0e",
|
||||||
|
"Reserved 0x0f",
|
||||||
|
|
||||||
|
"Origin modifier",
|
||||||
|
"Invoke active object",
|
||||||
|
"Invoke adaptive object",
|
||||||
|
"Invoke passive object",
|
||||||
|
|
||||||
|
"Reserved 0x14",
|
||||||
|
"Define active object",
|
||||||
|
"Define adaptive object",
|
||||||
|
"Define passive object",
|
||||||
|
|
||||||
|
"DRCS mode",
|
||||||
|
"Reserved 0x19",
|
||||||
|
"Reserved 0x1a",
|
||||||
|
"Reserved 0x1b",
|
||||||
|
|
||||||
|
"Reserved 0x1c",
|
||||||
|
"Reserved 0x1d",
|
||||||
|
"Reserved 0x1e",
|
||||||
|
"Termination marker",
|
||||||
|
|
||||||
|
// Column triplet modes
|
||||||
|
"Foreground colour",
|
||||||
|
"G1 block mosaic",
|
||||||
|
"G3 smooth mosaic, level 1.5",
|
||||||
|
"Background colour",
|
||||||
|
|
||||||
|
"Reserved 0x04",
|
||||||
|
"Reserved 0x05",
|
||||||
|
"PDC cursor, start end min",
|
||||||
|
"Additional flash functions",
|
||||||
|
|
||||||
|
"Modified G0/G2 character set",
|
||||||
|
"G0 character",
|
||||||
|
"Reserved 0x0a",
|
||||||
|
"G3 smooth mosaic, level 2.5",
|
||||||
|
|
||||||
|
"Display attributes",
|
||||||
|
"DRCS character",
|
||||||
|
"Font style, level 3.5",
|
||||||
|
"G2 supplementary character",
|
||||||
|
|
||||||
|
"G0 character no diacritical",
|
||||||
|
"G0 character diacritical 1",
|
||||||
|
"G0 character diacritical 2",
|
||||||
|
"G0 character diacritical 3",
|
||||||
|
"G0 character diacritical 4",
|
||||||
|
"G0 character diacritical 5",
|
||||||
|
"G0 character diacritical 6",
|
||||||
|
"G0 character diacritical 7",
|
||||||
|
"G0 character diacritical 8",
|
||||||
|
"G0 character diacritical 9",
|
||||||
|
"G0 character diacritical A",
|
||||||
|
"G0 character diacritical B",
|
||||||
|
"G0 character diacritical C",
|
||||||
|
"G0 character diacritical D",
|
||||||
|
"G0 character diacritical E",
|
||||||
|
"G0 character diacritical F"
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletModeQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletModeQMenu(QWidget *parent = nullptr);
|
||||||
|
QAction *action(int n) const { return m_actions[n]; };
|
||||||
|
|
||||||
|
private:
|
||||||
|
void addModeAction(QMenu *menu, int mode);
|
||||||
|
|
||||||
|
QAction *m_actions[64];
|
||||||
|
ModeTripletNames m_modeTripletNames;
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletCLUTQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletCLUTQMenu(bool rows, QWidget *parent = nullptr);
|
||||||
|
QAction *action(int n) const { return m_actions[n]; };
|
||||||
|
void setColour(int i, QColor c);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_actions[34];
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletCharacterQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletCharacterQMenu(int charSet, bool mosaic, QWidget *parent = nullptr);
|
||||||
|
QAction *action(int n) const { return m_actions[n]; };
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_actions[96];
|
||||||
|
TeletextFontBitmap m_fontBitmap;
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletFlashQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletFlashQMenu(QWidget *parent = nullptr);
|
||||||
|
QAction *modeAction(int n) const { return m_actions[n]; };
|
||||||
|
QAction *ratePhaseAction(int n) const { return m_actions[n+4]; };
|
||||||
|
void setModeChecked(int n);
|
||||||
|
void setRatePhaseChecked(int n);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_actions[10];
|
||||||
|
QActionGroup *m_modeActionGroup, *m_ratePhaseActionGroup;
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletDisplayAttrsQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletDisplayAttrsQMenu(QWidget *parent = nullptr);
|
||||||
|
QAction *textSizeAction(int n) const { return m_actions[n]; };
|
||||||
|
QAction *otherAttrAction(int n) const { return m_actions[n+4]; };
|
||||||
|
void setTextSizeChecked(int n);
|
||||||
|
void setOtherAttrChecked(int n, bool b);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_actions[8];
|
||||||
|
QActionGroup *m_sizeActionGroup, *m_otherActionGroup;
|
||||||
|
};
|
||||||
|
|
||||||
|
class TripletFontStyleQMenu : public QMenu
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TripletFontStyleQMenu(QWidget *parent = nullptr);
|
||||||
|
QAction *styleAction(int n) const { return m_actions[n]; };
|
||||||
|
QAction *rowsAction(int n) const { return m_actions[n+3]; };
|
||||||
|
void setStyleChecked(int n, bool b);
|
||||||
|
void setRowsChecked(int n);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_actions[11];
|
||||||
|
QActionGroup *m_styleActionGroup, *m_rowsActionGroup;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
30
x26model.cpp
30
x26model.cpp
@@ -19,9 +19,11 @@
|
|||||||
|
|
||||||
#include "x26model.h"
|
#include "x26model.h"
|
||||||
|
|
||||||
|
#include <QIcon>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
|
||||||
#include "x26commands.h"
|
#include "x26commands.h"
|
||||||
|
#include "x26menus.h"
|
||||||
|
|
||||||
X26Model::X26Model(TeletextWidget *parent): QAbstractListModel(parent)
|
X26Model::X26Model(TeletextWidget *parent): QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
@@ -113,7 +115,7 @@ QVariant X26Model::data(const QModelIndex &index, int role) const
|
|||||||
|
|
||||||
if (role == Qt::DisplayRole) {
|
if (role == Qt::DisplayRole) {
|
||||||
if (index.column() == 2)
|
if (index.column() == 2)
|
||||||
return (m_modeTripletName[triplet.modeExt()]);
|
return (m_modeTripletNames.modeName(triplet.modeExt()));
|
||||||
// Column 3 - describe effects of data/address triplet parameters in plain English
|
// Column 3 - describe effects of data/address triplet parameters in plain English
|
||||||
switch (triplet.modeExt()) {
|
switch (triplet.modeExt()) {
|
||||||
case 0x01: // Full row colour
|
case 0x01: // Full row colour
|
||||||
@@ -374,22 +376,25 @@ QVariant X26Model::data(const QModelIndex &index, int role) const
|
|||||||
break;
|
break;
|
||||||
case 0x21: // G1 mosaic character
|
case 0x21: // G1 mosaic character
|
||||||
if (triplet.data() & 0x20)
|
if (triplet.data() & 0x20)
|
||||||
return m_fontBitmap.rawBitmap()->copy((triplet.data()-32)*12, 24*10, 12, 10);
|
return m_fontBitmap.charIcon(triplet.data(), 24);
|
||||||
|
else if (triplet.data() >= 0x20)
|
||||||
|
// Blast-through
|
||||||
|
return m_fontBitmap.charIcon(triplet.data(), m_parentMainWidget->pageDecode()->cellG0CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn()));
|
||||||
break;
|
break;
|
||||||
case 0x22: // G3 mosaic character at level 1.5
|
case 0x22: // G3 mosaic character at level 1.5
|
||||||
case 0x2b: // G3 mosaic character at level >=2.5
|
case 0x2b: // G3 mosaic character at level >=2.5
|
||||||
if (triplet.data() >= 0x20)
|
if (triplet.data() >= 0x20)
|
||||||
return m_fontBitmap.rawBitmap()->copy((triplet.data()-32)*12, 26*10, 12, 10);
|
return m_fontBitmap.charIcon(triplet.data(), 26);
|
||||||
break;
|
break;
|
||||||
case 0x2f: // G2 character
|
case 0x2f: // G2 character
|
||||||
if (triplet.data() >= 0x20)
|
if (triplet.data() >= 0x20)
|
||||||
return m_fontBitmap.rawBitmap()->copy((triplet.data()-32)*12, m_parentMainWidget->pageDecode()->cellG2CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn())*10, 12, 10);
|
return m_fontBitmap.charIcon(triplet.data(), m_parentMainWidget->pageDecode()->cellG2CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn()));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (triplet.modeExt() == 0x29 || (triplet.modeExt() >= 0x30 && triplet.modeExt() <= 0x3f))
|
if (triplet.modeExt() == 0x29 || (triplet.modeExt() >= 0x30 && triplet.modeExt() <= 0x3f))
|
||||||
// G0 character or G0 diacritical mark
|
// G0 character or G0 diacritical mark
|
||||||
if (triplet.data() >= 0x20)
|
if (triplet.data() >= 0x20)
|
||||||
return m_fontBitmap.rawBitmap()->copy((triplet.data()-32)*12, m_parentMainWidget->pageDecode()->cellG0CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn())*10, 12, 10);
|
return m_fontBitmap.charIcon(triplet.data(), m_parentMainWidget->pageDecode()->cellG0CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (role == Qt::EditRole && index.column() == 2)
|
if (role == Qt::EditRole && index.column() == 2)
|
||||||
@@ -466,6 +471,21 @@ QVariant X26Model::data(const QModelIndex &index, int role) const
|
|||||||
return (triplet.data() & 0x01) == 0x01;
|
return (triplet.data() & 0x01) == 0x01;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 0x21: // G1 character
|
||||||
|
// Qt::UserRole+1 is character number, returned by default below
|
||||||
|
switch (role) {
|
||||||
|
case Qt::UserRole+2: // G1 character set
|
||||||
|
return 24;
|
||||||
|
case Qt::UserRole+3: // G0 character set for blast-through
|
||||||
|
return m_parentMainWidget->pageDecode()->cellG0CharacterSet(triplet.activePositionRow(), triplet.activePositionColumn());
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 0x22: // G3 character at Level 1.5
|
||||||
|
case 0x2b: // G3 character at Level 2.5
|
||||||
|
// Qt::UserRole+1 is character number, returned by default below
|
||||||
|
if (role == Qt::UserRole+2) // G3 character set
|
||||||
|
return 26;
|
||||||
|
break;
|
||||||
case 0x27: // Flash functions
|
case 0x27: // Flash functions
|
||||||
switch (role) {
|
switch (role) {
|
||||||
case Qt::UserRole+1: // Flash mode
|
case Qt::UserRole+1: // Flash mode
|
||||||
|
|||||||
86
x26model.h
86
x26model.h
@@ -21,7 +21,9 @@
|
|||||||
#define X26MODEL_H
|
#define X26MODEL_H
|
||||||
|
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
|
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
|
#include "x26menus.h"
|
||||||
|
|
||||||
class X26Model : public QAbstractListModel
|
class X26Model : public QAbstractListModel
|
||||||
{
|
{
|
||||||
@@ -40,8 +42,6 @@ public:
|
|||||||
bool removeRows(int position, int rows, const QModelIndex &index);
|
bool removeRows(int position, int rows, const QModelIndex &index);
|
||||||
// Qt::ItemFlags flags(const QModelIndex &index) const;
|
// Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||||
|
|
||||||
const QString modeTripletName(int i) const { return m_modeTripletName[i]; }
|
|
||||||
|
|
||||||
// The x26commands classes manipulate the model but beginInsertRows and endInsertRows
|
// The x26commands classes manipulate the model but beginInsertRows and endInsertRows
|
||||||
// are protected methods, so we need to friend them
|
// are protected methods, so we need to friend them
|
||||||
friend class InsertTripletCommand;
|
friend class InsertTripletCommand;
|
||||||
@@ -52,87 +52,7 @@ private:
|
|||||||
TeletextWidget *m_parentMainWidget;
|
TeletextWidget *m_parentMainWidget;
|
||||||
bool m_listLoaded;
|
bool m_listLoaded;
|
||||||
TeletextFontBitmap m_fontBitmap;
|
TeletextFontBitmap m_fontBitmap;
|
||||||
|
ModeTripletNames m_modeTripletNames;
|
||||||
const QString m_modeTripletName[64] {
|
|
||||||
// Row triplet modes
|
|
||||||
"Full screen colour",
|
|
||||||
"Full row colour",
|
|
||||||
"Reserved 0x02",
|
|
||||||
"Reserved 0x03",
|
|
||||||
|
|
||||||
"Set Active Position",
|
|
||||||
"Reserved 0x05",
|
|
||||||
"Reserved 0x06",
|
|
||||||
"Address row 0",
|
|
||||||
|
|
||||||
"PDC origin, source",
|
|
||||||
"PDC month and day",
|
|
||||||
"PDC cursor and start hour",
|
|
||||||
"PDC cursor and end hour",
|
|
||||||
|
|
||||||
"PDC cursor local offset",
|
|
||||||
"PDC series ID and code",
|
|
||||||
"Reserved 0x0e",
|
|
||||||
"Reserved 0x0f",
|
|
||||||
|
|
||||||
"Origin modifier",
|
|
||||||
"Invoke active object",
|
|
||||||
"Invoke adaptive object",
|
|
||||||
"Invoke passive object",
|
|
||||||
|
|
||||||
"Reserved 0x14",
|
|
||||||
"Define active object",
|
|
||||||
"Define adaptive object",
|
|
||||||
"Define passive object",
|
|
||||||
|
|
||||||
"DRCS mode",
|
|
||||||
"Reserved 0x19",
|
|
||||||
"Reserved 0x1a",
|
|
||||||
"Reserved 0x1b",
|
|
||||||
|
|
||||||
"Reserved 0x1c",
|
|
||||||
"Reserved 0x1d",
|
|
||||||
"Reserved 0x1e",
|
|
||||||
"Termination marker",
|
|
||||||
|
|
||||||
// Column triplet modes
|
|
||||||
"Foreground colour",
|
|
||||||
"G1 block mosaic",
|
|
||||||
"G3 smooth mosaic, level 1.5",
|
|
||||||
"Background colour",
|
|
||||||
|
|
||||||
"Reserved 0x04",
|
|
||||||
"Reserved 0x05",
|
|
||||||
"PDC cursor, start end min",
|
|
||||||
"Additional flash functions",
|
|
||||||
|
|
||||||
"Modified G0/G2 character set",
|
|
||||||
"G0 character",
|
|
||||||
"Reserved 0x0a",
|
|
||||||
"G3 smooth mosaic, level 2.5",
|
|
||||||
|
|
||||||
"Display attributes",
|
|
||||||
"DRCS character",
|
|
||||||
"Font style, level 3.5",
|
|
||||||
"G2 supplementary character",
|
|
||||||
|
|
||||||
"G0 character no diacritical",
|
|
||||||
"G0 character diacritical 1",
|
|
||||||
"G0 character diacritical 2",
|
|
||||||
"G0 character diacritical 3",
|
|
||||||
"G0 character diacritical 4",
|
|
||||||
"G0 character diacritical 5",
|
|
||||||
"G0 character diacritical 6",
|
|
||||||
"G0 character diacritical 7",
|
|
||||||
"G0 character diacritical 8",
|
|
||||||
"G0 character diacritical 9",
|
|
||||||
"G0 character diacritical A",
|
|
||||||
"G0 character diacritical B",
|
|
||||||
"G0 character diacritical C",
|
|
||||||
"G0 character diacritical D",
|
|
||||||
"G0 character diacritical E",
|
|
||||||
"G0 character diacritical F"
|
|
||||||
};
|
|
||||||
|
|
||||||
struct tripletErrorShow {
|
struct tripletErrorShow {
|
||||||
QString message;
|
QString message;
|
||||||
|
|||||||
@@ -74,6 +74,10 @@ void X26TripletList::updateInternalData()
|
|||||||
ActivePosition activePosition;
|
ActivePosition activePosition;
|
||||||
X26Triplet *triplet;
|
X26Triplet *triplet;
|
||||||
|
|
||||||
|
m_objects[0].clear();
|
||||||
|
m_objects[1].clear();
|
||||||
|
m_objects[2].clear();
|
||||||
|
|
||||||
// Check for errors, and fill in where the Active Position goes for Level 2.5 and above
|
// Check for errors, and fill in where the Active Position goes for Level 2.5 and above
|
||||||
for (int i=0; i < m_list.size(); i++) {
|
for (int i=0; i < m_list.size(); i++) {
|
||||||
triplet = &m_list[i];
|
triplet = &m_list[i];
|
||||||
@@ -140,6 +144,7 @@ void X26TripletList::updateInternalData()
|
|||||||
case 0x15: // Define Active Object
|
case 0x15: // Define Active Object
|
||||||
case 0x16: // Define Adaptive Object
|
case 0x16: // Define Adaptive Object
|
||||||
case 0x17: // Define Passive Object
|
case 0x17: // Define Passive Object
|
||||||
|
m_objects[triplet->modeExt() - 0x15].append(i);
|
||||||
activePosition.reset();
|
activePosition.reset();
|
||||||
// Make sure data field holds correct place of triplet
|
// Make sure data field holds correct place of triplet
|
||||||
// otherwise the object won't appear
|
// otherwise the object won't appear
|
||||||
|
|||||||
@@ -96,11 +96,13 @@ public:
|
|||||||
bool isEmpty() const { return m_list.isEmpty(); }
|
bool isEmpty() const { return m_list.isEmpty(); }
|
||||||
void reserve(int alloc) { m_list.reserve(alloc); }
|
void reserve(int alloc) { m_list.reserve(alloc); }
|
||||||
int size() const { return m_list.size(); }
|
int size() const { return m_list.size(); }
|
||||||
|
const QList<int> &objects(int t) const { return m_objects[t]; };
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void updateInternalData();
|
void updateInternalData();
|
||||||
|
|
||||||
QList<X26Triplet> m_list;
|
QList<X26Triplet> m_list;
|
||||||
|
QList<int> m_objects[3];
|
||||||
|
|
||||||
class ActivePosition
|
class ActivePosition
|
||||||
{
|
{
|
||||||
|
|||||||
243
x28commands.cpp
Normal file
243
x28commands.cpp
Normal file
@@ -0,0 +1,243 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2020-2024 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 "x28commands.h"
|
||||||
|
|
||||||
|
#include "document.h"
|
||||||
|
|
||||||
|
X28Command::X28Command(TeletextDocument *teletextDocument, QUndoCommand *parent) : QUndoCommand(parent)
|
||||||
|
{
|
||||||
|
m_teletextDocument = teletextDocument;
|
||||||
|
m_subPageIndex = teletextDocument->currentSubPageIndex();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SetFullScreenColourCommand::SetFullScreenColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_oldColour = teletextDocument->currentSubPage()->defaultScreenColour();
|
||||||
|
m_newColour = newColour;
|
||||||
|
|
||||||
|
setText(QObject::tr("full screen colour"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetFullScreenColourCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setDefaultScreenColour(m_newColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetFullScreenColourCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setDefaultScreenColour(m_oldColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetFullScreenColourCommand::mergeWith(const QUndoCommand *command)
|
||||||
|
{
|
||||||
|
const SetFullScreenColourCommand *newerCommand = static_cast<const SetFullScreenColourCommand *>(command);
|
||||||
|
|
||||||
|
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
m_newColour = newerCommand->m_newColour;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SetFullRowColourCommand::SetFullRowColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_oldColour = teletextDocument->currentSubPage()->defaultRowColour();
|
||||||
|
m_newColour = newColour;
|
||||||
|
|
||||||
|
setText(QObject::tr("full row colour"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetFullRowColourCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setDefaultRowColour(m_newColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetFullRowColourCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setDefaultRowColour(m_oldColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetFullRowColourCommand::mergeWith(const QUndoCommand *command)
|
||||||
|
{
|
||||||
|
const SetFullRowColourCommand *newerCommand = static_cast<const SetFullRowColourCommand *>(command);
|
||||||
|
|
||||||
|
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
m_newColour = newerCommand->m_newColour;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SetCLUTRemapCommand::SetCLUTRemapCommand(TeletextDocument *teletextDocument, int newMap, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_oldMap = teletextDocument->currentSubPage()->colourTableRemap();
|
||||||
|
m_newMap = newMap;
|
||||||
|
|
||||||
|
setText(QObject::tr("CLUT remapping"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetCLUTRemapCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setColourTableRemap(m_newMap);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetCLUTRemapCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setColourTableRemap(m_oldMap);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetCLUTRemapCommand::mergeWith(const QUndoCommand *command)
|
||||||
|
{
|
||||||
|
const SetCLUTRemapCommand *newerCommand = static_cast<const SetCLUTRemapCommand *>(command);
|
||||||
|
|
||||||
|
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
m_newMap = newerCommand->m_newMap;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SetBlackBackgroundSubstCommand::SetBlackBackgroundSubstCommand(TeletextDocument *teletextDocument, bool newSub, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_oldSub = teletextDocument->currentSubPage()->blackBackgroundSubst();
|
||||||
|
m_newSub = newSub;
|
||||||
|
|
||||||
|
setText(QObject::tr("black background substitution"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetBlackBackgroundSubstCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setBlackBackgroundSubst(m_newSub);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetBlackBackgroundSubstCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setBlackBackgroundSubst(m_oldSub);
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
emit m_teletextDocument->pageOptionsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetBlackBackgroundSubstCommand::mergeWith(const QUndoCommand *command)
|
||||||
|
{
|
||||||
|
const SetBlackBackgroundSubstCommand *newerCommand = static_cast<const SetBlackBackgroundSubstCommand *>(command);
|
||||||
|
|
||||||
|
if (m_subPageIndex != newerCommand->m_subPageIndex)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
setObsolete(true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SetColourCommand::SetColourCommand(TeletextDocument *teletextDocument, int colourIndex, int newColour, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_colourIndex = colourIndex;
|
||||||
|
m_oldColour = teletextDocument->currentSubPage()->CLUT(colourIndex);
|
||||||
|
m_newColour = newColour;
|
||||||
|
|
||||||
|
setText(QObject::tr("colour change"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetColourCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setCLUT(m_colourIndex, m_newColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->colourChanged(m_colourIndex);
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetColourCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
m_teletextDocument->currentSubPage()->setCLUT(m_colourIndex, m_oldColour);
|
||||||
|
|
||||||
|
emit m_teletextDocument->colourChanged(m_colourIndex);
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ResetCLUTCommand::ResetCLUTCommand(TeletextDocument *teletextDocument, int colourTable, QUndoCommand *parent) : X28Command(teletextDocument, parent)
|
||||||
|
{
|
||||||
|
m_colourTable = colourTable;
|
||||||
|
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++)
|
||||||
|
m_oldColourEntry[i&7] = teletextDocument->currentSubPage()->CLUT(i);
|
||||||
|
|
||||||
|
setText(QObject::tr("CLUT %1 reset").arg(m_colourTable));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ResetCLUTCommand::redo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++) {
|
||||||
|
m_teletextDocument->currentSubPage()->setCLUT(i, m_teletextDocument->currentSubPage()->CLUT(i, 0));
|
||||||
|
emit m_teletextDocument->colourChanged(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ResetCLUTCommand::undo()
|
||||||
|
{
|
||||||
|
m_teletextDocument->selectSubPageIndex(m_subPageIndex);
|
||||||
|
for (int i=m_colourTable*8; i<m_colourTable*8+8; i++) {
|
||||||
|
m_teletextDocument->currentSubPage()->setCLUT(i, m_oldColourEntry[i&7]);
|
||||||
|
emit m_teletextDocument->colourChanged(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
emit m_teletextDocument->contentsChanged();
|
||||||
|
}
|
||||||
126
x28commands.h
Normal file
126
x28commands.h
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2020-2024 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 X28COMMANDS_H
|
||||||
|
#define X28COMMANDS_H
|
||||||
|
|
||||||
|
#include <QUndoCommand>
|
||||||
|
|
||||||
|
#include "document.h"
|
||||||
|
|
||||||
|
class X28Command : public QUndoCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
X28Command(TeletextDocument *teletextDocument, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
TeletextDocument *m_teletextDocument;
|
||||||
|
int m_subPageIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetFullScreenColourCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 301 };
|
||||||
|
|
||||||
|
SetFullScreenColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
bool mergeWith(const QUndoCommand *command) override;
|
||||||
|
int id() const override { return Id; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_oldColour, m_newColour;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetFullRowColourCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 302 };
|
||||||
|
|
||||||
|
SetFullRowColourCommand(TeletextDocument *teletextDocument, int newColour, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
bool mergeWith(const QUndoCommand *command) override;
|
||||||
|
int id() const override { return Id; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_oldColour, m_newColour;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetCLUTRemapCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 303 };
|
||||||
|
|
||||||
|
SetCLUTRemapCommand(TeletextDocument *teletextDocument, int newMap, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
bool mergeWith(const QUndoCommand *command) override;
|
||||||
|
int id() const override { return Id; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_oldMap, m_newMap;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetBlackBackgroundSubstCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum { Id = 304 };
|
||||||
|
|
||||||
|
SetBlackBackgroundSubstCommand(TeletextDocument *teletextDocument, bool newSub, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
bool mergeWith(const QUndoCommand *command) override;
|
||||||
|
int id() const override { return Id; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_oldSub, m_newSub;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetColourCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SetColourCommand(TeletextDocument *teletextDocument, int colourIndex, int newColour, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_colourIndex, m_oldColour, m_newColour;
|
||||||
|
};
|
||||||
|
|
||||||
|
class ResetCLUTCommand : public X28Command
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ResetCLUTCommand(TeletextDocument *teletextDocument, int colourTable, QUndoCommand *parent = 0);
|
||||||
|
|
||||||
|
void redo() override;
|
||||||
|
void undo() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_colourTable;
|
||||||
|
int m_oldColourEntry[8];
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user