ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/optinc.h
Revision: 1.9
Committed: Sat Nov 24 10:32:32 2007 UTC (16 years, 6 months ago) by ayin
Content type: text/plain
Branch: MAIN
CVS Tags: rel-8_7
Changes since 1.8: +6 -3 lines
Log Message:
Do not compile in the block builtin graphics with --disable-frills.

File Contents

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