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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bobmarley

Pages: [1]
1
Window / Re: Read-Only Textbox with Scrollbar
« on: July 22, 2017, 03:42:06 pm »
Ah, you do all of that.  Well thanks for it, it certainly will save me some considerable time.

Well it sounds like it is being maintained if you are still building it and updating the forums.

The only thing I noticed with it was that Vector2f seems to have moved from SFML.Windows to SFML.System.  I assume this is just the base SFML has been refactored and that got pulled along with the TGUI dll's.  Just thought I'd mention it if someone else runs into it.

Thanks again!

2
Window / Re: Read-Only Textbox with Scrollbar
« on: July 22, 2017, 05:00:33 am »
Thanks all.

Well I did check out TGUI and I got it working.  I used TGUI .net.  Works great so far..  My only question is it still actively maintained?

I used TGUI from here https://tgui.eu/download/


Here is my code if anyone is curious.  Still got a bit of work to do.

Gui gui = new Gui(renderWindow);

TextBox textBox = new TextBox();
textBox.Position = new Vector2f(1400, 5);
textBox.Size = new Vector2f(200, 890);
textBox.Text = "blah blah\nblah\nblah";
gui.Add(textBox);

gui.Draw();


3
Window / Read-Only Textbox with Scrollbar
« on: July 21, 2017, 05:06:32 am »
Is there a way to create a textbox in SFML?  I just need to write rows and rows of text and have the ability for the user to scroll through it.  It doesn't need to be editable.

Pages: [1]