aboutsummaryrefslogtreecommitdiff
path: root/src/xembed.hh
diff options
context:
space:
mode:
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