Help for this page

Select Code to Download


  1. or download this
    Etk_Widget *etk_button_new();
    Etk_Widget *etk_button_new_with_label(const char *label);
    Etk_Widget *etk_button_new_from_stock(Etk_Stock_Id stock_id); // Etk_S
    +tock_Id is an enum
    
  2. or download this
    sub new {
        my $class = shift;
    ...
        bless($self, $class);
        return $self;
    }
    
  3. or download this
    
    $tree->Sort( \&sort_func, $asc, $column);
    ...
    
    # where NUMERIC is a constant, and thus the sorting is done in C to ma
    +ke it faster and avoid the roundtrip to
     perl.