Search found 1105 matches
- Thu Jul 29, 2010 10:06
- Forum: Help
- Topic: Some Help compiling CEGUI - not working...
- Replies: 2
- Views: 3882
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",&...
- Fri Jul 02, 2010 07:17
- Forum: Help
- Topic: Error property in looknfeel
- Replies: 2
- Views: 3886
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...
- Thu Jul 01, 2010 13:44
- Forum: Help
- Topic: Error initializing CEGUI
- Replies: 7
- Views: 5862
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...
- Sun Jun 27, 2010 17:20
- Forum: Help
- Topic: [SOLVED]Problems compiling against Ogre 1.7.1
- Replies: 4
- Views: 5493
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
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
- Sun Jun 27, 2010 17:18
- Forum: Help
- Topic: whre is the cegui path of config and cegui's log?
- Replies: 1
- Views: 3009
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,...
- Thu Jun 03, 2010 10:13
- Forum: Modifications / Integrations / Customisations
- Topic: System::create throws CEGUI::GenericException
- Replies: 10
- Views: 13266
- Wed Jun 02, 2010 07:54
- Forum: Modifications / Integrations / Customisations
- Topic: problem about ItemEntry
- Replies: 4
- Views: 6874
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...
- Tue Jun 01, 2010 17:30
- Forum: Modifications / Integrations / Customisations
- Topic: System::create throws CEGUI::GenericException
- Replies: 10
- Views: 13266
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).
- Tue Jun 01, 2010 15:24
- Forum: Modifications / Integrations / Customisations
- Topic: problem about ItemEntry
- Replies: 4
- Views: 6874
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...
- Tue Jun 01, 2010 13:03
- Forum: Modifications / Integrations / Customisations
- Topic: System::create throws CEGUI::GenericException
- Replies: 10
- Views: 13266
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?
Can you get cegui to run out of the box, for example the samples?
- Tue Jun 01, 2010 12:02
- Forum: Modifications / Integrations / Customisations
- Topic: System::create throws CEGUI::GenericException
- Replies: 10
- Views: 13266
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.
Which cegui version is that? Your log (cegui.log) should show more info about the exception.
HTH.
- Thu May 13, 2010 11:13
- Forum: Help
- Topic: [SOLVED] Subscribing to a global function.
- Replies: 9
- Views: 7074
Re: Subscribing to a global function.
agamemnus wrote:Hey, good idea. Hackish, but a good idea. Thanks.
No, it's by design to be able to do such things
- Wed May 12, 2010 09:54
- Forum: Help
- Topic: [SOLVED] Subscribing to a global function.
- Replies: 9
- Views: 7074
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...
- Wed May 12, 2010 09:31
- Forum: Help
- Topic: Blank Taharez look tooltip text causes a crash.
- Replies: 14
- Views: 9054
Re: Blank Taharez look tooltip text causes a crash.
Did you try to debug? What does the log say?
- Wed May 12, 2010 09:30
- Forum: Offtopic Discussion
- Topic: Prebuilt SDK for vc10
- Replies: 2
- Views: 4711
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 ...