ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/optinc.h
Revision: 1.16
Committed: Tue Jul 29 13:50:05 2014 UTC (9 years, 9 months ago) by mikachu
Content type: text/plain
Branch: MAIN
Changes since 1.15: +1 -0 lines
Log Message:
Add -dockapp option

File Contents

# User Rev Content
1 ayin 1.11 // all resource indices, used by rxvt.h and rxvtperl.xs
2 root 1.3
3 root 1.15 def(loginShell)
4     def(iconic)
5     def(visualBell)
6     def(mapAlert)
7     def(reverseVideo)
8     def(utmpInhibit)
9     def(scrollBar)
10     def(scrollBar_right)
11     def(scrollBar_floating)
12     def(meta8)
13     def(scrollTtyOutput)
14     def(scrollTtyKeypress)
15     def(transparent)
16     def(tripleclickwords)
17     def(scrollWithBuffer)
18     def(jumpScroll)
19     def(skipScroll)
20     def(mouseWheelScrollPage)
21 root 1.1 #if POINTER_BLANK
22 root 1.15 def(pointerBlank)
23 root 1.1 #else
24     nodef(pointerBlank)
25     #endif
26 root 1.15 def(cursorBlink)
27     def(secondaryScreen)
28     def(secondaryScroll)
29     def(pastableTabs)
30     def(cursorUnderline)
31 root 1.1 #if ENABLE_FRILLS
32 root 1.15 def(insecure) // insecure esc sequences
33     def(borderLess) // mwm borderless hints
34     def(hold) // hold window open after exit
35     def(override_redirect)
36     def(urgentOnBell)
37 root 1.1 #else
38     nodef(insecure)
39     nodef(borderLess)
40     nodef(hold)
41 root 1.4 nodef(override_redirect)
42 ayin 1.9 nodef(urgentOnBell)
43     #endif
44     #ifdef BUILTIN_GLYPHS
45 root 1.15 def(skipBuiltinGlyphs) // do not use internal glyphs
46 ayin 1.9 #else
47 root 1.1 nodef(skipBuiltinGlyphs)
48     #endif
49     #if ENABLE_STYLES
50 root 1.15 def(intensityStyles) // font styles imply intensity
51 root 1.1 #else
52     nodef(intensityStyles)
53     #endif
54 ayin 1.6 #if ISO_14755
55 root 1.15 def(iso14755)
56     def(iso14755_52)
57 ayin 1.6 #else
58 sf-exg 1.14 nodef(iso14755)
59 ayin 1.6 nodef(iso14755_52)
60     #endif
61 root 1.15 def(console)
62 ayin 1.12 #if XFT
63 root 1.15 def(buffered)
64 ayin 1.13 #else
65     nodef(buffered)
66 ayin 1.12 #endif
67 mikachu 1.16 def(dockapp)
68 root 1.1