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:
@@ -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
|
||||
Reference in New Issue
Block a user