mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
18 lines
272 B
C
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
|