Thanks. You wouldn’t recommend going back to 1.8 then? :twisted:
This LookAndFeel has me a bit stumped for the moment. I’ll live with the vertical text 'till I have more time to play.
Maybe I’ve had too little sleep, but another problem I have is this:
SSMainWindow::SSMainWindow() : DialogWindow( T( "The Window" ), kBackgroundColour )
{
setLookAndFeel( & myLookAndFeel );
SSContentPane * pane = new SSContentPane();
setContentComponent( pane );
centreWithSize( 800, 600 );
pane->init();
setResizeable( true ); //compiler bombs on this
setVisible( true );
}
I see setResizeable() declared public in ResizeableWindow and lots of code quoted in this forum uses it on a DialogWindow, but my compiler (MinGW) reports it as ‘undeclared’.
Am I missing something stupid?
cheers, Colin