gtkTreeStoreInsertWithValues      package:RGtk2      R Documentation

_g_t_k_T_r_e_e_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:

     gtkTreeStoreInsertWithValues(object, parent, position, ...)

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

'object': ['GtkTreeStore']  A 'GtkTreeStore'

'parent': ['GtkTreeIter']  A valid 'GtkTreeIter', or 'NULL'

'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_tree_store_insert_with_values (tree_store, iter,
     position, ...)' has the same effect as calling


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

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

     Since  2.10

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

     A list containing the following elements: 

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

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

     Derived by RGtkGen from GTK+ documentation

