diff options
| author | Jonathan Bauer | 2011-02-01 16:49:59 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-02-01 16:49:59 +0100 |
| commit | cbd71522f60cc2058634b6fd9068e5ba9af7b779 (patch) | |
| tree | ac74c5ff47339c498183c4dd3d050cd154a6923a /src/jsObject.h | |
| parent | deleted .metadata (diff) | |
| parent | i added jsObject (diff) | |
| download | fbgui-cbd71522f60cc2058634b6fd9068e5ba9af7b779.tar.gz fbgui-cbd71522f60cc2058634b6fd9068e5ba9af7b779.tar.xz fbgui-cbd71522f60cc2058634b6fd9068e5ba9af7b779.zip | |
Merge branch 'master' of git.openslx.org:lsfks/master-teamprojekt/fbgui
Conflicts:
.metadata/.log
.metadata/.plugins/org.eclipse.cdt.core/.log
.metadata/.plugins/org.eclipse.cdt.core/fbbrowser.1294830673062.pdom
.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources
.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.epp.usagedata.recording.prefs
.metadata/.plugins/org.eclipse.epp.usagedata.recording/usagedata.csv
src/fbgui.pro
Diffstat (limited to 'src/jsObject.h')
| -rw-r--r-- | src/jsObject.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/jsObject.h b/src/jsObject.h new file mode 100644 index 0000000..20ae403 --- /dev/null +++ b/src/jsObject.h @@ -0,0 +1,37 @@ +/* + * jsObject.h + * + * Created on: Feb 1, 2011 + * Author: niklas + */ + +#ifndef JSOBJECT_H_ +#define JSOBJECT_H_ + +enum Action +{ + QUIT, + SHOW_USB_DEVICES, + SHOW_HARDDRIVES, + SHOW_MAC_ADDRESS, + SHOW_IP_ADDRESS, + SHOW_TIME, + SHOW_DATE +}; + +class jsObject { + Q_OBJECT + +public: + jsObject(const fbbrowser & browser); + virtual ~jsObject(); + +private: + fbbrowser browser; + +slots: + void performAction(Action a)); + +}; + +#endif /* JSOBJECT_H_ */ |
