DeepDev
DeepDev
Sounds good. Let me get a plan / design doc together and I'll shoot it to you.
YESSSSSSSSSSSSSSSSSSSSSSSSSSS That looks GOOOOOOOD
The window is screen coordinate [0,0] e.g. top left window coord is at screen coord 0,0? I'll look into a fix... Does the NApp window adapt when the taskbar is...
This looks closer: https://stackoverflow.com/questions/12331486/finding-out-the-size-of-taskbar-in-linux-c-c-gtkmm-other void done(GtkWidget *widget, void *payload) { GdkScreen *screen = gtk_widget_get_screen(widget); screen_width = gdk_screen_get_width(screen); screen_height = gdk_screen_get_height(screen); gtk_window_get_position((GtkWindow *)widget, &window_left, &window_top); gtk_window_get_size((GtkWindow *)widget, &window_width, &window_height); gtk_widget_destroy(widget); gtk_main_quit();...
Nice! I looked at the NApp code a little today and read some on how window positioning works with GTK (my background is Win32, so I'm learning as I go...
Following this... I have a 3D app built on ThreeJS and it runs both as a web and desktop app. I have built POC to run the app on a...