most files - check if this is all we need

This commit is contained in:
2025-06-10 11:43:29 +02:00
parent 34244cacb5
commit 0fa6f49d7f
28 changed files with 9004 additions and 0 deletions

26
main.h Normal file
View File

@ -0,0 +1,26 @@
#include <stddef.h>
#include <qapplication.h>
#include <qstring.h>
#include "tab.h"
class SeaApp : public QApplication {
Q_OBJECT
public:
SeaApp(int &argc, char **argv);
Tab *tab;
int home;
time_t sleepTime;
public slots:
void ciao();
void fail();
void procEvt();
private:
bool notify(QObject *recevier, QEvent *e);
time_t lastActive;
time_t lastTimer;
bool sleeping;
};