Displaying information

Hello,

I have made a program that allows you to load in models in the OBJ file format. I have stored the data in a map<std::string, model*> , the string is the name given for that model . I need a way of displaying the models in list . example;
1
2
model_name |         translation        |        rotation       |    scale
Cube       |     x 1.0 y 1.0 z -200.0   |    A 20 x 1 y  z 1    | x 1 y 1 z 1


I would like to display the data like this , and also be able to edit any of the data in the list. What would be the best way to display this ? When data is added it needs to create a message of some kind so i can update the relevant information in the program.

Thanks!
Last edited on
Topic archived. No new replies allowed.