summaryrefslogtreecommitdiff
path: root/fluid/fluid.h
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-08-29 02:20:45 +0200
committerMatthias Melcher <github@matthiasm.com>2023-08-29 02:20:50 +0200
commit814d642e5da5e1be5dbfb609f43b25313487aa11 (patch)
tree0e90090dada6aaeab56c8202365c4c768eff17d8 /fluid/fluid.h
parent33353550d9a7c274a338ea40f77a76e5298c7069 (diff)
FLUID: separate SourceView panel into its own file
hereby removing almost 200 lines of unrelated code form fluid.cxx and making the location of the panel code more obvious. Needs a make depend on Linux.
Diffstat (limited to 'fluid/fluid.h')
-rw-r--r--fluid/fluid.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fluid/fluid.h b/fluid/fluid.h
index ac6d303bd..e52828fa7 100644
--- a/fluid/fluid.h
+++ b/fluid/fluid.h
@@ -134,6 +134,8 @@ extern void write_strings_cb(Fl_Widget *, void *);
extern void align_widget_cb(Fl_Widget *, long);
extern void toggle_widgetbin_cb(Fl_Widget *, void *);
+extern char position_window(Fl_Window *w, const char *prefsName, int Visible, int X, int Y, int W=0, int H=0);
+
inline int fd_min(int a, int b) { return (a < b ? a : b); }
inline int fd_max(int a, int b) { return (a > b ? a : b); }
inline int fd_min(int a, int b, int c) { return fd_min(a, fd_min(b, c)); }