aboutsummaryrefslogtreecommitdiff
path: root/src/xembed.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-05-18 23:11:41 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-05-18 23:11:41 +0200
commit687de724066bc9be42c191fde36924f051b30304 (patch)
tree0a00d08d08bd38b7b58429b6214c56fd79ce1c6b /src/xembed.hh
parent2ea9718c0a3297ff91c1219b3e011a8a3367461f (diff)
add missing xembed files
Diffstat (limited to 'src/xembed.hh')
-rw-r--r--src/xembed.hh12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/xembed.hh b/src/xembed.hh
new file mode 100644
index 00000000..06bd599c
--- /dev/null
+++ b/src/xembed.hh
@@ -0,0 +1,12 @@
+#ifndef __XIDWINDOW_HH__
+#define __XIDWINDOW_HH__
+
+#include <fltk/Window.h>
+
+class Xembed : public fltk::Window {
+ public:
+ Xembed(int _w, int _h) : fltk::Window(_w, _h) {};
+ void embed(unsigned long xid);
+};
+
+#endif