summaryrefslogtreecommitdiffstats
path: root/src/JSObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/JSObject.h')
-rw-r--r--src/JSObject.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/JSObject.h b/src/JSObject.h
index 1102610..427aae8 100644
--- a/src/JSObject.h
+++ b/src/JSObject.h
@@ -48,6 +48,8 @@ public:
signals:
void requestFile(QString& filename);
+ void getMAC();
+ void getTime();
void signalQuitAll();
/*
// should be the last signal to be emited.
@@ -83,19 +85,25 @@ public slots:
// slots which are emited by the jsObject signals
void quitAll();
+ // Slots for handling downloads.
void startDownload(QString filename);
void updateProgress(int i);
+ // Slots for handling MAC Adress stuff
+ void getMacAddress();
+ void printMAC(QString& macAddress);
+ // Slots for handling time stuff
+ void showTime();
+ void printTime(QString& time);
- // System info stuff
+ // Not yet implemented.
void getSysInfo();
- void getMacAddress();
void getIpAddress();
void getIntegratedHardwareDevices();
void getUsbDevices();
void getHardDrives();
// for testing reasons
- void showTime();
+
void showDate();
void showHelloWorld();