gtdFlush                package:RGtk                R Documentation

_F_l_u_s_h _G_t_k _e_v_e_n_t_s

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

     This is a simple call to ensure that events that actions that
     affect widgets, etc. are sent to the server and made available to
     the R event loop. This helps to update displays, etc.

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

     gdkFlush()

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

_N_o_t_e:

     Many of the Gtk/Gdk functions have a '.flush' argument which, if
     'TRUE', has the same effect as calling 'gdkFlush' after that
     function is called.

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

     Duncan Temple Lang

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.gtk.org> <URL: http://www.omegahat.org/RGtk>

_S_e_e _A_l_s_o:

     'gtkAdd' 'gtkShow'

_E_x_a_m_p_l_e_s:

      gdkFlush()

        # create new widget
      w <- gtkWindow(show = FALSE)
      b <- gtkButton("A button")

      w$Add(b)
      gtkShow(w)
      gdkFlush()
        

