gtkIconViewGetTooltipContext      package:RGtk2      R Documentation

_g_t_k_I_c_o_n_V_i_e_w_G_e_t_T_o_o_l_t_i_p_C_o_n_t_e_x_t

_D_e_s_c_r_i_p_t_i_o_n:

     This function is supposed to be used in a '"query-tooltip"' signal
     handler for 'GtkIconView'.  The 'x', 'y' and 'keyboard.tip' values
     which are received in the signal handler, should be passed to this
     function without modification.

_U_s_a_g_e:

     gtkIconViewGetTooltipContext(object, x, y, keyboard.tip)

_A_r_g_u_m_e_n_t_s:

'object': ['GtkIconView']  an 'GtkIconView'

     'x': [integer]  the x coordinate (relative to widget coordinates)

     'y': [integer]  the y coordinate (relative to widget coordinates)

'keyboard.tip': [logical]  whether this is a keyboard tooltip or not

_D_e_t_a_i_l_s:

     The return value indicates whether there is an icon view item at
     the given coordinates ('TRUE') or not ('FALSE') for mouse
     tooltips. For keyboard tooltips the item returned will be the
     cursor item. When 'TRUE', then any of 'model', 'path' and 'iter'
     which have been provided will be set to point to that row and the
     corresponding model. 'x' and 'y' will always be converted to be
     relative to 'icon.view''s bin_window if 'keyboard.tooltip' is
     'FALSE'.  

     Since  2.12

_V_a_l_u_e:

     A list containing the following elements: 

  retval: [logical]  whether or not the given tooltip context points to
          a item

 'model': ['GtkTreeModel']  a pointer to receive a 'GtkTreeModel' or
          'NULL'

  'path': ['GtkTreePath']  a pointer to receive a 'GtkTreePath' or
          'NULL'

  'iter': ['GtkTreeIter']  a pointer to receive a 'GtkTreeIter' or
          'NULL'

_A_u_t_h_o_r(_s):

     Derived by RGtkGen from GTK+ documentation

