gtkWidgetSetUsize           package:RGtk2           R Documentation

_g_t_k_W_i_d_g_e_t_S_e_t_U_s_i_z_e

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

     Sets the minimum size of a widget; that is, the widget's size
     request will be 'width' by 'height'. You can use this function to
     force a widget to be either larger or smaller than it is. The
     strange "usize" name dates from the early days of GTK+, and
     derives from X Window System terminology. In many cases,
     'gtkWindowSetDefaultSize' is a better choice for toplevel windows
     than this function; setting the default size will still allow
     users to shrink the window. Setting the usize will force them to
     leave the window at least as large as the usize. When dealing with
     window sizes, 'gtkWindowSetGeometryHints' can be a useful function
     as well. *WARNING: 'gtk_widget_set_usize' is deprecated and should
     not be used in newly-written code. Use 'gtkWidgetSetSizeRequest'
     instead.*

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

     gtkWidgetSetUsize(object, width, height)

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

'object': ['GtkWidget']  a 'GtkWidget'

 'width': [integer]  minimum width, or -1 to unset

'height': [integer]  minimum height, or -1 to unset

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

     Note the inherent danger of setting any fixed size - themes,
     translations into other languages, different fonts, and user
     action can all change the appropriate size for a given widget. So,
     it's basically impossible to hardcode a size that will always be
     correct.

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

     Derived by RGtkGen from GTK+ documentation

