Help for this page

Select Code to Download


  1. or download this
        $self->{image} = Gtk3::Image->new();
    
  2. or download this
        $self->scene_startup();  # in display init
    
  3. or download this
    sub scene_startup {
        my ($self) = @_;
        $self->{debug}->prt(9, "DISPWINDOW SCENE Startup ", 'DISPWINDOW SC
    +ENE');
        $self->{image}->set_from_file("$self->{display}->{root}$self->{dis
    +play}->{startup}");
    }
    
  4. or download this
    sub scene_in_session {
        my ($self) = @_;
        $self->{debug}->prt(9, "DISPWINDOW SCENE In Session ", 'DISPWINDOW
    + SCENE');
        $self->{image}->set_from_file("$self->{display}->{root}$self->{dis
    +play}->{in_session}");
    }