ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/optinc.h
Revision: 1.8
Committed: Mon Jun 18 13:38:12 2007 UTC (16 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-8_5a, rel-8_4, rel-8_3, rel-8_6
Changes since 1.7: +15 -15 lines
Log Message:
less rough skipscroll

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     def(skipBuiltinGlyphs, 29) // do not use internal glyphs
38 ayin 1.5 def(urgentOnBell, 30)
39 root 1.1 #else
40     nodef(insecure)
41     nodef(borderLess)
42     nodef(hold)
43 root 1.4 nodef(override_redirect)
44 root 1.1 nodef(skipBuiltinGlyphs)
45 ayin 1.5 nodef(urgentOnBell)
46 root 1.1 #endif
47     #if ENABLE_STYLES
48 root 1.8 def(intensityStyles, 31) // font styles imply intensity
49 root 1.1 #else
50     nodef(intensityStyles)
51     #endif
52 ayin 1.6 #if ISO_14755
53 root 1.8 def(iso14755_52, 32)
54 ayin 1.6 #else
55     nodef(iso14755_52)
56     #endif
57 root 1.1