Search found 5 matches
- Sun Apr 02, 2006 20:39
- Forum: CEGUI Library Development Discussion
- Topic: Extending StaticText with Simple HTML
- Replies: 9
- Views: 10690
Well, I haven't had a chance to put the finishing touches on the project yet... I am currently in the progress of porting all my code to C#, so that has been taking up most of my free time. I have been reluctant to post the source that I have currently, since I think it might be better to wait until...
- Sat Mar 25, 2006 11:55
- Forum: CEGUI Library Development Discussion
- Topic: Extending StaticText with Simple HTML
- Replies: 9
- Views: 10690
Update
I have the links working (I used a method based on what Dalfy mentioned above). The links fire an EventLinkClicked event, and I created an implementation of the EventArgs class to pass along a user-defined link value based on which link was clicked. There are still plenty of optimizations to be done...
- Mon Mar 20, 2006 01:47
- Forum: CEGUI Library Development Discussion
- Topic: Extending StaticText with Simple HTML
- Replies: 9
- Views: 10690
first screenshot
http://www.indpoint.com/screenshots/screenshot_packed2.png Here is a link to the first screenshot using the control I'm building... It is extending the Window class, and you add elements to it using either an addText(String str,Font *font) method, or addWindow(Window *wnd). It then arranges all of t...
- Wed Mar 08, 2006 21:46
- Forum: CEGUI Library Development Discussion
- Topic: Extending StaticText with Simple HTML
- Replies: 9
- Views: 10690
Thanks for the encouragement and advice... unfortunately, all the work I've done so far has been against the 0.4.1 source, but I'm learning a lot about how the internal text rendering stuff works so I assume that will be useful with the current source as well. For my first pass, I'm simply adding in...
- Wed Mar 08, 2006 12:44
- Forum: CEGUI Library Development Discussion
- Topic: Extending StaticText with Simple HTML
- Replies: 9
- Views: 10690
Extending StaticText with Simple HTML
I am going to need a widget similar to StaticText, but that will be able to have some limited functionality similar to HTML. I am planning on developing this, but I figured I would throw it out there in case someone else has already implemented something similar or would like to provide some insight...