~ubuntu-branches/ubuntu/jaunty/rxvt-unicode/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/hookinc.h

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2006-09-01 14:44:58 UTC
  • mfrom: (1.2.1 upstream) (9 edgy)
  • mto: (3.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20060901144458-3jn5sjka9gpg0v9i
* Edit the comments in the app-defaults file, and disable all settings by
  default. If font autoselection fails, I would prefer to open a new bug
  specifically for that. (Closes: #385481)
* Reorganize and edit README.Debian, pushing as much as possible into FAQ
  format (with resource setting issues first).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// all supported hooks
 
2
 
 
3
  def (INIT)
 
4
  def (DESTROY)
 
5
  def (RESET)
 
6
  def (START)
 
7
  def (CHILD_START)
 
8
  def (CHILD_EXIT)
 
9
 
 
10
  def (SEL_BEGIN)
 
11
  def (SEL_EXTEND)
 
12
  def (SEL_MAKE)
 
13
  def (SEL_GRAB)
 
14
 
 
15
  def (SEL_CLICK)
 
16
 
 
17
  def (VIEW_CHANGE)
 
18
  def (SCROLL_BACK)
 
19
  def (LINE_UPDATE)
 
20
  def (ADD_LINES)
 
21
  def (OSC_SEQ)
 
22
  def (OSC_SEQ_PERL)
 
23
  def (TT_WRITE)
 
24
 
 
25
  def (REFRESH_BEGIN)
 
26
  def (REFRESH_END)
 
27
 
 
28
  def (USER_COMMAND)
 
29
 
 
30
  def (ROOT_EVENT)
 
31
  def (X_EVENT)
 
32
  def (FOCUS_IN)
 
33
  def (FOCUS_OUT)
 
34
  def (KEY_PRESS)
 
35
  def (KEY_RELEASE)
 
36
  def (BUTTON_PRESS)
 
37
  def (BUTTON_RELEASE)
 
38
  def (MOTION_NOTIFY)
 
39
  def (MAP_NOTIFY)
 
40
  def (UNMAP_NOTIFY)
 
41
  def (CONFIGURE_NOTIFY)
 
42
  def (CLIENT_MESSAGE)
 
43
  def (WM_DELETE_WINDOW)
 
44
  def (WM_PROTOCOLS)
 
45
  def (PROPERTY_NOTIFY)
 
46
  def (RESIZE_ALL_WINDOWS)
 
47
 
 
48
  def (XIM_PREEDIT_START)
 
49
  def (XIM_PREEDIT_DONE)
 
50
  def (XIM_PREEDIT_DRAW)
 
51
  def (XIM_PREEDIT_CARET)
 
52
 
 
53
  def (CUSTOM_REND) // hovering over custom rendition, generate enter/leave maybe?
 
54