diff options
| author | silverduner <silverduner@gmail.com> | 2022-02-12 14:46:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-12 20:46:12 +0100 |
| commit | 52bfbbc2fac6dd7555a777d38c4f8d8227b41008 (patch) | |
| tree | c34d3f8015d2bf4dbdd20fd4ddf719bfa5ed8795 /FL/Fl_File_Chooser.H | |
| parent | 62daf00a9ebc66f04037e79bd38555964887622e (diff) | |
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.
Diffstat (limited to 'FL/Fl_File_Chooser.H')
| -rw-r--r-- | FL/Fl_File_Chooser.H | 7 |
1 files changed, 7 insertions, 0 deletions
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] */ |
