From 52bfbbc2fac6dd7555a777d38c4f8d8227b41008 Mon Sep 17 00:00:00 2001 From: silverduner Date: Sat, 12 Feb 2022 14:46:12 -0500 Subject: expose position(int, int), x(), y(), w() and h() from Fl_File_Chooser (#80) * expose position(int, int), x(), y(), w() and h() from Fl_File_Chooser for positioning * exposed size() and resize() in Fl_File_Chooser. --- FL/Fl_File_Chooser.H | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'FL') diff --git a/FL/Fl_File_Chooser.H b/FL/Fl_File_Chooser.H index 57e0a97f9..d706a5a5f 100644 --- a/FL/Fl_File_Chooser.H +++ b/FL/Fl_File_Chooser.H @@ -164,6 +164,13 @@ public: const char *value(int f = 1); void value(const char *filename); int visible(); + void position(int x, int y); + int x() const; + int y() const; + int w() const; + int h() const; + void size(int w, int h); + void resize(int x, int y, int w, int h); /** [standard text may be customized at run-time] */ -- cgit v1.2.3