]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/geometry.h
Pass coordinates relative to the receiving widget's geometry
[libs/gltk.git] / source / geometry.h
index 6fa8e7f1287ffd1f39942979f1f046889bc97ecc..08d660eeb05a4b9507968a6f8845924e524f70e1 100644 (file)
@@ -24,6 +24,7 @@ struct Geometry
        Geometry(): x(0), y(0), w(1), h(1) { }
        Geometry(int x_, int y_, unsigned w_, unsigned h_): x(x_), y(y_), w(w_), h(h_) { }
        bool is_inside(int, int) const;
+       bool is_inside_relative(int, int) const;
 };