Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > be7852562aa251c7993f986d2c17e9d0 > files > 21

xine-ui-0.99.7-7.fc18.x86_64.rpm

	 Here is a small summary of xitk hidden features ;-)
         ---------------------------------------------------

    - xitk can be slightly tuned for user requirements (read: you can
made small changes). You can change default colors, fonts, and timers.

			       RC file
			       -------
User can add a '.xitkrc' in their home directory or 'xitkrc' in the '.xine' directory,
and system admins can add a 'xitkrc' file in /etc (system wide rc file). 
The first one found will be used, the others will be ignored.

NOTE: colors can be: pixel color value, tripled value or named colors (see widget.c)

Each entries are optional.

--

#
# Small "almost green" example of a xitkrc file.
#

# background color
color.background         = 5582

# color for focused widget
color.focus              = #0e7f4c

# color for selected widget
color.select             = #16f490

# color for black color
color.black 	         = #064c35

# color for white color
color.white              = #00ff8c

# color for warning foregrounds (mainly tips windows)
color.warning_foreground = Blue

# color for warning backgrounds (mainly tips windows)
color.warning_background = #ff0000

# default font (the first attempted).
font.default             = fixed

# fallback font.
font.system              = -adobe-courier-*-*-*-*-12-*-*-*-*-*-*-*

# multibyte usage (default is enabled, on supported platforms)
font.xmb                 = 0;

# speed (in ľ-seconds) between two "slide effect" for label marked
# as animated (depending of skin configuration).
timer.label_animation    = 5000

# time (in m-seconds) between two mouse click 
# assimilated as double click
timer.double_click       = 200

# Enable/disable xshm support (if available): 0/1 (default = 1)
feature.shm              = 1

# Use old title bar style (blueish): 0/1 (default = 0)
feature.old_title_style  = 1

# Check{box/menu} style (can be: round, check or old) (default = check)
feature.check_style      = round

# Use non X cursors (not all ones): 0/1 (default = 0)
feature.cursors          = 1

# Enable/disable menus shortcuts displaying (default = 1)
menus.shortcuts          = 1

--

		     input text widget shortcurts
                     ----------------------------

As i use emacs, input text widget handle emacs-like shortcuts (is someone
want vi-like shortcuts, the patch is welcome ;-) ):

	C-a | C-A: begin of line,
	C-b | C-B: go backward,
	C-c | C-C: cancel,
	C-d | C-D: delete one char from the right cursor position,
	C-e | C-E: end of line,
	C-f | C-F: go forward,
	C-k | C-K: kill line from cursor,
	C-m | C-M: return,
	C-t | C-T: transpose chars,
	C-?      : erase one char from the left cursor position.

	other key actions:
	Del                :delete one char from the right cursor position,
	Backspace          : erase one char from the left cursor position,
	Left/Right arrows  : self explaning ;-),
	Home               : begin of line,
	End                : end of line,
	Return/Keypad enter: return,
	Esc/Tab            : cancel.

--