Initial commit of BudgetPro

This commit is contained in:
Javi
2026-05-24 23:21:33 +02:00
commit f3096faee6
575 changed files with 90288 additions and 0 deletions
@@ -0,0 +1,25 @@
#ifndef RIBBONWIDGET_H
#define RIBBONWIDGET_H
#include "SARibbonWidget.h"
#include <QComboBox>
class SARibbonBar;
class RibbonWidget : public SARibbonWidget
{
Q_OBJECT
public:
RibbonWidget(QWidget* parent = nullptr);
~RibbonWidget();
private:
void buildRibbon(SARibbonBar* bar);
QAction* createAction(const QString& text, const QString& iconurl);
private Q_SLOTS:
void onRibbonThemeComboBoxCurrentIndexChanged(int index);
private:
QComboBox* mComboTheme { nullptr };
};
#endif // WIDGET_H