392 lines
8.5 KiB
C
392 lines
8.5 KiB
C
/*
|
|
* structs.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 STRUCTS_H
|
|
#define STRUCTS_H
|
|
|
|
#include "wmfs.h"
|
|
|
|
#define NBUTTON 8
|
|
#define MAXTAG 36
|
|
#define NUM_OF_LAYOUT 9
|
|
|
|
/* Clients flags definition */
|
|
#define FreeFlag (1 << 1)
|
|
#define MaxFlag (1 << 2)
|
|
#define TileFlag (1 << 3)
|
|
#define HideFlag (1 << 4)
|
|
#define LMaxFlag (1 << 5)
|
|
#define UnmapFlag (1 << 6)
|
|
#define HintFlag (1 << 7)
|
|
#define FSSFlag (1 << 8)
|
|
|
|
/* Typedef */
|
|
typedef const char* uicb_t;
|
|
typedef unsigned int uint;
|
|
typedef unsigned long ulong;
|
|
typedef unsigned short ushort;
|
|
typedef unsigned char uchar;
|
|
|
|
/* Enum */
|
|
enum { CurNormal, CurResize, CurRightResize, CurLeftResize, CurMove, CurLast };
|
|
|
|
/* Infobar position */
|
|
enum { IB_Hide = 0, IB_Bottom = 1, IB_Top = 2 };
|
|
|
|
typedef enum { Right, Left, Top, Bottom, Center, PositionLast } Position;
|
|
|
|
|
|
/* Ewmh hints list */
|
|
enum
|
|
{
|
|
net_supported,
|
|
net_wm_name,
|
|
net_client_list,
|
|
net_frame_extents,
|
|
net_number_of_desktops,
|
|
net_current_desktop,
|
|
net_desktop_names,
|
|
net_desktop_geometry,
|
|
net_workarea,
|
|
net_active_window,
|
|
net_close_window,
|
|
net_wm_icon_name,
|
|
net_wm_window_type,
|
|
net_wm_pid,
|
|
net_showing_desktop,
|
|
net_supporting_wm_check,
|
|
net_wm_window_type_normal,
|
|
net_wm_window_type_dock,
|
|
net_wm_window_type_splash,
|
|
net_wm_window_type_dialog,
|
|
net_wm_desktop,
|
|
net_wm_icon,
|
|
net_wm_state,
|
|
net_wm_state_fullscreen,
|
|
net_wm_state_demands_attention,
|
|
utf8_string,
|
|
/* WMFS HINTS */
|
|
wmfs_running,
|
|
wmfs_update_hints,
|
|
wmfs_current_tag,
|
|
wmfs_current_screen,
|
|
wmfs_current_layout,
|
|
wmfs_tag_list,
|
|
wmfs_mwfact,
|
|
wmfs_nmaster,
|
|
wmfs_set_screen,
|
|
wmfs_screen_count,
|
|
wmfs_statustext,
|
|
wmfs_function,
|
|
wmfs_cmd,
|
|
net_last
|
|
};
|
|
|
|
/*
|
|
* BarWindow Structure
|
|
* (titlebar, infobar..)
|
|
*/
|
|
typedef struct
|
|
{
|
|
Window win;
|
|
Drawable dr;
|
|
struct
|
|
{
|
|
/* Border Window */
|
|
Window left, right, top, bottom;
|
|
/* Border color */
|
|
uint dark, light;
|
|
|
|
} border;
|
|
uint bg;
|
|
char *fg;
|
|
uint stipple_color;
|
|
XRectangle geo;
|
|
Bool mapped, stipple, bord;
|
|
} BarWindow;
|
|
|
|
/* Client Structure. */
|
|
typedef struct Client Client;
|
|
struct Client
|
|
{
|
|
/* Client title */
|
|
char *title;
|
|
/* Tag num */
|
|
int tag;
|
|
/* Screen */
|
|
int screen;
|
|
/* Window attribute */
|
|
XRectangle geo;
|
|
XRectangle tmp_geo;
|
|
XRectangle frame_geo;
|
|
/* Old window attribute */
|
|
XRectangle ogeo;
|
|
/* For resizehint usage */
|
|
int basew, baseh, incw, inch;
|
|
int maxw, maxh, minw, minh;
|
|
int minax, maxax, minay, maxay;
|
|
/* Client composant {{{ */
|
|
Window win;
|
|
Window *button;
|
|
int button_last_x;
|
|
BarWindow *titlebar;
|
|
Window frame, resize[2];
|
|
/* Border */
|
|
Window right, left, top, bottom;
|
|
/* }}} */
|
|
struct
|
|
{
|
|
uint frame;
|
|
char *fg;
|
|
uint resizecorner;
|
|
} colors;
|
|
/* Client Information by flags */
|
|
uint flags;
|
|
/* Struct in chains */
|
|
Client *next;
|
|
Client *prev;
|
|
};
|
|
|
|
/* Keybind Structure */
|
|
typedef struct
|
|
{
|
|
uint mod;
|
|
KeySym keysym;
|
|
void (*func)(uicb_t);
|
|
uicb_t cmd;
|
|
} Key;
|
|
|
|
/* Mouse Binding Struct */
|
|
typedef struct
|
|
{
|
|
int tag;
|
|
int screen;
|
|
uint button;
|
|
void (*func)(uicb_t);
|
|
uicb_t cmd;
|
|
} MouseBinding;
|
|
|
|
/* InfoBar Struct */
|
|
typedef struct
|
|
{
|
|
BarWindow *bar;
|
|
BarWindow *layout_button;
|
|
BarWindow *tags[MAXTAG];
|
|
XRectangle geo;
|
|
int position;
|
|
char statustext[1024];
|
|
} InfoBar;
|
|
|
|
/* Layout Structure */
|
|
typedef struct
|
|
{
|
|
char *symbol;
|
|
void (*func)(int screen);
|
|
} Layout;
|
|
|
|
/* Tag Structure */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
char **clients;
|
|
int nclients;
|
|
float mwfact;
|
|
int nmaster;
|
|
Bool resizehint;
|
|
Bool request_update;
|
|
int barpos;
|
|
Layout layout;
|
|
} Tag;
|
|
|
|
/* Menu Item Struct */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
void (*func)(uicb_t);
|
|
uicb_t cmd;
|
|
} MenuItem;
|
|
|
|
/* Menu Struct */
|
|
typedef struct
|
|
{
|
|
/* Name of the menu for call
|
|
* it in the conf (function = "menu"
|
|
* menu = "<name>").
|
|
*/
|
|
char *name;
|
|
/* Placement */
|
|
Bool place_at_mouse;
|
|
int x, y;
|
|
/* Color */
|
|
struct
|
|
{
|
|
struct { uint bg; char *fg; } focus;
|
|
struct { uint bg; char *fg; } normal;
|
|
} colors;
|
|
/* Number of item */
|
|
int nitem, focus_item;
|
|
/* Item */
|
|
MenuItem *item;
|
|
} Menu;
|
|
|
|
/* Launcher struct */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
char *prompt;
|
|
char *command;
|
|
} Launcher;
|
|
|
|
/* Button struct */
|
|
typedef struct
|
|
{
|
|
MouseBinding *mouse;
|
|
XSegment *linecoord;
|
|
int nlines;
|
|
int nmouse;
|
|
} Button;
|
|
|
|
/* Alias struct */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
char *content;
|
|
} Alias;
|
|
|
|
/* Configuration structure */
|
|
typedef struct
|
|
{
|
|
/* Configuration file path */
|
|
char confpath[512];
|
|
|
|
/* Misc option */
|
|
char *font;
|
|
Bool raisefocus;
|
|
Bool raiseswitch;
|
|
Bool focus_fmouse;
|
|
uint pad;
|
|
struct
|
|
{
|
|
/*
|
|
* Only the colors will be use for text
|
|
* are 'char*' (for xprint -> XftColorAllocName)
|
|
*/
|
|
uint bar;
|
|
char *text;
|
|
char *tagselfg;
|
|
uint tagselbg;
|
|
uint tag_occupied_bg;
|
|
uint tagbord;
|
|
char *layout_fg;
|
|
uint layout_bg;
|
|
} colors;
|
|
struct
|
|
{
|
|
int height;
|
|
MouseBinding *mouse;
|
|
int nmouse;
|
|
} bars;
|
|
struct
|
|
{
|
|
char *background_command;
|
|
MouseBinding *mouse;
|
|
int nmouse;
|
|
} root;
|
|
struct
|
|
{
|
|
Bool place_at_mouse;
|
|
Bool border_shadow;
|
|
int borderheight;
|
|
uint bordernormal;
|
|
uint borderfocus;
|
|
uint resizecorner_normal;
|
|
uint resizecorner_focus;
|
|
uint mod;
|
|
MouseBinding *mouse;
|
|
int nmouse;
|
|
} client;
|
|
struct
|
|
{
|
|
int height;
|
|
char *fg_normal;
|
|
char *fg_focus;
|
|
struct
|
|
{
|
|
Bool active;
|
|
struct { uint normal, focus; } colors;
|
|
} stipple;
|
|
MouseBinding *mouse;
|
|
int nmouse;
|
|
Button *button;
|
|
int nbutton;
|
|
} titlebar;
|
|
struct
|
|
{
|
|
Bool bar;
|
|
Bool tag;
|
|
Bool layout;
|
|
} border;
|
|
Alias alias[256];
|
|
Layout layout[NUM_OF_LAYOUT];
|
|
Menu *menu;
|
|
Launcher *launcher;
|
|
int *ntag;
|
|
Bool tag_round;
|
|
Bool layout_system; /* Switch: False, Menu: True. */
|
|
/* Number of... */
|
|
int nkeybind;
|
|
int nlayout;
|
|
int nmenu;
|
|
int nlauncher;
|
|
} 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;
|
|
uint button;
|
|
} name_to_uint_t;
|
|
|
|
#endif /* STRUCTS_H */
|