Search found 1379 matches
- Wed Apr 12, 2017 18:57
- Forum: Help
- Topic: VS2015 PyCEGUI Boost compilation can't resolve boost::get_pointer
- Replies: 11
- Views: 17259
Re: VS2015 PyCEGUI Boost compilation can't resolve boost::get_pointer
Awesome work untangling all this dark arcane magic. I recommend looking into the bitbucket pyplusplus fork, it has a few modern improvements that may help. To fix this proper you probably should fix up pypluplus and then rerun https://bitbucket.org/cegui/cegui/src/84c33a247ff8e62a2423d09618d1be3d664...
- Fri Dec 16, 2016 20:39
- Forum: Help
- Topic: Adding properties to widgets
- Replies: 12
- Views: 16921
Re: Adding properties to widgets
Ahoy! I'd be the horse, I guess. CEED uses CEGUI to render everything, there is no extra GUI rendering implementation in it. If you changed something in CEGUI implementation itself you need to rebuild CEED to use it. The worst that can happen is that CEED will render your menus in different places t...
- Tue Mar 29, 2016 18:13
- Forum: Official Unified CEGUI Editor Tool (CEED)
- Topic: Can't get CEED running on Arch Linux [Solved]
- Replies: 9
- Views: 21532
Re: Can't get CEED running on Arch Linux [Solved]
Hi muammar,
I am sorry but I don't know the solution of that. I remember solving this in the past but forgot the solution.
I would start by demangling the symbol, looking into why it's not exported AND why PyCEGUI needs it.
I am sorry but I don't know the solution of that. I remember solving this in the past but forgot the solution.
I would start by demangling the symbol, looking into why it's not exported AND why PyCEGUI needs it.
- Wed Mar 09, 2016 19:41
- Forum: Help
- Topic: Use of cmake
- Replies: 3
- Views: 7298
Re: Use of cmake
Could be related to this: 11:40:42 +mpreisler | it finds some paths from pkg-config but then fails to │ | find CEGUIConfig.h or CEGUI/Config.h │ 11:40:55 +mpreisler | this needs some more digging │ 11:40:59 +mpreisler | I know the script works fine for Fedora │ 11:41:47 Pheimors | /usr/include/cegui...
- Sat Nov 14, 2015 17:09
- Forum: Help
- Topic: Same code, new PC, CEGUI Stopped working?
- Replies: 16
- Views: 16459
Re: Same code, new PC, CEGUI Stopped working?
Paste the full error message please, the main part of it is missing.
- Wed Nov 04, 2015 16:24
- Forum: CEGUI Library Development Discussion
- Topic: New CEGUI library maximum column length
- Replies: 24
- Views: 43060
Re: New CEGUI library maximum column length
I am with CE on this one. Huge lines encourage super nested code that's hard to debug and navigate.
- Sun Oct 18, 2015 15:26
- Forum: CEGUI Library Development Discussion
- Topic: "nullptr" in "default" branch
- Replies: 6
- Views: 15599
Re: "nullptr" in "default" branch
Agreed. I am pretty sure the CEGUI team already agreed on this but unfortunately the decision was not written down anywhere.
- Thu Oct 15, 2015 09:56
- Forum: Help
- Topic: CEED to Recognize New .font
- Replies: 1
- Views: 4763
Re: CEED to Recognize New .font
Is it referenced in any .scheme file?
- Thu Aug 27, 2015 12:23
- Forum: CEGUI Library Development Discussion
- Topic: unused variables
- Replies: 19
- Views: 32331
Re: unused variables
We use:
in some places. However I think the CEGUI_UNUSED macro is a better idea, so I am all for it And replacing the above with it.
This can go even to v0-8 as it won't break any compatibility.
Code: Select all
void someFunction(T /*a*/, T* /*b*/)
{}
in some places. However I think the CEGUI_UNUSED macro is a better idea, so I am all for it And replacing the above with it.
This can go even to v0-8 as it won't break any compatibility.
- Mon Jul 27, 2015 08:35
- Forum: CEGUI Library Development Discussion
- Topic: ABI Compatibility of identifiers that are not exposed
- Replies: 10
- Views: 20170
Re: ABI Compatibility of identifiers that are not exposed
We only maintain ABI compat for visible symbols, so yes, this is perfectly legal.
- Mon Jul 27, 2015 08:31
- Forum: Help
- Topic: [Solved] Running tests.
- Replies: 5
- Views: 8339
Re: Running tests.
Hi,
I usually use:
Make sure you have built all the tests, else it won't do anything
I usually use:
Code: Select all
ctest -V
Make sure you have built all the tests, else it won't do anything
- Mon Apr 20, 2015 13:47
- Forum: Help
- Topic: [Solved] Linux CMake can't find CEGUI, no matter what I try
- Replies: 11
- Views: 15831
Re: [Solved] Linux CMake can't find CEGUI, no matter what I
I don't understand. What I suggested is a perfectly clean solution. You use cmake -LA to list all variables defined in your project. Your project uses FindCEGUI which means it will contain variables defined by this script as well. cmake -LA lets you see all these variables so that you can choose the...
- Mon Apr 20, 2015 09:44
- Forum: Help
- Topic: [Solved] Linux CMake can't find CEGUI, no matter what I try
- Replies: 11
- Views: 15831
- Sat Apr 18, 2015 22:19
- Forum: Help
- Topic: [Solved] Linux CMake can't find CEGUI, no matter what I try
- Replies: 11
- Views: 15831
Re: Linux CMake can't find CEGUI, no matter what I try
Read the docs of the FindCEGUI script Ident posted. You don't need CEGUIOGRE.
- Thu Apr 09, 2015 13:53
- Forum: Official Unified CEGUI Editor Tool (CEED)
- Topic: TabControl not really implemented?
- Replies: 2
- Views: 13143
Re: TabControl not really implemented?
Yup, TabControl is not supported yet. I recently implemented LayoutContainers, that works if you use CEED from the repository. TabControls are a bit special and manipulators need to be changed to support them. Unfortunately I am too busy to tackle it right now. I may have time to help somebody who'd...