315 lines
7.7 KiB
C
315 lines
7.7 KiB
C
/*
|
|
* wmfs.h
|
|
* Copyright © 2008 Martin Duquesnoy <xorg62@gmail.com>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the following disclaimer
|
|
* in the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* * Neither the name of the nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef LOCAL_H
|
|
#define LOCAL_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
#include <getopt.h>
|
|
#include <sys/types.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xproto.h>
|
|
#include <X11/Xatom.h>
|
|
#include <X11/keysym.h>
|
|
#include <X11/cursorfont.h>
|
|
#include <X11/Xutil.h>
|
|
#include <confuse.h>
|
|
#include "config.h"
|
|
|
|
|
|
/* Defines */
|
|
#define ButtonMask (ButtonPressMask | ButtonReleaseMask)
|
|
#define MouseMask (ButtonMask | PointerMotionMask)
|
|
#define KeyMask (KeyPressMask | KeyReleaseMask)
|
|
#define ALT Mod1Mask
|
|
#define ITOA(p ,n) sprintf(p, "%i", n)
|
|
#define debug(p) printf("debug: %i\n", p)
|
|
#define MAXTAG 36
|
|
#define NBUTTON 5
|
|
#define BUTY(y) y - conf.ttbarheight + 3
|
|
#define BUTH conf.ttbarheight - 6
|
|
#define BUTX(x, w) x + w - BUTH/400
|
|
#define TEXTW(x) XTextWidth(font, x, strlen(x)) + (fonth / 10)
|
|
#define MAXLAYOUT 3
|
|
|
|
/* Client Structure */
|
|
typedef struct Client Client;
|
|
struct Client
|
|
{
|
|
char *title; /* Client title */
|
|
int tag; /* Tag num */
|
|
int x, y, w, h; /* Window attribute */
|
|
int ox, oy, ow, oh; /* Old window attribute */
|
|
/* For resizehint usage { */
|
|
int basew, baseh, incw, inch;
|
|
int maxw, maxh, minw, minh;
|
|
int minax, maxax, minay, maxay;
|
|
/* } */
|
|
Window win; /* Window */
|
|
Window tbar; /* Titlebar */
|
|
Window button; /* Close Button */
|
|
Bool max, tile, free; /* Client Info */
|
|
Bool hint, hide, lmax;/* Client Info² */
|
|
/* Struct in chains */
|
|
Client *next; /* Next client */
|
|
Client *prev; /* Previous client */
|
|
};
|
|
|
|
/* Keybind Structure */
|
|
typedef struct
|
|
{
|
|
unsigned long mod;
|
|
KeySym keysym;
|
|
void (*func)(char *cmd);
|
|
char *cmd;
|
|
} Key;
|
|
|
|
/* Bar Button */
|
|
typedef struct
|
|
{
|
|
char *text;
|
|
Window win;
|
|
int fg_color;
|
|
int bg_color;
|
|
unsigned int x;
|
|
int nmousesec;
|
|
void (*func[NBUTTON])(char *cmd);
|
|
char *cmd[NBUTTON];
|
|
unsigned int mouse[NBUTTON];
|
|
} BarButton;
|
|
|
|
/* Layout Structure */
|
|
typedef struct
|
|
{
|
|
char *symbol;
|
|
void (*func)(void);
|
|
} Layout;
|
|
|
|
/* Tag Structure */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
float mwfact;
|
|
int nmaster;
|
|
Layout layout;
|
|
} Tag;
|
|
|
|
/* Configuration structure */
|
|
typedef struct
|
|
{
|
|
bool raisefocus;
|
|
bool raiseswitch;
|
|
bool bartop;
|
|
int borderheight;
|
|
int ttbarheight;
|
|
struct
|
|
{
|
|
char *face;
|
|
char *style;
|
|
int size;
|
|
} font;
|
|
struct
|
|
{
|
|
int bordernormal;
|
|
int borderfocus;
|
|
int bar;
|
|
int text;
|
|
int tagselfg;
|
|
int tagselbg;
|
|
int layout_fg;
|
|
int layout_bg;
|
|
} colors;
|
|
Tag tag[MAXTAG];
|
|
Layout layout[MAXLAYOUT];
|
|
BarButton *barbutton;
|
|
int ntag;
|
|
int nkeybind;
|
|
int nbutton;
|
|
int nlayout;
|
|
} Conf;
|
|
|
|
/* Config.c struct */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
void *func;
|
|
} func_name_list_t;
|
|
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
KeySym keysym;
|
|
} key_name_list_t;
|
|
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
unsigned int button;
|
|
} name_to_uint_t;
|
|
|
|
/* Enum */
|
|
enum { CurNormal, CurResize, CurMove, CurLast };
|
|
enum { WMState, WMProtocols, WMName, WMDelete, WMLast };
|
|
enum { NetSupported, NetWMName, NetLast };
|
|
|
|
/* Functions Prototypes */
|
|
|
|
/* config.c */
|
|
void init_conf(void);
|
|
|
|
/* event.c */
|
|
void buttonpress(XEvent ev);
|
|
void configurerequest(XEvent ev);
|
|
void destroynotify(XEvent ev);
|
|
void enternotify(XEvent ev);
|
|
void expose(XEvent ev);
|
|
void focusin(XEvent ev);
|
|
void keypress(XEvent ev);
|
|
void mapnotify(XEvent ev);
|
|
void maprequest(XEvent ev);
|
|
void propertynotify(XEvent ev);
|
|
void unmapnotify(XEvent ev);
|
|
void getevent(void);
|
|
|
|
/* util.c */
|
|
void *emalloc(unsigned int elemet, unsigned int size);
|
|
unsigned long getcolor(char *color);
|
|
void uicb_spawn(char *cmd);
|
|
|
|
/* tag.c */
|
|
void uicb_tag(char *cmd);
|
|
void uicb_tag_next(char *cmd);
|
|
void uicb_tag_prev(char *cmd);
|
|
void uicb_tagtransfert(char *cmd);
|
|
|
|
/* layout.c */
|
|
void freelayout(void);
|
|
void layoutswitch(Bool b);
|
|
void maxlayout(void);
|
|
Client* nexttiled(Client *c);
|
|
void tile(void);
|
|
void uicb_tile_switch(char *cmd);
|
|
void uicb_togglemax(char *cmd);
|
|
void uicb_layout_prev(char *cmd);
|
|
void uicb_layout_next(char *cmd);
|
|
void uicb_set_mwfact(char *cmd);
|
|
void uicb_set_nmaster(char *cmd);
|
|
|
|
/* wmfs.c */
|
|
void arrange(void);
|
|
void attach(Client *c);
|
|
int clientpertag(int tag);
|
|
void client_switch(Bool c);
|
|
void detach(Client *c);
|
|
int errorhandler(Display *d, XErrorEvent *event);
|
|
int errorhandlerdummy(Display *d, XErrorEvent *event);
|
|
void focus(Client *c);
|
|
Client* getbutton(Window w);
|
|
Client* getclient(Window w);
|
|
Client* getnext(Client *c);
|
|
Client* gettbar(Window w);
|
|
void grabbuttons(Client *c, Bool focused);
|
|
void grabkeys(void);
|
|
void hide(Client *c);
|
|
void init(void);
|
|
Bool ishide(Client *c);
|
|
void mainloop(void);
|
|
void mapclient(Client *c);
|
|
void manage(Window w, XWindowAttributes *wa);
|
|
void mouseaction(Client *c, int x, int y, int type);
|
|
void moveresize(Client *c, int x, int y, int w, int h, bool r);
|
|
void raiseclient(Client *c);
|
|
void scan(void);
|
|
void setborder(Window win, int color);
|
|
void setwinstate(Window win, long state);
|
|
void setsizehints(Client *c);
|
|
void unhide(Client *c);
|
|
void unmanage(Client *c);
|
|
void updatebar(void);
|
|
void updatebutton(Bool c);
|
|
void unmapclient(Client *c);
|
|
void updateall(void);
|
|
void updatetitle(Client *c);
|
|
void uicb_client_prev(char *cmd);
|
|
void uicb_client_next(char *cmd);
|
|
void uicb_killclient(char *cmd);
|
|
void uicb_quit(char *cmd);
|
|
void uicb_togglebarpos(char *cmd);
|
|
|
|
/* Variables */
|
|
|
|
/* Principal */
|
|
Display *dpy;
|
|
XEvent event;
|
|
GC gc;
|
|
Window root;
|
|
int screen;
|
|
int mw, mh;
|
|
Conf conf;
|
|
Key *keys;
|
|
Bool exiting;
|
|
|
|
/* Atoms / Cursors */
|
|
Atom wm_atom[WMLast];
|
|
Atom net_atom[NetLast];
|
|
Cursor cursor[CurLast];
|
|
|
|
/* Fonts */
|
|
XFontStruct *font;
|
|
int fonth;
|
|
|
|
/* Bar / Tags */
|
|
Window bar;
|
|
Tag tags[MAXTAG];
|
|
int barheight;
|
|
char bartext[1024];
|
|
int seltag;
|
|
int taglen[MAXTAG];
|
|
Drawable dr;
|
|
int bary;
|
|
|
|
/* Important Client */
|
|
Client *clients;
|
|
Client *sel;
|
|
|
|
/* Other */
|
|
unsigned int numlockmask;
|
|
|
|
#endif /* LOCAL_H */
|
|
|