Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: ListView control with SFML  (Read 1370 times)

0 Members and 1 Guest are viewing this topic.

mkalex777

  • Full Member
  • ***
  • Posts: 206
    • View Profile
ListView control with SFML
« 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?

SpeCter

  • Full Member
  • ***
  • Posts: 151
    • View Profile
Re: ListView control with SFML
« Reply #1 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.