Xeverous

Results 189 comments of Xeverous

> I am an artist and I want Elements to have superiority in aesthetics and design. I have a keen eye on such things and I dislike faking things I...

How about a theme editor example? I noticed some colors don't play nicely (eg black background because a lot of code uses `color.level()` and anything multiplied by 0 is 0)...

Nice, it needs only some missing screens

I have found multiple definitions of `path_type` accross the repository: ``` $ grep -rn "using path_type" include/ source/ include/nana/gui/filebox.hpp:31: using path_type = std::filesystem::path; include/nana/gui/filebox.hpp:104: using path_type = std::filesystem::path; include/nana/gui/widgets/skeletons/textbase.hpp:43: using...

> what compiler are you using? GCC 8.3.1 with MCF thread model on Windows 10. > Not that simple, std::error_code is there already, no alias posible. I don't understand what...

> Nana support only std::filesystem, and (ab)use other lib only to implement it. When every major compiler will have proper c++17 any mention of Boost will be deleted Ok, this...

> Did you found any dereference of those pointers? some `basic_window` (`core_window_t` is an alias of `basic_window`) dereferences: https://github.com/cnjinhao/nana/blob/ffa170b5f560dbf899030bdeb0e539aa95b03649/source/gui/detail/window_manager.cpp#L555-L562 https://github.com/cnjinhao/nana/blob/ffa170b5f560dbf899030bdeb0e539aa95b03649/source/gui/detail/window_manager.cpp#L503-L518 > I thought it is a "handler", which is something...

> The win32 API is an old c API which (ab)use extensively conversion of pointers to void*. Definitely agree. But void pointers are excluded from strict aliasing, therefore using `void*`...

> Could you show how exactly are you building and linking nana and the executables? Using CMake 3.14 with GCC 8.3 with MCF thread model compile flags: ` -DNANA_ENABLE_PNG -DNANA_IGNORE_CONF...

> Surely there are errors in nana, but in relation to reinterpret_cast: it was invented to deal with the low level code yes but with restrictions... > the type of...