ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/optinc.h
Revision: 1.12
Committed: Sat Jan 26 14:24:43 2008 UTC (16 years, 4 months ago) by ayin
Content type: text/plain
Branch: MAIN
CVS Tags: rel-9_01
Changes since 1.11: +3 -0 lines
Log Message:
Change the compile-time option to disable xft double-buffering to a
runtime one.

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.1 def(loginShell, 1)
4     def(iconic, 2)
5     def(visualBell, 3)
6     def(mapAlert, 4)
7     def(reverseVideo, 5)
8     def(utmpInhibit, 6)
9     def(scrollBar, 7)
10     def(scrollBar_right, 8)
11     def(scrollBar_floating, 9)
12     def(meta8, 10)
13     def(scrollTtyOutput, 11)
14     def(scrollTtyKeypress, 12)
15     def(transparent, 13)
16     def(tripleclickwords, 14)
17     def(scrollWithBuffer, 15)
18     def(jumpScroll, 16)
19 root 1.8 def(skipScroll, 17)
20     def(mouseWheelScrollPage, 18)
21 root 1.1 #if POINTER_BLANK
22 root 1.8 def(pointerBlank, 19)
23 root 1.1 #else
24     nodef(pointerBlank)
25     #endif
26 root 1.8 def(cursorBlink, 20)
27     def(secondaryScreen, 21)
28     def(secondaryScroll, 22)
29     def(pastableTabs, 23)
30     def(cursorUnderline, 24)
31 root 1.1 #if ENABLE_FRILLS
32 root 1.8 def(insecure, 25) // insecure esc sequences
33     def(borderLess, 26) // mwm borderless hints
34     def(hold, 27) // hold window open after exit
35     def(override_redirect, 28)
36 ayin 1.9 def(urgentOnBell, 29)
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     def(skipBuiltinGlyphs, 30) // do not use internal glyphs
46     #else
47 root 1.1 nodef(skipBuiltinGlyphs)
48     #endif
49     #if ENABLE_STYLES
50 root 1.8 def(intensityStyles, 31) // font styles imply intensity
51 root 1.1 #else
52     nodef(intensityStyles)
53     #endif
54 ayin 1.6 #if ISO_14755
55 root 1.8 def(iso14755_52, 32)
56 ayin 1.6 #else
57     nodef(iso14755_52)
58     #endif
59 root 1.10 def(console, 33)
60 ayin 1.12 #if XFT
61     def(buffered, 34)
62     #endif
63 root 1.1