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

24 lines
409 B
C++

#ifndef _ICCCM_H_
#define _ICCCM_H_
class Frame;
class ICCCM
{
public:
static void state_iconic(Frame *f);
static void state_normal(Frame *f);
static void state_withdrawn(Frame *f);
static void configure(Frame *f);
static void set_iconsizes();
static bool get_size(Frame *f, int &w, int &h);
static char *get_title(Frame *f);
static bool size_hints(Frame *f);
};
#endif