Search found 23 matches

by Oam
Fri Feb 26, 2016 23:38
Forum: Help
Topic: [Crash] Multicolumn List crash in Debug mode
Replies: 1
Views: 2756

[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...
by Oam
Wed Oct 28, 2015 05:51
Forum: Help
Topic: How to get pixel ratio of text label
Replies: 4
Views: 4640

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.
by Oam
Tue Oct 27, 2015 10:16
Forum: Help
Topic: How to get pixel ratio of text label
Replies: 4
Views: 4640

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 ...
by Oam
Tue Oct 27, 2015 02:05
Forum: Help
Topic: How to get pixel ratio of text label
Replies: 4
Views: 4640

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 ... ---------------------------------...
by Oam
Mon Oct 05, 2015 05:06
Forum: Help
Topic: CEED to Recognize New .font
Replies: 1
Views: 3869

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...
by Oam
Sun Oct 04, 2015 08:47
Forum: Help
Topic: Trying to Modify TaharezLook.imageset
Replies: 3
Views: 4078

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="...
by Oam
Sun Oct 04, 2015 07:49
Forum: Help
Topic: Trying to Modify TaharezLook.imageset
Replies: 3
Views: 4078

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...
by Oam
Sun Oct 04, 2015 05:58
Forum: Help
Topic: Trying to Modify TaharezLook.imageset
Replies: 3
Views: 4078

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...
by Oam
Sun Aug 02, 2015 11:26
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

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 ...
by Oam
Sun Aug 02, 2015 11:01
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

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.
by Oam
Sun Aug 02, 2015 10:49
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

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...
by Oam
Sun Aug 02, 2015 10:42
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

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...
by Oam
Sun Aug 02, 2015 02:58
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

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...
by Oam
Sat Aug 01, 2015 12:18
Forum: Help
Topic: [Solved] How to remove own managed ListboxTextItem from MCL
Replies: 10
Views: 5896

[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...
by Oam
Sat Mar 21, 2015 00:07
Forum: Help
Topic: Slider Shadow Area w/ AlfiskoSkin Not Updating
Replies: 10
Views: 5928

Re: Slider Shadow Area w/ AlfiskoSkin Not Updating

That is interesting, I look forward to hearing about what you discover.

Go to advanced search