leocad/common/lc_keyframewidget.cpp
2024-01-21 12:53:18 -08:00

38 lines
956 B
C++

#include "lc_global.h"
#include "lc_keyframewidget.h"
lcKeyFrameWidget::lcKeyFrameWidget(QWidget* Parent)
: QCheckBox(Parent)
{
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
setCheckable(true);
}
void lcKeyFrameWidget::paintEvent(QPaintEvent* PaintEvent)
{
Q_UNUSED(PaintEvent);
QPainter Painter(this);
QRect Rect = rect();
Painter.fillRect(Rect, palette().brush(QPalette::Window));
Qt::CheckState State = checkState();
Painter.setPen(hasFocus() ? palette().color(QPalette::Highlight) : palette().color(QPalette::Shadow));
if (State != Qt::PartiallyChecked)
Painter.setBrush(palette().color(QPalette::Text));
Rect = (State != Qt::Unchecked) ? QRect(1, 1, 13, 13) : QRect(4, 4, 7, 7);
const QPoint Center = Rect.center();
QPoint Points[4] =
{
QPoint(Rect.left(), Center.y()),
QPoint(Center.x(), Rect.bottom()),
QPoint(Rect.right(), Center.y()),
QPoint(Center.x(), Rect.top())
};
Painter.drawPolygon(Points, 4);
}