SFML community forums

Help => Graphics => Topic started by: mkalex777 on November 12, 2015, 02:55:37 pm

Title: ListView control with SFML
Post by: mkalex777 on November 12, 2015, 02:55:37 pm
I need to implement some kind of entity list view with SFML. It should support vertical scroll and several columns.
What is the best approach to achieve it?
Title: Re: ListView control with SFML
Post by: SpeCter on November 12, 2015, 03:29:07 pm
That depends on how the scrolling should look. Are elements supposed to be only half shown(cut of at the list view borders)?
If yes most probably custom views, to only render to a specific area, since SFML doesn't have masks for this(yet).


Why not use SFGUI or TGUI , I think both have implementations for something like this.