##// END OF EJS Templates
Ajout d'un paramètre à la fonction sendTimecodePeriodically()...
Ajout d'un paramètre à la fonction sendTimecodePeriodically() RMAPPlugin0.sendTimecodePeriodically(1) => démarrage de l'émission RMAPPlugin0.sendTimecodePeriodically(0) => arrêt de l'émission

File last commit:

r62:8490a8b44e9a default
r63:3581c05019b0 default
Show More
systemtime.h
36 lines | 631 B | text/x-c | CLexer
#ifndef SYSTEMTIME_H
#define SYSTEMTIME_H
#include <QWidget>
#include <QLabel>
#include <QGridLayout>
#include <QLineEdit>
#include <QRegExpValidator>
#include "arbitrarytime.h"
class SystemTime : public QWidget
{
Q_OBJECT
public:
explicit SystemTime(QWidget *parent = 0);
signals:
void timeToSendChanged(long timeToSend);
public slots:
void editingFinishedSLOT(long time);
void systemTimeHasChanged(long time);
private:
long currentTime;
QLabel *currentTimePrefix_LABEL;
QLabel *currentTime_LABEL;
QGridLayout *main_LAYOUT;
ArbitraryTime *arbitraryTime;
};
#endif // SYSTEMTIME_H