How to clear and refresh a panel in Wx?

1.3k Views Asked by At

I'm building a news reader application and I have a wxScrolledWindow in which I show the news. However, I have categories and when one is clicked, I want to update this panel with the current categorie's news. I achieved that using DeleteChildren on the wxScrolledWindow, but this doesn't seem to work very correctly.

The problem is that there's blinking while the news are regenerating, and also the scrollbars don't appear unless I strech the whole window. Also, sometimes unless I do this manual resizing the news doesn't show. I tried with refresh but it's still the same. Here my code:

our ($self);

sub new {
    my ($class, $parent_window) = @_;
    $self = $class->SUPER::new($parent_window, -1);
    $self->SetScrollRate(10, 10);

    my @news = (...);
    regenerate_news_list(@news);

    return $self;
}

sub regenerate_news_list($) {
    my (@news) = @_;

    $self->DestroyChildren();

    my $vbox = Wx::BoxSizer->new(wxVERTICAL);
    for my $news_item (@news) {

        my $news_panel = Wx::Panel->new($self, wxID_ANY);

        my $news_sizer = Wx::BoxSizer->new(wxVERTICAL);
        my $news_title = Wx::HyperlinkCtrl->new($news_panel, wxID_ANY, $news_item{'title'}, $news_item{'url'},  wxDefaultPosition, wxDefaultSize, wxBORDER_NONE);
        my $news_description = Wx::StaticText->new($news_panel, wxID_ANY, $news_item{'description'}, wxDefaultPosition);
        $news_description->Wrap(560);

        $news_sizer->AddSpacer(5);
        $news_sizer->Add($news_title, 0);
        $news_sizer->AddSpacer(5);
        $news_sizer->Add($news_description, 0);
        $news_sizer->AddSpacer(5);

        $vbox->Add($news_panel, 0, wxEXPAND|wxALL);
    }

    $self->SetSizer($vbox);
    $vbox->Fit($self);
    $self->Refresh();
}
2

There are 2 best solutions below

0
On

Use two panels, one which you show to the user, one where you prepare the new display. When the new display is complete, show the new panel and hide the old one. Alternate.

2
On

Call $self->Freeze() before DestroyChildren() to stop redraws before you do the updates, then call Thaw() when you're done, after Refresh(). It should be much faster and there won't be any flickering.