Search found 3 matches
- Wed Nov 17, 2010 09:29
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: Problem with Image's clipping
- Replies: 5
- Views: 5401
Re: Problem with Image's clipping
I really sorry about my carelessness :oops: I compiled CEGUI 0.7.4 manually and run Sample_TreeDemo, I found the open-branch-icon and close-branch-icon disappeared. http://i.imgur.com/CMiDB.jpg I checked "TaharezLook.imageset" and found these two images are defined: <Image Name="TreeL...
- Wed Oct 27, 2010 06:32
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: Problem with Image's clipping
- Replies: 5
- Views: 5401
Problem with Image's clipping
Hey, if an image defined XOffset or YOffset, its rendering-area will be fixed by d_scaledOffset. void Image::draw(GeometryBuffer& buffer, const Rect& dest_rect, const Rect* clip_rect, const ColourRect& colours, QuadSplitMode quad_split_mode) const { Rect dest(dest_rect); // apply renderi...
- Sat Sep 25, 2010 08:25
- Forum: Help
- Topic: Problem about onMouseDoubleClicked
- Replies: 2
- Views: 3593
Problem about onMouseDoubleClicked
Hi, I have two problem about onMouseDoubleClicked. if (d_generateMouseClickEvents && ma.window->wantsMultiClickEvents()) { switch (tkr.d_click_count) { case 1: ma.window->onMouseButtonDown(ma); break; case 2: ma.window->onMouseDoubleClicked(ma); break; case 3: ma.window->onMouseTripleClicked...