gtkListStoreInsertWithValues      package:RGtk2      R Documentation

_g_t_k_L_i_s_t_S_t_o_r_e_I_n_s_e_r_t_W_i_t_h_V_a_l_u_e_s

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

     Creates a new row at 'position'.  'iter' will be changed to point
     to this new row.  If 'position' is larger than the number of rows
     on the list, then the new row will be appended to the list. The
     row will be filled with the  values given to this function.

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

     gtkListStoreInsertWithValues(object, position, ...)

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

'object': ['GtkListStore']  A 'GtkListStore'

'position': [integer]  position to insert the new row

   '...': pairs of column number and value, terminated with -1

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

     Calling 'gtk_list_store_insert_with_values(list_store, iter,
     position...)'  has the same effect as calling 


     list_store$insert(iter, position)
     list_store$set(iter, ...)

     with the difference that the former will only emit a row_inserted
     signal, while the latter will emit row_inserted, row_changed and,
     if the list store is sorted, rows_reordered. Since emitting the
     rows_reordered signal repeatedly can affect the performance of the
     program,  'gtkListStoreInsertWithValues' should generally be
     preferred when inserting rows in a sorted list store.  

     Since  2.6

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

     A list containing the following elements: 

  'iter': ['GtkTreeIter']  An unset 'GtkTreeIter' to set to the new
          row, or 'NULL'.

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

     Derived by RGtkGen from GTK+ documentation

