Search found 227 matches

by Van
Wed Sep 28, 2005 20:16
Forum: Modifications / Integrations / Customisations
Topic: Need help with Drag and Drop for Wiki how-to
Replies: 24
Views: 22636

Need help with Drag and Drop for Wiki how-to

I have been studying the Drag and Drop and I am getting cross-eyed so I would like a little help.. 1. I create a display window number 1. 2. I create a display window number 2. 3. I create a Drag Container. 4. I create a StaticImage window and disable it. 5. I add the StaticImage window to the Drag ...
by Van
Wed Sep 28, 2005 00:39
Forum: Offtopic Discussion
Topic: Lack of Documentation, Samples and Demo's
Replies: 8
Views: 6245

Re: Lack of Documentation, Samples and Demo's

jacmoe wrote: Van wrote: I would expect to see others follow my example and contribute: both the user base and the developers. I think the developers should concentrate on what they do best: writing code with good comments in it. ;) Yea, I see what you mean. So, I suppose the people at Linux, Micro...
by Van
Tue Sep 27, 2005 14:24
Forum: Modifications / Integrations / Customisations
Topic: PopupMenu
Replies: 4
Views: 3419

Re: PopupMenu

Thank you Blakharaz for replying. I over-looked that little typo. :oops: But, I now get the following error: [color=0000FF]Unhandled exception at 0x7c81eb33 in Client.exe: Microsoft C++ exception: CEGUI::UnknownObjectException @ 0x0012dc5c.[/color] // PopupMenu mPopupMenu = (CEGUI::PopupMenu *&#...
by Van
Tue Sep 27, 2005 10:48
Forum: Offtopic Discussion
Topic: Lack of Documentation, Samples and Demo's
Replies: 8
Views: 6245

Re: Lack of Documentation, Samples and Demo's

And just to show that I'm not full of smack.... Wiki->CodeSnippets->MultiColumnList URL: http://www.cegui.org.uk/wiki/index.php/MultiColumnList That took me about an hour to write. It's not perfect but at least it something that people can review, commment, edit, change, etc. I don't know about othe...
by Van
Tue Sep 27, 2005 09:27
Forum: Offtopic Discussion
Topic: Lack of Documentation, Samples and Demo's
Replies: 8
Views: 6245

Re: Lack of Documentation, Samples and Demo's

Exsortis wrote: Documentation is my least favorite thing to do. ;) Yea, documentation is the least of every programmers thing to do and that goes for me too - but I still have to do it and so does every developer here at some point. It's a catch 22 situation. If you don't create documentation, then...
by Van
Mon Sep 26, 2005 21:46
Forum: Modifications / Integrations / Customisations
Topic: PopupMenu
Replies: 4
Views: 3419

PopupMenu

Could someone with PopupMenu knowledge please give a quick overview what how to implement it? This is what I am trying but it doesn't work. // PopupMenu mPopupMenu = (CEGUI::PopupMenu *)mWinMgr->createWindow( "DefaultWindow", "Portfolio/PopupMenu"); mIEInventoryDe...
by Van
Mon Sep 26, 2005 21:18
Forum: Offtopic Discussion
Topic: Lack of Documentation, Samples and Demo's
Replies: 8
Views: 6245

Lack of Documentation, Samples and Demo's

I think CEGUI could be a fine library. My biggest complaint about CEGUI is the lack of documentation and samples . DoxyGen is NOT documentation. It makes for a nice REFERENCE but that is all. I really wish someone who really knows this library would spend some time creating some documentation with s...
by Van
Sat Sep 24, 2005 23:48
Forum: Modifications / Integrations / Customisations
Topic: Drag and Drop in CEGUI?
Replies: 14
Views: 8921

Re: Drag and Drop in CEGUI?

(CEGUI Version 0.4.0) Well, after studying the code it has become painfully obvious that Drag and Drop is not supported at the ListBoxItem level(s) - yet. It is only supported at the Window widget level. I can't figure out a way to be able to drag and frop ListBoxItems . Back to the drawing board......
by Van
Sat Sep 24, 2005 16:21
Forum: Modifications / Integrations / Customisations
Topic: ListBox and MultiListBox question
Replies: 6
Views: 3443

Re: ListBox and MultiListBox question

never mind. Stupid me forgot to set the setSelectionBrushImage for each item. :oops:
by Van
Sat Sep 24, 2005 15:58
Forum: Modifications / Integrations / Customisations
Topic: Drag and Drop in CEGUI?
Replies: 14
Views: 8921

Re: Drag and Drop in CEGUI?

martignasse wrote: ...and another idea, example should be found in CEGUI itself because the MultiColumnList implement it. try to search in CEGUI source code, in the MultiColumnList implementation. I must be blind as a bat.. I searched the entire CEGUI solution and I couldn't find an example of wher...
by Van
Sat Sep 24, 2005 15:22
Forum: Modifications / Integrations / Customisations
Topic: ListBox and MultiListBox question
Replies: 6
Views: 3443

Re: ListBox and MultiListBox question

OK, I have the MultiColumnListBox working - sort of... My problem is I can't select any of the row items. I am probably not setting something correcty... // LIST BOX strcat( mStr, "/MultiColumnList" ); mListBox = (CEGUI::MultiColumnList *)mWinMgr->createWindow( (CEG...
by Van
Fri Sep 23, 2005 19:25
Forum: Modifications / Integrations / Customisations
Topic: ListBox and MultiListBox question
Replies: 6
Views: 3443

Re: ListBox and MultiListBox question

Am I to understand that EACH COLUMN[/u] must have its own [i]ListboxTextItem ?? Please correct me if I am wrong: CEGUI::ListboxTextItem *mMyItems[3]; ... mRowNum = mMyMCListBox->addRow(); MyMCListBox->setItem(mMyItems[0], 0, mRowNum); MyMCListBox->setItem(mMyItems[1], 1, mRowNum&...
by Van
Fri Sep 23, 2005 14:34
Forum: Unofficial CEGUI-Related Tools
Topic: 1.3 - Change Default Font?
Replies: 0
Views: 3219

1.3 - Change Default Font?

Is there a way to change the default font for the LE?
What about adding more fonts to the drop down font list?
How?
by Van
Thu Sep 22, 2005 19:19
Forum: Modifications / Integrations / Customisations
Topic: Q: How to use a Layout file as a template?
Replies: 2
Views: 1667

Q: How to use a Layout file as a template?

I defined a window in a layout file (via the CEGUI Layout Editor). I want to be able to create multiple instances of this window - at the same time. But, I see a problem where the widget names will be the same for each window instance and CEGUI will choke. I thought that I could load the layout from...
by Van
Thu Sep 22, 2005 18:04
Forum: Modifications / Integrations / Customisations
Topic: Drag and Drop in CEGUI?
Replies: 14
Views: 8921

Re: Drag and Drop in CEGUI?

I have no time to produce any sample code at present, though A wiki tutorial may be on the cards in a couple of weeks ;) CE. *bumps CE* ;) Would someone please give a quick overview (here or the Wiki) of what needs to be done to implement a Drag-N-Drop? There are no examples or even code snippets t...

Go to advanced search