ede/edewm/Netwm.h
2009-02-20 13:05:43 +00:00

18 lines
272 B
C++

#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