Matthias Melcher <mm@...> writes:
> Fluid was designed with Fluid. You can open the .fl file in the
> source tree
> and change the layout and font
> sizes. There is no function (yet) that scales the entire application.
>
> Since you need to run Fluid to create Fluid, you should use a copy of the
> program for editing. Also note that
> you have to generate the code from the fl files manually
> (menuitem 'create code').
>
I searched around and found the place where
I believe the font is being set here:
Function {make_code_panel()} {open selected
} {
Fl_Window code_panel {
label {Code Properties} open
xywh {359 171 546 201} type Double labelsize 11 hide resizable
code0 {o->size_range(200, 150);} modal
} {
Fl_Text_Editor code_input {
xywh {10 10 520 130}
box DOWN_BOX labelsize 11 textfont 4 textsize 15 resizable
code0 {o->when(FL_WHEN_ENTER_KEY_CHANGED|FL_WHEN_RELEASE);}
code1 {\#include "CodeEditor.h"}
class CodeEditor
}
I think it is this section since the title of the
input box where I am entering code is "Code Properties";
yet even though I changed it from "textsize 11" to
"textsize 15" here
(and did the write code and rebuilt fltk/fluid),
when I run it, the font is still the smaller font in that box.
Do you have any suggestions to help me to find out how to
make that font bigger?
Thanks, Dave
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk