Mohammed Alyousef

Results 125 comments of Mohammed Alyousef

Hello You would need to place the Table inside a Scroll widget

Thank you for the report. This should be fixed in 0.5.21. It required resetting the current dir after codegen.

Hello Thank you for the kind words. For realtime drawing, it's better not having it be driven by app.wait() and messages. The event loop will be limited to event firing...

Most OSes likely throttle key presses the first time, then detect continued presses. If you try the following program: ```rust use fltk::{app::{self, event_key, Receiver, Sender}, enums::{Event, Key}, prelude::*, window::{self, Window}};...

fltk-rs uses MenuExt::add() to add menu itmes, as such you don't have access to them. The way to add callbacks to menu items is using the set_callback on a named...

I also remembered that the array has to be static and each submenu is sentinel terminated and the array itself sentinel terminated. It was a hassle to wrap in safe...

I'll try to make it embed the images binary content.

Hello Probably exposing the necessary functionality in Go would be ideal. It would allow others to also create their own themes/schemes, which can also be provided in external go packages.

Thank you for the detailed report. The only solution I can currently think of is to remove Soloud_destroy from the Drop impl of the Soloud object, and only keep Soloud_deinit...

Hell @ds2k5 Rust by default targets the 11.0 sdk, in which fltk tries to link UniformTypeIdentifiers framework. Your sdk seems to be targeting the 10.x macos sdk. To build your...