mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
Initially it was planned to have separate text configuration for every terminal level. It's not useful, use same properties for every level is sufficient and visually more consistent. By consequent every QVector related to these properties was replaced by a single value.
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
/*
|
|
Copyright 2006-2022 The QElectroTech Team
|
|
This file is part of QElectroTech.
|
|
|
|
QElectroTech is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "terminalstriplayoutpattern.h"
|
|
#include "../../../utils/qetutils.h"
|
|
#include <QDebug>
|
|
|
|
TerminalStripLayoutPattern::TerminalStripLayoutPattern()
|
|
{
|
|
m_font.setPixelSize(15);
|
|
updateHeaderTextOption();
|
|
updateTerminalsTextOption();
|
|
}
|
|
|
|
void TerminalStripLayoutPattern::setHeaderTextAlignment(const Qt::Alignment &alignment)
|
|
{
|
|
m_header_text_alignment = alignment;
|
|
updateHeaderTextOption();
|
|
}
|
|
|
|
Qt::Alignment TerminalStripLayoutPattern::headerTextAlignment() const
|
|
{
|
|
return m_header_text_alignment;
|
|
}
|
|
|
|
QTextOption TerminalStripLayoutPattern::headerTextOption() const {
|
|
return m_header_text_option;
|
|
}
|
|
|
|
QFont TerminalStripLayoutPattern::font() const {
|
|
return m_font;
|
|
}
|
|
|
|
void TerminalStripLayoutPattern::setFont(const QFont &font) {
|
|
m_font = font;
|
|
QETUtils::pixelSizedFont(m_font);
|
|
}
|
|
|
|
void TerminalStripLayoutPattern::setTerminalsTextAlignment(const Qt::Alignment &alignment)
|
|
{
|
|
m_terminals_text_alignment = alignment;
|
|
updateTerminalsTextOption();
|
|
}
|
|
|
|
Qt::Alignment TerminalStripLayoutPattern::terminalsTextAlignment() const
|
|
{
|
|
return m_terminals_text_alignment;
|
|
}
|
|
|
|
QTextOption TerminalStripLayoutPattern::terminalsTextOption() const
|
|
{
|
|
return m_terminals_text_option;
|
|
}
|
|
|
|
void TerminalStripLayoutPattern::updateHeaderTextOption()
|
|
{
|
|
m_header_text_option.setAlignment(m_header_text_alignment);
|
|
m_header_text_option.setWrapMode(QTextOption::WordWrap);
|
|
}
|
|
|
|
void TerminalStripLayoutPattern::updateTerminalsTextOption()
|
|
{
|
|
m_terminals_text_option.setAlignment(m_terminals_text_alignment);
|
|
m_terminals_text_option.setWrapMode(QTextOption::WordWrap);
|
|
}
|