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

# User Rev Content
1 root 1.3 // all resource indices, used by rxvtlib.h and rxvtperl.xs
2    
3 root 1.1 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 root 1.8 def(skipScroll, 17)
21     def(mouseWheelScrollPage, 18)
22 root 1.1 #if POINTER_BLANK
23 root 1.8 def(pointerBlank, 19)
24 root 1.1 #else
25     nodef(pointerBlank)
26     #endif
27 root 1.8 def(cursorBlink, 20)
28     def(secondaryScreen, 21)
29     def(secondaryScroll, 22)
30     def(pastableTabs, 23)
31     def(cursorUnderline, 24)
32 root 1.1 #if ENABLE_FRILLS
33 root 1.8 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 ayin 1.9 def(urgentOnBell, 29)
38 root 1.1 #else
39     nodef(insecure)
40     nodef(borderLess)
41     nodef(hold)
42 root 1.4 nodef(override_redirect)
43 ayin 1.9 nodef(urgentOnBell)
44     #endif
45     #ifdef BUILTIN_GLYPHS
46     def(skipBuiltinGlyphs, 30) // do not use internal glyphs
47     #else
48 root 1.1 nodef(skipBuiltinGlyphs)
49     #endif
50     #if ENABLE_STYLES
51 root 1.8 def(intensityStyles, 31) // font styles imply intensity
52 root 1.1 #else
53     nodef(intensityStyles)
54     #endif
55 ayin 1.6 #if ISO_14755
56 root 1.8 def(iso14755_52, 32)
57 ayin 1.6 #else
58     nodef(iso14755_52)
59     #endif
60 root 1.1