CCIMXDesktop
 
Loading...
Searching...
No Matches
BonusFunctor.h
1#ifndef BONUSFUNCTOR_H
2#define BONUSFUNCTOR_H
3
4#include <QWidget>
5
6namespace Ui {
7class BonusFunctor;
8}
9
17class BonusFunctor : public QWidget {
18 Q_OBJECT
19
20public:
25 explicit BonusFunctor(QWidget* parent = nullptr);
26
31
32signals:
37 void req_append(const QString& value);
38
43
47 void req_clear();
48
49private:
53 void setup_panel();
54
58 Ui::BonusFunctor* ui;
59};
60
61#endif // BONUSFUNCTOR_H
The BonusFunctor class provides a QWidget-based panel with interactive controls to emit string operat...
Definition BonusFunctor.h:17
void req_clear()
Signal emitted to request clearing the current value.
void req_chop_once()
Signal emitted to request chopping the last character once.
void req_append(const QString &value)
Signal emitted to request appending a value.
~BonusFunctor()
Destructor.
Definition BonusFunctor.cpp:21