ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/optinc.h
Revision: 1.7
Committed: Mon Jun 18 12:53:26 2007 UTC (16 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.6: +1 -0 lines
Log Message:
initial rough-cut 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.7 def(skipScroll, 16)
21 root 1.1 def(mouseWheelScrollPage, 17)
22     #if POINTER_BLANK
23     def(pointerBlank, 18)
24     #else
25     nodef(pointerBlank)
26     #endif
27     def(cursorBlink, 19)
28     def(secondaryScreen, 20)
29     def(secondaryScroll, 21)
30     def(pastableTabs, 22)
31     def(cursorUnderline, 23)
32     #if ENABLE_FRILLS
33     def(insecure, 24) // insecure esc sequences
34     def(borderLess, 25) // mwm borderless hints
35     def(hold, 26) // hold window open after exit
36 root 1.2 def(override_redirect, 27)
37     def(skipBuiltinGlyphs, 28) // 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.2 def(intensityStyles, 29) // font styles imply intensity
49 root 1.1 #else
50     nodef(intensityStyles)
51     #endif
52 ayin 1.6 #if ISO_14755
53     def(iso14755_52, 31)
54     #else
55     nodef(iso14755_52)
56     #endif
57 root 1.1