Files
RedBear-OS/local/recipes/kde/kf6-prison/source/tests/prisontest.h
T
vasilito 1e71b37bdb chore: close session — commit all remaining pre-existing state
Finalize all non-artifact changes accumulated from other sessions:
- config updates, recipe changes, source edits, patches
- pkgar/cache artifacts intentionally excluded (build outputs)

This is the maximum achievable scope for this session.
Hardware-accelerated KDE blocked by: QML gate, KWin/Plasma builds,
hardware GPU validation — all require build system + physical GPU.
2026-05-01 03:15:20 +01:00

31 lines
694 B
C++

#ifndef prison_H
#define prison_H
#include <QWidget>
class BarcodeExampleWidget;
class QLineEdit;
class main_window : public QWidget
{
Q_OBJECT
public:
main_window();
public Q_SLOTS:
void data_changed();
private:
QLineEdit *m_lineedit = nullptr;
BarcodeExampleWidget *m_dmw = nullptr;
BarcodeExampleWidget *m_qrw = nullptr;
BarcodeExampleWidget *m_39w = nullptr;
BarcodeExampleWidget *m_93w = nullptr;
BarcodeExampleWidget *m_dmcolor = nullptr;
BarcodeExampleWidget *m_qrcolor = nullptr;
BarcodeExampleWidget *m_39color = nullptr;
BarcodeExampleWidget *m_93color = nullptr;
BarcodeExampleWidget *m_nullw = nullptr;
};
#endif // prison_H