Search found 31 matches
- Sun Mar 15, 2020 22:51
- Forum: Help
- Topic: Updating CEGUI
- Replies: 8
- Views: 16569
Re: Updating CEGUI
I know it's been a while, but I wanted to come back and report that I finally upgraded my application and everything appears to be working (it's been running for less than a day). I ended up using the v0 branch since it kept the same API that I was using before, thus reducing the amount of work whic...
- Sun Feb 09, 2020 00:04
- Forum: Help
- Topic: Updating CEGUI
- Replies: 8
- Views: 16569
Re: Updating CEGUI
Is default called 'master' on github? It clearly says default next to master (though it's odd, since I see a "Merge with default" on one of the changes ). My original question still stands: Is master also called default? I was trying to find the commit which removed Li...
- Fri Feb 07, 2020 20:33
- Forum: Help
- Topic: Updating CEGUI
- Replies: 8
- Views: 16569
Re: Updating CEGUI
Hey Ident, Thanks for the information. I'm glad to hear that I at least was working off the correct repository :D . To round out my questions: The application I'm working on is intended for commercial release, so I want to make sure that the code I'm using is (relatively) stable. In your opinion, is...
- Thu Feb 06, 2020 22:54
- Forum: Help
- Topic: Updating CEGUI
- Replies: 8
- Views: 16569
Re: Updating CEGUI
Al'right, so I did some digging to see how GLM was being used and... well, I can take a hint; library has been installed! After this, cmake successfully generates the MSVC2019 sln file. I was then able to compile both the CEGUIBase-9999_Static and CEGUIRapidXMLParser_Static libraries. I did have to ...
- Tue Feb 04, 2020 00:41
- Forum: Help
- Topic: Updating CEGUI
- Replies: 8
- Views: 16569
Updating CEGUI
Hi all, I've been working on an Ogre application for a few years and and I recently ran into an Ogre bug which forced me to update my version to 1.12.4. I therefore through to myself, why not update CEGUI as well? And so my questions begin... 1) It seems that the last stable version of CEGUI was 0.8...
- Wed Dec 11, 2019 19:22
- Forum: Help
- Topic: Size Property in layout files and Font Size
- Replies: 4
- Views: 11422
Re: Size Property in layout files and Font Size
Got it; I'll give my proposed solution a try and see how it does, since I think that's going to be easiest.
I appreciate the answers, Ident
I appreciate the answers, Ident
- Mon Dec 02, 2019 22:31
- Forum: Help
- Topic: Size Property in layout files and Font Size
- Replies: 4
- Views: 11422
Re: Size Property in layout files and Font Size
No worries on the delay; simply thanks for the answer :) If there is no way to self-adjust, do you happen to know how applications usually address the issue of ensuring that UI elements fit their text? One possibility I'm contemplating is to find some element within my window hierarchy (probably a l...
- Sat Nov 09, 2019 23:03
- Forum: Help
- Topic: Size Property in layout files and Font Size
- Replies: 4
- Views: 11422
Size Property in layout files and Font Size
Hi everyone, So I've created the UI for my project using the Taharez looknfeel files that come with the source and my own layout files. Almost all of elements in those layout files use the proportional field in UDim's when setting their size so that the UI will scale appropriately at different resol...
- Fri Jun 23, 2017 16:25
- Forum: Help
- Topic: [Solved] Combo boxes and Vertical Layout Containers
- Replies: 3
- Views: 4704
Re: Combo boxes and Vertical Layout Containers
Hey Ident, Thank you for the quick reply and apologies for the late response; I went down the rabbit hole on a new feature and have just now resurfaced. Wrapping the comboboxes (and their rows) in a Default Window did indeed work. It was an quick replacement since I was already wrapping them in a ho...
- Fri Jun 09, 2017 16:44
- Forum: Help
- Topic: [Solved] Combo boxes and Vertical Layout Containers
- Replies: 3
- Views: 4704
[Solved] Combo boxes and Vertical Layout Containers
So I have a vertical layout container which I'm using to display a list of entries which a user can modify (imagine an Excel sheet). Each entry consists of a row of elements, one of which is a Combobox. Now, when I initially create my Combobox, I set it's height to be just enough to show the current...
- Tue Mar 14, 2017 23:03
- Forum: Help
- Topic: [Solved] Element::SetPosition() and SequentialLayoutContainers
- Replies: 15
- Views: 13493
- Mon Mar 13, 2017 23:02
- Forum: Help
- Topic: [Solved] Element::SetPosition() and SequentialLayoutContainers
- Replies: 15
- Views: 13493
Re: Element::SetPosition() and SequentialLayoutContainers
I tried out the changes on a few of my UI elements which are heavy on layout containers (both Horizontal and Vertical; haven't tried Grid) and, as far as I can tell, everything is working as expected. The pull request should be on your desk. (If not, here's the link ). Let me know if there's anythin...
- Sat Mar 11, 2017 18:51
- Forum: Help
- Topic: [Solved] Element::SetPosition() and SequentialLayoutContainers
- Replies: 15
- Views: 13493
Re: Element::SetPosition() and SequentialLayoutContainers
I will do so, but give me until Monday. I promised myself a bit of time off this weekend
- Fri Mar 10, 2017 23:16
- Forum: Help
- Topic: [Solved] Element::SetPosition() and SequentialLayoutContainers
- Replies: 15
- Views: 13493
Re: Element::SetPosition() and SequentialLayoutContainers
Al'right, this has taken me down quite the Rabbit Hole, but I believe I have an answer. When the position of a Window is set ( Element::setArea_impl() ), it first invalidates its unclipped rects (both outer and inner), updates the size of its area, then propagates the changes to its children through...
- Thu Mar 09, 2017 22:39
- Forum: Help
- Topic: [Solved] Element::SetPosition() and SequentialLayoutContainers
- Replies: 15
- Views: 13493
Re: Element::SetPosition() and SequentialLayoutContainers
Brief Update: Updating the size of one of the child windows inside the LayoutContainer after the position of the parent window has been modified results in the child position being updated properly. Could the child window not be getting properly set to dirty when inside a layout container? (Though, ...