Leonardo Guilherme de Freitas

Results 53 comments of Leonardo Guilherme de Freitas

Yiep. Thing is, when we get the text back from SDL, baseline information is lost. A good workaround would be instead of vertically centering things using the height of the...

What are you planning on replacing SDL_TTF with? Replacing SDL_ttf is in my plans as well, right now I'm working on a font cooking library, it's just not public yet,...

Yeah, this new library of mine is a wrapper around stb_truetype (which wasn't a lot easy to work with, to be honest). It already correctly produces the glyph atlas but...

Thanks for the patches! If you don't mind, I'd like to understand some of the things that you did before merging them. I'll be asking them in your commits :)

Hi! `KW_DestroyWidget` segfaulting is a bug I was not aware of, it should be fixed. What you really need is a function to hide the widget (similar to `KW_BlockWidgetInputEvents`) and...

Ah. I'll look into these problems.

I've implemented `KW_HideWidget` and `KW_ShowWidget` and their respective effects. I've blocked input events if the widget is hidden, as I understand this behaviour is expected. Please let me have your...

Yeah it looks odd indeed, there is no depth. Tileset is the guilty here. Replace tileset.png with the one attached, it looks much better. ![tileset](https://cloud.githubusercontent.com/assets/945210/15562254/0e22e1c8-22d4-11e6-8a75-e6ff9b14c90c.png) Nice work, by the way.

> Perhaps it's time for extending the tileset for panes? It appears so. Maybe we could actually add styles for the frame, like raised, flat and sunken, and extend their...

I'm thinking on a KW_Modal composite widget, that generates a widget covering the whole parent widget geometry (possibly using new tileset slot, allowing it to serve like a mask/shade), blocking...