diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-10-24 14:28:56 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-10-24 14:29:01 +0200 |
| commit | e8d218109e246b14df0cdf2d818e2575c8108e9f (patch) | |
| tree | 64c3f3ae1acd99f81fd54d6391591663981c9b23 /fluid/sourceview_panel.h | |
| parent | 5a8a28cbb5fd627dfd032b996cd83d0965d9ac5e (diff) | |
FLUID: Adds much more detailed CodeView
in preparation for "find" and "reveal"
Diffstat (limited to 'fluid/sourceview_panel.h')
| -rw-r--r-- | fluid/sourceview_panel.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fluid/sourceview_panel.h b/fluid/sourceview_panel.h index 88b37450c..52b3a9566 100644 --- a/fluid/sourceview_panel.h +++ b/fluid/sourceview_panel.h @@ -19,6 +19,7 @@ #ifndef sourceview_panel_h #define sourceview_panel_h #include <FL/Fl.H> +extern int sv_code_choice; void update_sourceview_position(); void update_sourceview_position_cb(class Fl_Tabs*, void*); void update_sourceview_cb(class Fl_Button*, void*); @@ -40,9 +41,12 @@ extern TextViewer *sv_project; #include <FL/Fl_Light_Button.H> extern Fl_Light_Button *sv_autorefresh; extern Fl_Light_Button *sv_autoposition; -extern void toggle_sourceview_b_cb(Fl_Button*, void*); +#include <FL/Fl_Choice.H> +extern Fl_Choice *sv_code_choice_w; #include <FL/Fl_Box.H> +extern void toggle_sourceview_b_cb(Fl_Button*, void*); Fl_Double_Window* make_sourceview(); +extern Fl_Menu_Item menu_sv_code_choice_w[]; #endif // |
