Search found 22 matches

by jtracy
Mon Oct 06, 2008 16:42
Forum: Help
Topic: Problem with my imageset
Replies: 4
Views: 3385

We noticed similar issues using CEGUI 0.5 and the OpenGL renderer. The way we solve it is by leaving an extra 1 pixel border around everything so this does not happen. Maybe this could help with you.
by jtracy
Wed Oct 01, 2008 16:36
Forum: Help
Topic: Double click speed
Replies: 4
Views: 3474

I had just submitted a fix to Delta3D for version (2.0) which fixed a double click issue. The problem was that CEGUI would only get double click events when you actually triple clicked really fast. The fix was to rely on osg for detecting double click rates and them simulating those for CEGUI. It wo...
by jtracy
Wed Oct 01, 2008 16:16
Forum: Help
Topic: Lua event handlers always handle?
Replies: 4
Views: 5108

Looking at your code here it looks like you have a slight problem with your error handling. You are throwing before you pop the value from lua, so the stack will be corrupted if you do not return a boolean. // Kripken: retrieve result bool ret; if (lua_isboolean(L, -1)) ret = lua_tob...
by jtracy
Thu Jul 31, 2008 22:35
Forum: Offtopic Discussion
Topic: Can the script module be compiled seperately.
Replies: 2
Views: 3348

Thanks, I was able to get it built seperately and it is working. I did have to create my own build system which was not hard, just time consuming. The only other problem that I had was trying to figure out how to get CEGUI to use the SILLY image codec as the default in Delta3D is TGA, but I finally ...
by jtracy
Thu Jul 31, 2008 15:11
Forum: Offtopic Discussion
Topic: Can the script module be compiled seperately.
Replies: 2
Views: 3348

Can the script module be compiled seperately.

I am using another library that includes CEGUI (Delta3D), but it does not include the lua script module. Can I build that seperately and include the library in the distribution or does CEGUI have to be built with lua enable? BTW this is using CEGUI 0.5

Judd
by jtracy
Tue Feb 19, 2008 15:20
Forum: Modifications / Integrations / Customisations
Topic: CEGUI and Xerces 2.8
Replies: 2
Views: 2432

Sorry for not replying sooner, I was pulled off to another project last week. Anyway. I figured out my linking problem (I forgot to copy over my .lib files). There was one change I had to make to get it to compile. CEGUI could no longer find Grammar::SchemaGrammarType, to fix I had to add an include...
by jtracy
Wed Feb 06, 2008 20:56
Forum: Modifications / Integrations / Customisations
Topic: CEGUI and Xerces 2.8
Replies: 2
Views: 2432

CEGUI and Xerces 2.8

Has anyone tried to use xerces 2.8 with CEGUI. I am getting some link errors that I have not been able to resolve yet and was wondering if anyone else had tried this in the past.

Judd
by jtracy
Fri Jul 20, 2007 13:23
Forum: Offtopic Discussion
Topic: Wikied: Menu and Submenus
Replies: 3
Views: 5898

Is there an easy way to get popup menus to pop in the up direction instead of the down direction. I have what is essentially a menubar on the bottom of my window, but whenever I create a popup menu and put it a down there I have to manually adjust the position of the popup so that it will show on th...
by jtracy
Thu Jul 19, 2007 21:13
Forum: Help
Topic: ScrollablePane setHorizontalScrollPosition question
Replies: 0
Views: 2620

ScrollablePane setHorizontalScrollPosition question

I created a ScrollablePane that is 256 pixels across and inside of the pane I put an image that is 512 pixels across. I would assume that to move the middle of the image to the middle of the scrollpane I could set the scrollposition to (0.5). That does not seem to work correctly. I have noticed that...
by jtracy
Wed Jul 18, 2007 21:31
Forum: Help
Topic: ScrollablePane without Scrollbars
Replies: 1
Views: 2114

ScrollablePane without Scrollbars

Is there a way to have a ScrollablePane that does not show its scrollbars?

Judd
by jtracy
Tue Jul 17, 2007 15:41
Forum: Offtopic Discussion
Topic: Event Naming issues.
Replies: 1
Views: 3272

Here is a list of events that are inconsistent with there names. I know it would break backwards compatiblity to fix them all, but it has been a major pain in my ass trying to figure out why some events don't seem to work and I am sure others will have the same problems in the future. I hope this he...
by jtracy
Tue Jul 17, 2007 14:53
Forum: Offtopic Discussion
Topic: Event Naming issues.
Replies: 1
Views: 3272

Event Naming issues.

I have noticed some issues with event names that I am trying to get a handle on. The main problem that I am having is that events that get fired have a different name then what is documented in the doxygen. For instance in Listbox it mentions that it has EventSelectionChanged, so based on previous e...
by jtracy
Thu Jun 14, 2007 17:38
Forum: Help
Topic: StaticText drawing of the frame of windows.
Replies: 0
Views: 2312

StaticText drawing of the frame of windows.

We are working on creating our own look and feel based on the TaharezLook but are having problems with static text windows rendering over the frame of windows. To give an example I have a TabControl window with a ScrollablePane inside of it with a whole bunch of RadioButtons and StaticTexts inside o...
by jtracy
Thu Apr 19, 2007 20:30
Forum: Help
Topic: ScrollablePane with StaticText
Replies: 0
Views: 2035

ScrollablePane with StaticText

What is the proper way to get a scrollable static text window with out having to specify the size of the statictext window being greater the 1.0 in either dimension? I don't know before hand how much text will be in the window so setting the size of the statictext would have to be done in code. I ha...
by jtracy
Mon Apr 02, 2007 14:15
Forum: Offtopic Discussion
Topic: Setting the color of static text through lua
Replies: 1
Views: 3054

I figured it out buy setting the TextColours property of the Window.

Judd

Go to advanced search