Help for this page

Select Code to Download


  1. or download this
    ......
              <object class="GtkTreeView" id="ModelTable">
    ...
          <column type="gfloat"/>
        </columns>
      </object>
    
  2. or download this
    # this is the table
    $model_table = $builder->get_object('ModelTable');
    ...
    my $col_cpu = Gtk2::TreeViewColumn->new;
    $col_cpu->pack_start($renderer_table_cpu,TRUE);
    $col_cpu->add_attribute($renderer_table_cpu,'text',COL_CPU_NAME);