Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,45 @@
#ifndef kledtest_h
#define kledtest_h
#include <QTimer>
#include <QWidget>
#include <kled.h>
#include <stdlib.h>
class KLedTest : public QWidget
{
Q_OBJECT
protected:
QTimer timer;
KLed *leds[/*KLed::NoOfShapes*/ 2 * /*KLed::NoOfLooks*/ 3 * /*KLed::NoOfStates*/ 2];
const int LedWidth;
const int LedHeight;
const int Grid;
KLed::Shape shape;
KLed::Look look;
KLed::State state;
int x, y, index;
QTimer t_toggle, t_color, t_look;
// KLed *l; // create lamp
// KLed *l; // create lamp
KLed *l; // create lamp
// KLed *l; // create lamp
// KLed *l; // create lamp
int ledcolor;
KLed::Look ledlook;
public:
KLedTest(QWidget *parent = nullptr);
~KLedTest() override;
bool kled_round;
public Q_SLOTS:
void timeout();
void nextColor();
void nextLook();
};
#endif