Search found 1105 matches

by scriptkid
Thu Jul 29, 2010 10:06
Forum: Help
Topic: Some Help compiling CEGUI - not working...
Replies: 2
Views: 3079

Re: Some Help compiling CEGUI - not working...

Hi, you are mistaking "(" for "{", or the other way around ;) OGRE_PATH = ( "C:/Users/egg/Downloads/OgreSDK_vc9_v1-7-1/","include/Ogre","lib" ) Should be: OGRE_PATH = { "C:/Users/egg/Downloads/OgreSDK_vc9_v1-7-1/","include/Ogre",&...
by scriptkid
Fri Jul 02, 2010 07:17
Forum: Help
Topic: Error property in looknfeel
Replies: 2
Views: 2965

Re: Error property in looknfeel

Hi and welcome, You need to have a definition for your property. For your code to work, you need to have a line like this in the beginning of your widget's looknfeel: <PropertyDefinition name="Image" initialValue="" redrawOnWrite="true" /> If you search for 'SelectionBr...
by scriptkid
Thu Jul 01, 2010 13:44
Forum: Help
Topic: Error initializing CEGUI
Replies: 7
Views: 4595

Re: Error initializing CEGUI

Hi, [edit] Checking with a logfile of a correct launch shows that the first line has todo with the DefaultWindow, which is not defined in an XML file. This makes it an odd issue. I don't have all code at hand. But it might still be wise to post that scheme file ;) [/edit] These lines: Created Window...
by scriptkid
Sun Jun 27, 2010 17:20
Forum: Help
Topic: [SOLVED]Problems compiling against Ogre 1.7.1
Replies: 4
Views: 4518

Re: Problems compiling against Ogre 1.7.1

Hi and welcome,

It looks like you are compiling Ogre with threading support. If this is intended (i guess it's a #define), it looks like you need to download the boost library as well. Cegui doesn't use it.

HTH :)
by scriptkid
Sun Jun 27, 2010 17:18
Forum: Help
Topic: whre is the cegui path of config and cegui's log?
Replies: 1
Views: 2418

Re: whre is the cegui path of config and cegui's log?

Hi, Config files are read from a resource group, by default the 'datafiles/configs' directory. The log file is just taken as a path, relative from the startup folder. To see this in action, follow the debugger from the System::System method into the calls into "d_xmlParser->parseXMLFile(config,...
by scriptkid
Wed Jun 02, 2010 07:54
Forum: Modifications / Integrations / Customisations
Topic: problem about ItemEntry
Replies: 4
Views: 5645

Re: problem about ItemEntry

Hi, yes. I have setup a little sample. And as soon as a child gets mouse focus, the parent looses it. However, when dispatching the mouse events to children, only the parent item will appear to have focus, be clicked or what ever. But if it's enough when only your ItemEntries look hovered, then this...
by scriptkid
Tue Jun 01, 2010 17:30
Forum: Modifications / Integrations / Customisations
Topic: System::create throws CEGUI::GenericException
Replies: 10
Views: 10628

Re: System::create throws CEGUI::GenericException

Hi, it looks like your project settings aren't okay. In C/C++ -> Code Generation, your Runtime library should not link to a DLL, but static also (/MTd or /MDd).
by scriptkid
Tue Jun 01, 2010 15:24
Forum: Modifications / Integrations / Customisations
Topic: problem about ItemEntry
Replies: 4
Views: 5645

Re: problem about ItemEntry

Interesting. I'm not sure whether the mouse can be in more then one window at the same time. You could easily check this by adding MouseEnter and MouseLeave listeners to both your parent and child to catch those. If it weren't for the hover state (visually), you could trap all events in your main it...
by scriptkid
Tue Jun 01, 2010 13:03
Forum: Modifications / Integrations / Customisations
Topic: System::create throws CEGUI::GenericException
Replies: 10
Views: 10628

Re: System::create throws CEGUI::GenericException

Okay, well there should be one ;) Or, if the exceptions happens even before performing any logging, then it's most likely a linker issue. Such as mixing of debug and release libraries.

Can you get cegui to run out of the box, for example the samples?
by scriptkid
Tue Jun 01, 2010 12:02
Forum: Modifications / Integrations / Customisations
Topic: System::create throws CEGUI::GenericException
Replies: 10
Views: 10628

Re: System::create throws CEGUI::GenericException

Hi and welcome,

Which cegui version is that? Your log (cegui.log) should show more info about the exception.

HTH.
by scriptkid
Thu May 13, 2010 11:13
Forum: Help
Topic: [SOLVED] Subscribing to a global function.
Replies: 9
Views: 5106

Re: Subscribing to a global function.

agamemnus wrote:Hey, good idea. Hackish, but a good idea. Thanks. :D


No, it's by design to be able to do such things :)
by scriptkid
Wed May 12, 2010 09:54
Forum: Help
Topic: [SOLVED] Subscribing to a global function.
Replies: 9
Views: 5106

Re: Subscribing to a global function.

'This' is not static; it's different per instance (it *is* the instance). The 'invisible' pass only happens when a method calls into another method of its own class. C++ does that too. Okay, about passing your 'this' to a class. First, i don't understand your requirement. Cegui will only trigger eve...
by scriptkid
Wed May 12, 2010 09:31
Forum: Help
Topic: Blank Taharez look tooltip text causes a crash.
Replies: 14
Views: 6848

Re: Blank Taharez look tooltip text causes a crash.

Did you try to debug? What does the log say?
by scriptkid
Wed May 12, 2010 09:30
Forum: Offtopic Discussion
Topic: Prebuilt SDK for vc10
Replies: 2
Views: 4049

Re: Prebuilt SDK for vc10

One reason for the VC2010 SDKs not being available yet, is that VS2010 has actually been released just recently. (It has been in beta for quite a while). Also i have not even compiled cegui on the latest VC yet, but maybe your or CE has tried this? Also also, i need to double check with the premake ...

Go to advanced search