gtkIdleAddFull             package:RGtk2             R Documentation

_g_t_k_I_d_l_e_A_d_d_F_u_l_l

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

     Like 'gtkIdleAdd' this function allows you to have a function
     called when the event loop is idle. The difference is that you can
     give a  priority different from 'GTK_PRIORITY_DEFAULT' to the idle
     function. *WARNING: 'gtk_idle_add_full' is deprecated and should
     not be used in newly-written code. Use 'gIdleAddFull()' instead.*

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

     gtkIdleAddFull(priority, fun, data = NULL)

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

'priority': [integer] The priority which should not be above
          'G_PRIORITY_HIGH_IDLE'. Note that you will interfere with
          GTK+ if you use a priority above 'GTK_PRIORITY_RESIZE'.

  'data': [R object] Data to pass to that function.

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

     [numeric] A unique id for the event source.

_N_o_t_e:

     This function is deprecated. You should use 'GDK_PRIORITY_REDRAW'
     instead. This function is deprecated. You should use
     'G_PRIORITY_HIGH' instead. This function is deprecated. You should
     use 'G_PRIORITY_DEFAULT_IDLE' instead. This function is
     deprecated. You should use 'G_PRIORITY_LOW' instead.

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

     Derived by RGtkGen from GTK+ documentation

