Skip to content

Instantly share code, notes, and snippets.

View Fenshu28's full-sized avatar

Cristopher Alexis Zarate Valencia Fenshu28

View GitHub Profile
@Fenshu28
Fenshu28 / Drag.c
Created October 27, 2022 23:20
Drggable widget in GTK 3 with C
#include <gtk/gtk.h>
// Source:
// http://www.linuxforums.org/forum/programming-scripting/117713-gtk-moving-widget-mouse-post906490.html#post906490
// higher values make movement more performant
// lower values make movement smoother
const gint Sensitivity = 1;
const gint EvMask = GDK_BUTTON_PRESS_MASK | GDK_BUTTON1_MOTION_MASK;