summaryrefslogtreecommitdiffstats
path: root/src/JSObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/JSObject.h')
-rw-r--r--src/JSObject.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/JSObject.h b/src/JSObject.h
deleted file mode 100644
index f11ddf1..0000000
--- a/src/JSObject.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * jsObject.h
- *
- * Created on: Feb 1, 2011
- * Author: niklas
- * The purpose of the jsObject class is to provide signals which will be emited in the javascript functions.
- * Those javascript functions are writen in a seperate file: jsFunktions.js
- */
-
-#ifndef JSOBJECT_H_
-#define JSOBJECT_H_
-
-
-#include "fbgui.h"
-
-
-class JSObject : public QObject{
- Q_OBJECT
-private:
- QWebFrame* _parent;
-
-public:
- JSObject(QWebFrame* parent);
- virtual ~JSObject();
-
-signals:
- void requestFile(QString& filename);
- void signalQuitAll();
-
-public slots:
- void attachToDOM();
- QString getSysInfo(QString info);
- void startDownload(QString filename);
- void updateProgressBar(int i);
- void quitAll();
-};
-
-#endif /* JSOBJECT_H_ */