home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-bin / x11r6.1 / man / cat3 / xtaddcallback.0 < prev    next >
Encoding:
Text File  |  1996-10-17  |  3.3 KB  |  133 lines

  1.  
  2.  
  3.  
  4. XtAddCallback(3Xt)       XT FUNCTIONS           XtAddCallback(3Xt)
  5.  
  6.  
  7. NNAAMMEE
  8.        XtAddCallback, XtAddCallbacks, XtRemoveCallback, XtRemove-
  9.        Callbacks, XtRemoveAllCallbacks - add and remove callback
  10.        procedures
  11.  
  12. SSYYNNTTAAXX
  13.        void XtAddCallback(_w, _c_a_l_l_b_a_c_k___n_a_m_e_, _c_a_l_l_b_a_c_k,
  14.        _c_l_i_e_n_t___d_a_t_a)
  15.          Widget _w;
  16.          String _c_a_l_l_b_a_c_k___n_a_m_e;
  17.          XtCallbackProc _c_a_l_l_b_a_c_k;
  18.          XtPointer _c_l_i_e_n_t___d_a_t_a;
  19.  
  20.        void XtAddCallbacks(_w, _c_a_l_l_b_a_c_k___n_a_m_e_, _c_a_l_l_b_a_c_k_s)
  21.          Widget _w;
  22.          String _c_a_l_l_b_a_c_k___n_a_m_e;
  23.          XtCallbackList _c_a_l_l_b_a_c_k_s;
  24.  
  25.        void XtRemoveCallback(_w, _c_a_l_l_b_a_c_k___n_a_m_e, _c_a_l_l_b_a_c_k,
  26.        _c_l_i_e_n_t___d_a_t_a)
  27.          Widget _w;
  28.          String _c_a_l_l_b_a_c_k___n_a_m_e;
  29.          XtCallbackProc _c_a_l_l_b_a_c_k;
  30.          XtPointer _c_l_i_e_n_t___d_a_t_a;
  31.  
  32.        void XtRemoveCallbacks(_w, _c_a_l_l_b_a_c_k___n_a_m_e, _c_a_l_l_b_a_c_k_s)
  33.          Widget _w;
  34.          String _c_a_l_l_b_a_c_k___n_a_m_e;
  35.          XtCallbackList _c_a_l_l_b_a_c_k_s;
  36.  
  37.        void XtRemoveAllCallbacks(_w, _c_a_l_l_b_a_c_k___n_a_m_e)
  38.          Widget _w;
  39.          String _c_a_l_l_b_a_c_k___n_a_m_e;
  40.  
  41. AARRGGUUMMEENNTTSS
  42.        _c_a_l_l_b_a_c_k     Specifies the callback procedure.
  43.  
  44.        _c_a_l_l_b_a_c_k_s Specifies the null-terminated list of callback
  45.          procedures and corresponding client data.
  46.  
  47.        _c_a_l_l_b_a_c_k___n_a_m_e
  48.          Specifies the callback list to which the proce-
  49.          dure is to be appended or deleted.
  50.  
  51.        _c_l_i_e_n_t___d_a_t_a
  52.          Specifies the argument that is to be passed to
  53.          the specified procedure when it is invoked by
  54.          XtCallbacks or NULL, or the client data to match
  55.          on the registered callback procedures.
  56.  
  57.        _w     Specifies the widget.
  58.  
  59. DDEESSCCRRIIPPTTIIOONN
  60.        The _X_t_A_d_d_C_a_l_l_b_a_c_k function adds the specified callback
  61.  
  62.  
  63.  
  64. X Version 11           Release 6.1                1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. XtAddCallback(3Xt)       XT FUNCTIONS           XtAddCallback(3Xt)
  71.  
  72.  
  73.        procedure to the specified widget's callback list.
  74.  
  75.        The _X_t_A_d_d_C_a_l_l_b_a_c_k_s add the specified list of callbacks to
  76.        the specified widget's callback list.
  77.  
  78.        The _X_t_R_e_m_o_v_e_C_a_l_l_b_a_c_k function removes a callback only if
  79.        both the procedure and the client data match.
  80.  
  81.        The _X_t_R_e_m_o_v_e_C_a_l_l_b_a_c_k_s function removes the specified call-
  82.        back procedures from the specified widget's callback list.
  83.  
  84.        The _X_t_R_e_m_o_v_e_A_l_l_C_a_l_l_b_a_c_k_s function removes all the callback
  85.        procedures from the specified widget's callback list.
  86.  
  87. SSEEEE AALLSSOO
  88.        XtCallCallbacks(3Xt)
  89.        _X _T_o_o_l_k_i_t _I_n_t_r_i_n_s_i_c_s _- _C _L_a_n_g_u_a_g_e _I_n_t_e_r_f_a_c_e
  90.        _X_l_i_b _- _C _L_a_n_g_u_a_g_e _X _I_n_t_e_r_f_a_c_e
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. X Version 11           Release 6.1                2
  131.  
  132.  
  133.