gtkWindowNew              package:RGtk2              R Documentation

_g_t_k_W_i_n_d_o_w_N_e_w

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

     Creates a new 'GtkWindow', which is a toplevel window that can
     contain other widgets. Nearly always, the type of the window
     should be 'GTK_WINDOW_TOPLEVEL'. If you're implementing something
     like a popup menu from scratch (which is a bad idea, just use
     'GtkMenu'), you might use 'GTK_WINDOW_POPUP'. 'GTK_WINDOW_POPUP'
     is not for dialogs, though in some other toolkits dialogs are
     called "popups". In GTK+, 'GTK_WINDOW_POPUP' means a pop-up menu
     or pop-up tooltip. On X11, popup windows are not controlled by the
     window manager.

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

     gtkWindowNew(type = NULL, show = TRUE)

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

  'type': ['GtkWindowType']  type of window

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

     If you simply want an undecorated window (no window borders), use
     'gtkWindowSetDecorated', don't use 'GTK_WINDOW_POPUP'.

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

     ['GtkWidget']  a new 'GtkWindow'.

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

     Derived by RGtkGen from GTK+ documentation

