It might be important to point out that
Code: Select all
this->SetFont( wxFont( 32, 74, 90, 90, false, wxT("Sans") ) );
Is the only line in my derived constructor.
Code: Select all
this->SetFont( wxFont( 32, 74, 90, 90, false, wxT("Sans") ) );
Code: Select all
void MainFrame::OnClose(wxCommandEvent& event)
{
Close(true);
}
One of the samples that come with the wxWidgets source. wxsourcedir/samples/xrc/Er, and what sample? Where?
Ah, right thanks.DavidGH wrote: One of the samples that come with the wxWidgets source. wxsourcedir/samples/xrc/
I figured out how to change the owner on the newly created path structure.Is there an easy way of getting round the problem that the path in the makefile is (of course! ) non-existent on my RPi so the build fails spectacularly there. I've tried to make a matching path, but VNC doesn't seem to be allowed to write there (that's how I move my files around).
Not really. I'm a not-particularly-talented amateur. However I've been using wx for so long now that I know my way around much of it.it's clear you're in a different programming league to me.
I'd presumed that, in reality, you were going to have far more controls, so setting a font for each would be tedious. Though, having said that, with a RAD it wouldn't have been a major issue.Wish one of us had thought of setting the font size on each individual control, it doesn't take long and it gets the job done.