ede/edewm/Netwm.h

18 lines
272 B
C
Raw Normal View History

2009-02-20 16:05:43 +03:00
#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