File: repeat.h

package info (click to toggle)
fvwm 1%3A2.6.7-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 16,752 kB
  • ctags: 14,275
  • sloc: ansic: 145,770; xml: 17,086; perl: 7,302; sh: 4,885; makefile: 1,055; yacc: 688; python: 629; lex: 188; sed: 11
file content (36 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (10)
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
31
32
33
34
35
36
/* -*-c-*- */

#ifndef _REPEAT_
#define _REPEAT_

typedef enum
{
	REPEAT_NONE = 0,
	REPEAT_COMMAND,
	/* I think we don't need all these
	   REPEAT_BUILTIN,
	   REPEAT_FUNCTION,
	   REPEAT_TOP_FUNCTION,
	   REPEAT_MODULE,
	*/
	REPEAT_MENU,
	REPEAT_POPUP,
	REPEAT_PAGE,
	REPEAT_DESK,
	REPEAT_DESK_AND_PAGE,
	REPEAT_FVWM_WINDOW
} repeat_t;

extern char *repeat_last_function;
extern char *repeat_last_complex_function;
extern char *repeat_last_builtin_function;
extern char *repeat_last_module;
/*
  extern char *repeat_last_top_function;
  extern char *repeat_last_menu;
  extern FvwmWindow *repeat_last_fvwm_window;
*/

Bool set_repeat_data(void *data, repeat_t type, const func_t *builtin);

#endif /* _REPEAT_ */