Page 7 of 41

Re: Löve Frames - A GUI Library

Posted: Wed Jun 27, 2012 3:40 pm
by rokit boy
Some things that might be useful:
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons

Re: Löve Frames - A GUI Library

Posted: Thu Jun 28, 2012 9:30 am
by vernon
you can do popup .. just create a frame with a button on it..

Re: Löve Frames - A GUI Library

Posted: Fri Jun 29, 2012 4:20 am
by Nikolai Resokav
rokit boy wrote:Some things that might be useful:
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons
Addressing your list:

- Radio buttons will be coming in a future update.
- Tool tips are already a part of Löve Frames
- Popups can easily be created with a frame (as vernon mention)
- Track bars are basically sliders, and Löve Frames already has sliders
- Tool bars are useful but would be easy to create without an entire object dedicated to it
- Ribbons are kinda cool but I doubt they will ever be in Löve Frames

Re: Löve Frames - A GUI Library

Posted: Fri Jun 29, 2012 5:21 am
by litearc
Wow, this is really really really amazing. I'm blown away by all the features and in general how professional it is. Great work!

Re: Löve Frames - A GUI Library

Posted: Sat Jun 30, 2012 6:43 am
by LiquidDandruff
Absolutely wonderful.Thank you so much for making this library!

Edit: the love.keypressed function for the demo could be shortened to just one line from

Code: Select all

function love.keypressed(key, unicode)
	loveframes.keypressed(key, unicode)
	if key == "`" then
		local debug = loveframes.config["DEBUG"]
		if debug == true then
			loveframes.config["DEBUG"] = false
		else
			loveframes.config["DEBUG"] = true
		end
	end
end
to just

Code: Select all

function love.keypressed(key, unicode)
	loveframes.keypressed(key, unicode)
	if key == "`" then
		loveframes.config["DEBUG"] = not loveframes.config["DEBUG"]
	end
end
Currently using this for my project and its a breeze so far! :)

Re: Löve Frames - A GUI Library

Posted: Sat Jun 30, 2012 7:54 am
by osa1
Thank you for this great library!

I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.

Re: Löve Frames - A GUI Library

Posted: Thu Jul 12, 2012 6:49 pm
by Nikolai Resokav
litearc wrote:Wow, this is really really really amazing. I'm blown away by all the features and in general how professional it is. Great work!
Thanks!
LiquidDandruff wrote:Absolutely wonderful.Thank you so much for making this library!
No problem! I'm glad you like it!
LiquidDandruff wrote: Edit: the love.keypressed function for the demo could be shortened to just one line from

Code: Select all

function love.keypressed(key, unicode)
	loveframes.keypressed(key, unicode)
	if key == "`" then
		local debug = loveframes.config["DEBUG"]
		if debug == true then
			loveframes.config["DEBUG"] = false
		else
			loveframes.config["DEBUG"] = true
		end
	end
end
to just

Code: Select all

function love.keypressed(key, unicode)
	loveframes.keypressed(key, unicode)
	if key == "`" then
		loveframes.config["DEBUG"] = not loveframes.config["DEBUG"]
	end
end
Yeah there is a lot of code that still needs to be cleaned up, as this library is still only in it's alpha stages. I'll probably get around to this when I'm done adding features.
osa1 wrote: I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
Löve Frames does not currently have a multiple line text input, but I have one planned for a future update.

Re: Löve Frames - A GUI Library

Posted: Fri Jul 13, 2012 4:53 pm
by childonline
Nikolai Resokav wrote:
osa1 wrote: I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
Löve Frames does not currently have a multiple line text input, but I have one planned for a future update.
I'm dying of anticipation here. :death:

Re: Löve Frames - A GUI Library

Posted: Fri Aug 03, 2012 5:01 pm
by gau_veldt
How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)

Re: Löve Frames - A GUI Library

Posted: Fri Aug 03, 2012 8:19 pm
by Nikolai Resokav
gau_veldt wrote:How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)
gau_veldt wrote:How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)
Change

Code: Select all

loveframes.config["DEBUG"] = true
to

Code: Select all

loveframes.config["DEBUG"] = false 
in init.lua