first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#include "rm_popup_content_background.h"
#include <QStyleOption>
#include <QPainter>
RMPopupContentBackground::RMPopupContentBackground(QWidget *parent) : QWidget(parent)
{
}
void RMPopupContentBackground::paintEvent(QPaintEvent *pe)
{
Q_UNUSED(pe);
QStyleOption o;
o.initFrom(this);
QPainter p(this);
style()->drawPrimitive(QStyle::PE_Widget, &o, &p, this);
}