Search found 10 matches
- Wed Dec 21, 2005 16:32
- Forum: Modifications / Integrations / Customisations
- Topic: MultiColumnList does not updates when I change it contents
- Replies: 2
- Views: 2385
Re: MultiColumnList does not updates when I change it conten
Sorry. It's my error (I'm change data after call update function).

- Mon Dec 19, 2005 21:15
- Forum: Modifications / Integrations / Customisations
- Topic: MultiColumnList does not updates when I change it contents
- Replies: 2
- Views: 2385
Re: MultiColumnList does not updates when I change it conten
I try run my program on another computer (also amd64), but no problems... Very very strange...
- Mon Dec 19, 2005 14:03
- Forum: Modifications / Integrations / Customisations
- Topic: MultiColumnList does not updates when I change it contents
- Replies: 2
- Views: 2385
MultiColumnList does not updates when I change it contents
I need time to time to change the content of MultiColumnList by programm. I do it as: void SomeClassName::updateList(void) { MultiColumnList *list = ....; //this list contains 4 columns list->resetList(); for(int i = 0; i < a; i++) { int n = list->addRow(); ...
- Mon Dec 05, 2005 12:42
- Forum: Modifications / Integrations / Customisations
- Topic: Ноw can I send from one part of program keyevent
- Replies: 3
- Views: 2845
Re: How can I send from one part of program keyevent to the
Where can I find key codes for CEGUI::System::getSingleton().injectKeyDown?
- Mon Dec 05, 2005 09:24
- Forum: Modifications / Integrations / Customisations
- Topic: Ноw can I send from one part of program keyevent
- Replies: 3
- Views: 2845
Ноw can I send from one part of program keyevent
I try to use this command: System::getSingleton().injectKeyDown(Ogre::KC_F12) But my event listener (which successfully listen for keyboard events) do not catch it. Why? void Listener::keyPressed(KeyEvent* key) { printf("key pressed (%d)\n", key->ge...
- Thu Dec 01, 2005 21:00
- Forum: Modifications / Integrations / Customisations
- Topic: Static Text setBackgroundColours problem
- Replies: 6
- Views: 5155
Re: Static Text setBackgroundColours problem
I found my error: I must use tr,tl,br,bl in BackgroundColours. And need use BackgroundImage...
- Thu Dec 01, 2005 18:58
- Forum: Modifications / Integrations / Customisations
- Topic: Static Text setBackgroundColours problem
- Replies: 6
- Views: 5155
Re: Static Text setBackgroundColours problem
I have problem with background too. I need default blue background for whole screen. I have xml which contain my windows. I try to make StaticImage/StaticText for testing: <Window Type="TaharezLook/StaticText" Name="bkground" > <Property Name="BackgroundColours" Value=&...
- Thu Dec 01, 2005 18:35
- Forum: Modifications / Integrations / Customisations
- Topic: How can I manually change states of buttons (hovered, pushed
- Replies: 5
- Views: 4255
Re: How can I manually change states of buttons (hovered, pu
Thank you. It's working!
- Thu Dec 01, 2005 14:28
- Forum: Modifications / Integrations / Customisations
- Topic: How can I manually change states of buttons (hovered, pushed
- Replies: 5
- Views: 4255
Re: How can I manually change states of buttons (hovered, pu
I try to do it. But I cannot determine position of the window in mouse units. I try to use getAbsolutePosition.But result for window (size 0.34x0.4) placed in center of the screen ( 1024x768 ) is 17.0,46.0. Why? In the documentation for this metod written: "Return the window position in absolut...
- Wed Nov 30, 2005 16:50
- Forum: Modifications / Integrations / Customisations
- Topic: How can I manually change states of buttons (hovered, pushed
- Replies: 5
- Views: 4255
How can I manually change states of buttons (hovered, pushed
May be this is very simple to do, but I currently noob in CEGUI and didn't found needed methods in the API Reference... I try to do it with activate, but no result. P.S.: Mouse is disabled in my project. Only keyboard currently (in the future it also will be disabled) may be used. As result I need t...