myGUI 3.2.0RC1 TabBox and LayEdtior related.

matteprl

07-12-2011 21:06:47

Hello Ogre Community!

I've got two questions to You.

First is the Layout Editor.

I've compiled source using CMAKE, everything is fine, and all ogre related stuff is working very well. But I can't make SkinEditor and LayoutEditor working properly.
Here is some screens of errors:


(click to enlarge)

I've tried to swap resource files etc. But nothing happens. Also I didn't saw any wrong things in code.

If May I ask please attach here working versions of those tools or give me a hint how to deal with it.

The Second One is TabControl.

I've generated some code using LEditor from SourceForge site, it worked very well for many previous windows and dialog boxes, but this time It don't. I assume that is because of old LEditor.
Here is code:
http://pastebin.com/Gpu1z7a1
And how I start it.

MyGUI::LayoutManager::getInstance().loadLayout("Debug");
MyGUI::TabControl* dialog = MyGUI::Gui::getInstance().findWidget<MyGUI::TabControl>("DebugPanel");
dialog->setVisible(true);
st = MyGUI::Gui::getInstance().findWidget<MyGUI::StaticText>("DebugLog");


What I'm doing wrong with those code lines?