-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoptions.h
61 lines (44 loc) · 1.63 KB
/
options.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef __OPTIONS_H
#define __OPTIONS_H
/*-------------------------------------------------------------------------*\
<options.h> -- Header file for option variables defines, etc.
Date Programmer Description
3/27/98 Kenn F. Created to handle f->ed-> stuff.
\*-------------------------------------------------------------------------*/
/* FENSTER f -> CNT ed -> flopt */
#define FM_SHOW_HIDDEN_FILES 0x0001
#define FM_SHOW_HIDDEN_DIRS 0x0002
#define FM_DELETE_AT_EXIT 0x0004
#define FM_PROMPT_DELETE 0x0008
/* FM_DONT_DELETE */
#define FM_MOVE_OVERWRITE 0x0010
#define FM_MOVE_PROMPT 0x0020
/* FM_DONT_OVERWRITE */
#define FM_REMOVE_INTO_WB 0x0040
#define FM_REMOVE_PROMPT 0x0080
/* FM_REMOVE_NO_PROMPT */
#define FM_TRY_HARDLINK 0x0100
/* FM_ALWAYS_SYMBOLIC_LINK */
#define FM_SORT_NAME 0x0200
#define FM_SORT_TIME 0x0400
/* FM_SORT_BYTES */
#define FM_REVERSE_ORDER 0x0800
#define FM_REKURSIVE_ACTIONS 0x1000
#define FM_CLOSE_WINDOW 0x2000
/* FENSTER f -> CNT ed -> edopt */
#define ED_CUA_STYLE 0x0001
/* ED_OLD_STYLE */
#define ED_OLD_TILE_METHOD 0x0040
#define ED_SOURCE_AUTO_INDENT 0x0080
#define ED_ALWAYS_AUTO_INDENT 0x0100
/* ED_NEVER_AUTO_INDENT */
#define ED_ERRORS_STOP_AT 0x0010
#define ED_MESSAGES_STOP_AT 0x0020
#define ED_SYNTAX_HIGHLIGHT 0x0008
#define ED_SHOW_ENDMARKS 0x0002
#define ED_EDITOR_OPTIONS \
(ED_CUA_STYLE | ED_OLD_TILE_METHOD | ED_SOURCE_AUTO_INDENT | \
ED_ALWAYS_AUTO_INDENT | ED_SHOW_ENDMARKS)
#define ED_PROGRAMMING_OPTIONS \
(ED_ERRORS_STOP_AT | ED_MESSAGES_STOP_AT | ED_SYNTAX_HIGHLIGHT)
#endif