home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Enlightenment / enl_BETA-0.13.src.tar.gz / enl_BETA-0.13.src.tar / enl-0.13 / events.h < prev    next >
C/C++ Source or Header  |  1997-10-29  |  1KB  |  32 lines

  1. struct KeyBind_list_type
  2. {
  3.    char *execstring;
  4.    int action_type;
  5.    int modifier;
  6.    char *keycombo;
  7. };  
  8.  
  9. XErrorHandler handleError(Display *d, XErrorEvent *ev);
  10. XIOErrorHandler handleIOError(Display *d);
  11. void handleEvent(XEvent *ev,listhead *l);
  12. void handleKeyDown(XEvent *ev,listhead *l);
  13. void handleKeyUp(XEvent *ev,listhead *l);
  14. void handleButtonDown(XEvent *ev,listhead *l);
  15. void handleButtonUp(XEvent *ev,listhead *l);
  16. void handleMotion(XEvent *ev,listhead *l);
  17. void handleEnter(XEvent *ev,listhead *l);
  18. void handleLeave(XEvent *ev,listhead *l);
  19. void handleFocusIn(XEvent *ev,listhead *l);
  20. void handleFocusOut(XEvent *ev,listhead *l);
  21. void handleDestroy(XEvent *ev,listhead *l);
  22. void handleUnmap(XEvent *ev,listhead *l);
  23. void handleMap(XEvent *ev,listhead *l);
  24. void handleReparent(XEvent *ev,listhead *l);
  25. void handleConfigure(XEvent *ev,listhead *l);
  26. void handleClientMessage(XEvent *ev, listhead *l);
  27. void handleResize(XEvent *ev,listhead *l);
  28. void handleCirculate(XEvent *ev,listhead *l);
  29. void handleProperty(XEvent *ev,listhead *l);
  30. void AutoRaise();
  31. void FocWin(Window tmp_win, int clk);
  32.