0

how can I startup my cinder application in windows in a maximized state? I see some documentation about ShowWindow SW_MAXIMIZED but don't see how this is supported in cinder, can anyone offer any help?

Phil
  • 46,436
  • 33
  • 110
  • 175

1 Answers1

3

This works in OS X and I assume in Windows as well to start an app in a fullscreen state, if that's what you're looking for:

class MyApp : public ci::app::AppNative
{
  public:
    void prepareSettings( Settings *settings )
    {
      settings->setFullScreen();
    }
    ...
};

P.S. I see more Cinder related activity in the Cinder forums than on StackOverflow :)

nselikoff
  • 467
  • 4
  • 11