File: modifiers.h

package info (click to toggle)
fvwm3 1.0.6a%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,408 kB
  • sloc: ansic: 141,349; perl: 4,891; sh: 4,568; makefile: 785; yacc: 688; lex: 187; sed: 11
file content (30 lines) | stat: -rw-r--r-- 981 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*-c-*- */

#ifndef FVWMLIB_MODIFIERS_H
#define FVWMLIB_MODIFIERS_H

/* ---------------------------- included header files ---------------------- */
#include "charmap.h"
#include "fvwm_x11.h"

/* ---------------------------- global definitions ------------------------- */

#define ALL_MODIFIERS (ShiftMask|LockMask|ControlMask|Mod1Mask|Mod2Mask|\
	Mod3Mask|Mod4Mask|Mod5Mask)

/* ---------------------------- global macros ------------------------------ */

/* ---------------------------- type definitions --------------------------- */

/* ---------------------------- forward declarations ----------------------- */

/* ---------------------------- exported variables (globals) --------------- */

extern charmap_t key_modifiers[];
extern unsigned int modifier_mapindex_to_mask[];

/* ---------------------------- interface functions ------------------------ */

int modifiers_string_to_modmask(char *in_modifiers, int *out_modifier_mask);

#endif /* FVWMLIB_MODIFIERS_H */