But anyway, I think it's better to implement my own scroll. This way I will be able easily apply filter.
Search found 5 matches
- Mon Oct 19, 2015 18:40
- Forum: Help
- Topic: How to scroll with StaticText from C++ side
- Replies: 7
- Views: 8258
Re: How to scroll with StaticText from C++ side
Well, I just switch on this project (that wasn't my part before). So I can't answer this. I think the guy before just found some precompiled .lib on the web ... 
But anyway, I think it's better to implement my own scroll. This way I will be able easily apply filter.
But anyway, I think it's better to implement my own scroll. This way I will be able easily apply filter.
- Mon Oct 19, 2015 18:05
- Forum: Help
- Topic: How to scroll with StaticText from C++ side
- Replies: 7
- Views: 8258
Re: How to scroll with StaticText from C++ side
I've already trie to link with this library, it still doesn't work. Do I have the wrong libraries ?
Humph I will just add a scrollbar on top of my static text and implement myself scrolling since it's not hard at all.
But I'm still interested about the "real" solution.
Humph I will just add a scrollbar on top of my static text and implement myself scrolling since it's not hard at all.
But I'm still interested about the "real" solution.
- Mon Oct 19, 2015 16:50
- Forum: Help
- Topic: How to scroll with StaticText from C++ side
- Replies: 7
- Views: 8258
Re: How to scroll with StaticText from C++ side
Okay so first, CEGUI::StaticText class doesn't exist. However I found CEGUI::FalagardStaticText in "CEGUI\WindowRendererSets\Core\StaticText.h" but I can't get how to get the scrollbar from CEGUI::Window . I found some interesting things. For now I'm trying to do like this : CEGUI::WindowR...
- Mon Oct 19, 2015 15:29
- Forum: Help
- Topic: How to scroll with StaticText from C++ side
- Replies: 7
- Views: 8258
Re: How to scroll with StaticText from C++ side
I thought that CEGUI::StaticText doesn't exist as a CEGUI class. I guess I was wrong then. If it's the case I think it's way better to inherit from this class than modify the source code itself.
I will check that tonight and post how I did it.
Thanks a lot yaronct.
I will check that tonight and post how I did it.
Thanks a lot yaronct.
- Sun Oct 18, 2015 18:52
- Forum: Help
- Topic: How to scroll with StaticText from C++ side
- Replies: 7
- Views: 8258
How to scroll with StaticText from C++ side
Hi everyone, I'm currently working on an in game chat. I use a GlossySerpentFHD/StaticText to display my messages (because I need text formatting ) To be abble to scroll the chat messages, I also set: <Property name="VertScrollbar" value="true"/> The only point remaining is about...