/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/ThirdParty/ads/PushButton.cpp
70 строк
2 KB
Jan Krassnigg
Updated ADS to version 4.3.1 (#1448)
07 дек 2024, 16:14
Не верифицирован
07 дек 2024, 16:14
d525402
Код
Авторство
О чём код?
//============================================================================ /// \file PushButton.cpp /// \author Uwe Kindler /// \date 18.10.2022 /// \brief Implementation of CPushButton //============================================================================ //============================================================================ // INCLUDES //============================================================================ #include "PushButton.h" #include <QPainter> #include <QStyleOptionButton> #include <QDebug> #include <QStylePainter> namespace ads { QSize CPushButton::sizeHint() const { QSize sh = QPushButton::sizeHint(); if (m_Orientation != CPushButton::Horizontal) { sh.transpose(); } return sh; } void CPushButton::paintEvent(QPaintEvent *event) { Q_UNUSED(event); QStylePainter painter(this); QStyleOptionButton option; initStyleOption(&option); if (m_Orientation == CPushButton::VerticalTopToBottom) { painter.rotate(90); painter.translate(0, -1 * width()); option.rect = option.rect.transposed(); } else if (m_Orientation == CPushButton::VerticalBottomToTop) { painter.rotate(-90); painter.translate(-1 * height(), 0); option.rect = option.rect.transposed(); } painter.drawControl(QStyle::CE_PushButton, option); } CPushButton::Orientation CPushButton::buttonOrientation() const { return m_Orientation; } void CPushButton::setButtonOrientation(Orientation orientation) { m_Orientation = orientation; updateGeometry(); } } // namespace ads //--------------------------------------------------------------------------- // EOF PushButton.cpp