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, 10 insertions, 2 deletions
diff --git a/src/xembed.hh b/src/xembed.hh
index 72fbf887..0bb5e790 100644
--- a/src/xembed.hh
+++ b/src/xembed.hh
@@ -6,9 +6,17 @@
#include "d_size.h"
class Xembed : public fltk::Window {
+ uint32_t xid;
+ void create_internal(uint32_t parent);
+ void setXembedInfo(unsigned long flags);
+ void sendXembedEvent(uint32_t message);
+
public:
- Xembed(int _w, int _h) : fltk::Window(_w, _h) {};
- void embed(uint32_t xid);
+ Xembed(uint32_t xid, int _w, int _h) : fltk::Window(_w, _h) {
+ this->xid = xid;
+ };
+ void create();
+ int handle(int event);
};
#endif