ErrorFlynn

Results 28 comments of ErrorFlynn

>The second is from nana::element::border_depressed in [element.cpp](https://github.com/cnjinhao/nana/blob/develop-1.8/source/gui/element.cpp#L261-L270) which replaces the textbox border with a blue border when the textbox is focused by clicking on it. That's the one I was...

>is there a good book for nana lib of good tutorial I've been working on a more detailed alternative for the documentation, that includes examples. It's far from complete, but...

I just found out that `paint::pixel_buffer` has a limited ability to rotate an image. It can only rotate counterclockwise, without clipping. ```` paint::image img {"path/to/image"}; paint::graphics g_img {img.size()}; img.paste(g_img, {0,...

The library supports keyboard accelerators, but that's not documented at the moment. Take a look at this old forum thread: http://nanapro.org/en-us/forum/index.php?u=/topic/335/ggdoes-the-library-provide-a-way-to-implement-hotkeys

>Also, unfortunately this doesn't show the shortcut keys next to the menu entry. I guess there's no way to do that yet? I'm not sure if that should be done...

>Since the div is vertical and I want the label to stack on top of my custom grid widget Only the outermost field has the `vert` attribute (which causes the...

The `group`'s internal `place` object has a hidden and undocumented field named `__nana_group_options__`, where all the checkboxes added with `group::add_option` get put. The grid field you are adding never receives...

Take a look at this page, there's an example at the bottom. https://errorflynn.github.io/nana-docs/ The site is a work in progress, but the listbox page is complete.

I have tested two of my small projects, and the example `https://github.com/qPCR4vir/nana-demo/tree/master/Examples/group.cpp` (on Windows, using the default scaling factor of 100%). My projects had an empty window (no widgets visible...

Thank you, the fix works well on Win8.1 with 100% scaling (I haven't tested other scaling factors on that OS). I have also tested on Win10 in a VM, and...