Search found 23 matches
- Fri Feb 26, 2016 23:38
- Forum: Help
- Topic: [Crash] Multicolumn List crash in Debug mode
- Replies: 1
- Views: 3192
[Crash] Multicolumn List crash in Debug mode
I was just noticing, every time I start in debug mode (f5) whether Debug or Release. I refresh my Multicolumn list which calls this code : bool ServersAvailableSheet::Event_RefreshButton(const CEGUI::EventArgs& args) { currentGameServers.clear(); availableGameServers.clear(); serversList->clearA...
- Wed Oct 28, 2015 05:51
- Forum: Help
- Topic: How to get pixel ratio of text label
- Replies: 4
- Views: 5405
Re: How to get pixel ratio of text label
Thank you yaronct, I'll make sure to take a look at your project. I appreciate it very much.
- Tue Oct 27, 2015 10:16
- Forum: Help
- Topic: How to get pixel ratio of text label
- Replies: 4
- Views: 5405
Re: How to get pixel ratio of text label
What I'm wanting to do is to obtain either the d_scale or d_offset for the pixel height for each of my particular Labels. Then after I obtain those values I'll have to displace them a long the y-axis to allow each label to append after it's previous label. I'm using a WordWrapLeftAligned style, I'm ...
- Tue Oct 27, 2015 02:05
- Forum: Help
- Topic: How to get pixel ratio of text label
- Replies: 4
- Views: 5405
How to get pixel ratio of text label
Hello, I'm currently trying to get the correct corresponding pixel ratio of my text label for placing within my root messenger window area. (window) ------------------------------------------------ [Text2] => h2 [Text1] => h1 [Text0] => h0 -> first text inserted ... ---------------------------------...
- Mon Oct 05, 2015 05:06
- Forum: Help
- Topic: CEED to Recognize New .font
- Replies: 1
- Views: 4681
CEED to Recognize New .font
Is there a way to get CEED to recognize my custom .font? I added a new .font with a corresponding .ttf, looks identical to the Jura-13.font. I made sure to place the .font in the same directory as the others. I reloaded my project and opened up a layout, however, under the Font property when I choos...
- Sun Oct 04, 2015 08:47
- Forum: Help
- Topic: Trying to Modify TaharezLook.imageset
- Replies: 3
- Views: 4737
Re: Trying to Modify TaharezLook.imageset
I'm messing around in the VerticalScroll bar area in TaharezLook.looknfeel: I changed the: <Dim type="Height" ><ImageDim name="TaharezLook/MiniVertScrollUpNormal" dimension="Height" /></Dim> to: <Dim type="Height" ><UnifiedDim scale="0.1" type="...
- Sun Oct 04, 2015 07:49
- Forum: Help
- Topic: Trying to Modify TaharezLook.imageset
- Replies: 3
- Views: 4737
Re: Trying to Modify TaharezLook.imageset
I modified my ComoboboxList pieces to be 32x32 instead of a 75x75 I had, and now I can see the items, but the items are surrounded by too much space of the surrounding image. Is there a way I can reduce the size of these without having to modify the pixel size to be smaller? How do I make the conten...
- Sun Oct 04, 2015 05:58
- Forum: Help
- Topic: Trying to Modify TaharezLook.imageset
- Replies: 3
- Views: 4737
Trying to Modify TaharezLook.imageset
Hello, I'm currently utilizing the TaharezLook.imageset / .looknfeel / .scheme where right now I'm just changing the .imageset within CEED to match with my new gui assets. Everything has been working fine mostly so far. However, when I started mapping over the ComboBox & Alternate Progress bar w...
- Sun Aug 02, 2015 11:26
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
Re: How to remove own managed ListboxTextItem from MCL
Yea, definitely a bit strange and curious. I loaded up my CEGUIBase0_d.pdb, it relates to: glyph = getGlypthData(text[c]) CEGUI Font.cpp float Font::getTextExtent(const String& text, float x_scale) const { const FontGlyph* glyph; float cur_extent = 0, adv_extent = 0, width; for (size_t c = 0; c ...
- Sun Aug 02, 2015 11:01
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
Re: How to remove own managed ListboxTextItem from MCL
I don't believe I have non-managed memory anywhere, but it's definitely possible
Code: Select all
Unhandled exception at 0x03123F59 (CEGUIBase-0_d.dll) in Editor.exe: 0xC0000005: Access violation reading location 0xDDDDDDE5.
- Sun Aug 02, 2015 10:49
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
Re: How to remove own managed ListboxTextItem from MCL
It looks like it is a vector subscript out of range crash, but it happens somewhere after the CEGUI::System::getSingleton().renderAllGUIContexts(); It happens occasionally tho, might have something to do with my binaries, my Helloworld example code seems to work fine within the sample browser when a...
- Sun Aug 02, 2015 10:42
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
Re: How to remove own managed ListboxTextItem from MCL
That problem is definitely solved. However, it seems now occasionally my CEGUIBase0_d.dll will crash after inserting too many items into the Multi Column List at once. It's a little strange, I was able to catch it at the: CEGUI::System::getSingleton().renderAllGUIContexts(); at one point, and then f...
- Sun Aug 02, 2015 02:58
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
Re: How to remove own managed ListboxTextItem from MCL
Thank you for the insight and suggestion to try it out in the HelloWorld demo. Turns out I was just forgetting to clear one of my vectors, so it was technically clearing it, but the data was still there upon the re-addition of the refresh on my MCL. Here was my test code for the HelloWorld. HelloWor...
- Sat Aug 01, 2015 12:18
- Forum: Help
- Topic: [Solved] How to remove own managed ListboxTextItem from MCL
- Replies: 10
- Views: 7396
[Solved] How to remove own managed ListboxTextItem from MCL
Hello, I'm utilizing the Multi Column List (MCL) with std::shared_ptr<CEGUI::ListboxTextItem> for being able to manage my own memory pieces, I've set the auto_delete = false. I'm currently simply attempting to just remove and clear my MCL. I first tried to do a: MCL->resetList() but that didn't remo...
- Sat Mar 21, 2015 00:07
- Forum: Help
- Topic: Slider Shadow Area w/ AlfiskoSkin Not Updating
- Replies: 10
- Views: 7364
Re: Slider Shadow Area w/ AlfiskoSkin Not Updating
That is interesting, I look forward to hearing about what you discover.