Copying wm from old ede

This commit is contained in:
Sanel Zukan
2009-02-20 13:05:43 +00:00
parent f8c3e1ff7c
commit 7513426131
45 changed files with 7604 additions and 0 deletions

17
edewm/Netwm.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef _NETWM_H_
#define _NETWM_H_
#include <X11/Xlib.h>
class Frame;
class NETWM
{
public:
static void get_strut(Frame *f);
static bool get_window_type(Frame *f);
static char *get_title(Frame *f);
static void set_active_window(Window win);
};
#endif