gtkWindowSetIconList          package:RGtk2          R Documentation

_g_t_k_W_i_n_d_o_w_S_e_t_I_c_o_n_L_i_s_t

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

     Sets up the icon representing a 'GtkWindow'. The icon is used when
     the window is minimized (also known as iconified).  Some window
     managers or desktop environments may also place it in the window
     frame, or display it in other contexts.

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

     gtkWindowSetIconList(object, list)

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

'object': ['GtkWindow']  a 'GtkWindow'

  'list': [list]  list of 'GdkPixbuf'

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

     'gtkWindowSetIconList' allows you to pass in the same icon in
     several hand-drawn sizes. The list should contain the natural
     sizes your icon is available in; that is, don't scale the image
     before passing it to GTK+. Scaling is postponed until the last
     minute, when the desired final size is known, to allow best
     quality.

     By passing several sizes, you may improve the final image quality
     of the icon, by reducing or eliminating automatic image scaling.

     Recommended sizes to provide: 16x16, 32x32, 48x48 at minimum, and
     larger images (64x64, 128x128) if you have them.

     See also 'gtkWindowSetDefaultIconList' to set the icon for all
     windows in your application in one go.

     Note that transient windows (those who have been set transient for
     another window using 'gtkWindowSetTransientFor') will inherit
     their icon from their transient parent. So there's no need to
     explicitly set the icon on transient windows.

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

     Derived by RGtkGen from GTK+ documentation

