Löve Frames - A GUI Library

Showcase your libraries, tools and other projects that help your fellow love users.
Post Reply
User avatar
rokit boy
Party member
Posts: 198
Joined: Wed Jan 18, 2012 7:40 pm

Re: Löve Frames - A GUI Library

Post by rokit boy »

Some things that might be useful:
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons
u wot m8
User avatar
vernon
Prole
Posts: 18
Joined: Fri Oct 07, 2011 3:54 pm

Re: Löve Frames - A GUI Library

Post by vernon »

you can do popup .. just create a frame with a button on it..
User avatar
Nikolai Resokav
Party member
Posts: 140
Joined: Wed Apr 28, 2010 12:51 am
Location: United States

Re: Löve Frames - A GUI Library

Post 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
User avatar
litearc
Citizen
Posts: 57
Joined: Thu May 17, 2012 12:40 am

Re: Löve Frames - A GUI Library

Post 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!
LiquidDandruff
Prole
Posts: 18
Joined: Fri Dec 16, 2011 11:29 pm

Re: Löve Frames - A GUI Library

Post 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! :)
osa1
Prole
Posts: 29
Joined: Sat Jun 30, 2012 7:51 am

Re: Löve Frames - A GUI Library

Post 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.
User avatar
Nikolai Resokav
Party member
Posts: 140
Joined: Wed Apr 28, 2010 12:51 am
Location: United States

Re: Löve Frames - A GUI Library

Post 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.
User avatar
childonline
Prole
Posts: 15
Joined: Thu Dec 30, 2010 11:06 am

Re: Löve Frames - A GUI Library

Post 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:
gau_veldt
Prole
Posts: 1
Joined: Sun Jul 29, 2012 3:02 am

Re: Löve Frames - A GUI Library

Post 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)
User avatar
Nikolai Resokav
Party member
Posts: 140
Joined: Wed Apr 28, 2010 12:51 am
Location: United States

Re: Löve Frames - A GUI Library

Post 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
Post Reply

Who is online

Users browsing this forum: No registered users and 33 guests