finally working on the import dialog I'd planned since dev4 
![[Image: import_dialog.png]](https://lh4.ggpht.com/-CUCzZI3jf_c/VKWSONQa3pI/AAAAAAAAILc/nsrT3oKlJSY/s802/import_dialog.png)
though I won't say the layout will be the same as planned...
tbh, I never really had a solid plan for the layout, so for now I'm just gonna do something very basic and keep it quite similar to Tkinter.
though the scrolled dialog for selecting your files will just be made of buttons.
it's kinda sad to realize just how pointless this update is though when everything will be ported to shaders in 3.0
(that should say something about just how simple my GUI really is)
would be nice if display lists weren't deprecated already...
but using them very inefficient on your MBd as is... heh
EDIT:
lol every time I break this thing, I keep making it better XD
my code for my UI class is getting to be a bit bulky and hard to edit, so I've decided to split up the panels...
in doing so, I broke the very framework that handles the GUI-layering...
the problem was I had to define each layer and stack before I could use it, otherwize the interface would throw a KeyError exception.
so what I've done now was automated that part and removed the limitation of a fixed order.
meaning you can do this:
layer(1).stack(0).AddQuad( ... ) # this draws last
layer(1).stack(5).AddQuad( ... ) # this draws next
layer(0).overlay(2).AddQuad( ... ) # this draws first
normally this would throw a major key-error and cause the interface to cough, even when recompiling the UI display list.
but now everything is automated and you no longer need stacks 1 through 4 or overlays 0 and 1.
all the stack does is determine the position on the current layer and draws from top to bottom. (5 to 0)

![[Image: import_dialog.png]](https://lh4.ggpht.com/-CUCzZI3jf_c/VKWSONQa3pI/AAAAAAAAILc/nsrT3oKlJSY/s802/import_dialog.png)
though I won't say the layout will be the same as planned...
tbh, I never really had a solid plan for the layout, so for now I'm just gonna do something very basic and keep it quite similar to Tkinter.
though the scrolled dialog for selecting your files will just be made of buttons.
it's kinda sad to realize just how pointless this update is though when everything will be ported to shaders in 3.0
(that should say something about just how simple my GUI really is)

would be nice if display lists weren't deprecated already...

but using them very inefficient on your MBd as is... heh
EDIT:
lol every time I break this thing, I keep making it better XD
my code for my UI class is getting to be a bit bulky and hard to edit, so I've decided to split up the panels...
in doing so, I broke the very framework that handles the GUI-layering...
the problem was I had to define each layer and stack before I could use it, otherwize the interface would throw a KeyError exception.
so what I've done now was automated that part and removed the limitation of a fixed order.
meaning you can do this:
layer(1).stack(0).AddQuad( ... ) # this draws last
layer(1).stack(5).AddQuad( ... ) # this draws next
layer(0).overlay(2).AddQuad( ... ) # this draws first
normally this would throw a major key-error and cause the interface to cough, even when recompiling the UI display list.
but now everything is automated and you no longer need stacks 1 through 4 or overlays 0 and 1.
all the stack does is determine the position on the current layer and draws from top to bottom. (5 to 0)