diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-03-07 18:54:03 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-03-07 18:54:24 +0100 |
| commit | c3571838cb10133aa913efd7523b9543a65459c1 (patch) | |
| tree | 6820fd1e11ce523d76f4f0580c3fa7d8072dcec8 /fluid/panels/codeview_panel.fl | |
| parent | 89f714cb4eac968c94925ee2e9629649033ef372 (diff) | |
Fluid: Rebuilding most of the widget directory.
One file per logical unit.
Namespaces.
Non-static data member initializers to never
get an uninitialized field again.
Diffstat (limited to 'fluid/panels/codeview_panel.fl')
| -rw-r--r-- | fluid/panels/codeview_panel.fl | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/fluid/panels/codeview_panel.fl b/fluid/panels/codeview_panel.fl index 54f0d790f..e2ae3e888 100644 --- a/fluid/panels/codeview_panel.fl +++ b/fluid/panels/codeview_panel.fl @@ -296,10 +296,10 @@ Function {make_codeview()} {open } { Fl_Text_Editor cv_source { xywh {10 40 500 410} textfont 4 textsize 11 resizable - code0 {\#include "widgets/CodeEditor.h"} + code0 {\#include "widgets/Code_Viewer.h"} code1 {o->linenumber_width(60);} code2 {o->linenumber_size(o->Fl_Text_Display::textsize());} - class CodeViewer + class {fld::widget::Code_Viewer} } } Fl_Group {} { @@ -308,10 +308,10 @@ Function {make_codeview()} {open } { Fl_Text_Editor cv_header { xywh {10 40 500 410} textfont 4 textsize 11 resizable - code0 {\#include "widgets/CodeEditor.h"} + code0 {\#include "widgets/Code_Viewer.h"} code1 {o->linenumber_width(60);} code2 {o->linenumber_size(o->Fl_Text_Display::textsize());} - class CodeViewer + class {fld::widget::Code_Viewer} } } Fl_Group {} { @@ -320,9 +320,10 @@ Function {make_codeview()} {open } { Fl_Text_Display cv_strings { xywh {10 40 500 410} textfont 4 textsize 11 resizable + code0 {\#include "widgets/Text_Viewer.h"} code1 {o->linenumber_width(60);} code2 {o->linenumber_size(o->Fl_Text_Display::textsize());} - class TextViewer + class {fld::widget::Text_Viewer} } } Fl_Group {} { @@ -331,9 +332,10 @@ Function {make_codeview()} {open } { Fl_Text_Display cv_project { xywh {10 40 500 410} textfont 4 textsize 11 resizable + code0 {\#include "widgets/Text_Viewer.h"} code1 {o->linenumber_width(60);} code2 {o->linenumber_size(o->Fl_Text_Display::textsize());} - class TextViewer + class {fld::widget::Text_Viewer} } } } |
