Made the 'align' flags somewhat more typesafe and the associated functions more self explenatory. The large commit results from a new run of Fluid of the Fluid .fl files.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6160 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2008-08-15 20:32:01 +00:00
parent 358af515f7
commit 3d6201a610
15 changed files with 224 additions and 226 deletions

View File

@ -472,47 +472,50 @@ extern Fl_Labeltype FL_EXPORT fl_define_FL_ENGRAVED_LABEL();
extern Fl_Labeltype FL_EXPORT fl_define_FL_EMBOSSED_LABEL();
#define FL_EMBOSSED_LABEL fl_define_FL_EMBOSSED_LABEL()
/** \name Alignment Flags */
/**@{*/
/** Flags to control the label alignment.
* This controls how the label is displayed next to or inside the widget.
* The default value is FL_ALIGN_CENTER for most widgets, which centers the label
* inside the widget.
*
* Flags can be or'd to achieve a combination of alignments.
* \see #FL_ALIGN_CENTER, etc.
*/
enum Fl_Align { // align() values
typedef unsigned Fl_Align;
/** Align the label horizontally in the middle. */
FL_ALIGN_CENTER = 0,
const Fl_Align FL_ALIGN_CENTER = (Fl_Align)0;
/** Align the label at the top of the widget. Inside labels appear below the top,
* outside labels are drawn on top of the widget. */
FL_ALIGN_TOP = 1,
const Fl_Align FL_ALIGN_TOP = (Fl_Align)1;
/** Align the label at the bottom of the widget. */
FL_ALIGN_BOTTOM = 2,
const Fl_Align FL_ALIGN_BOTTOM = (Fl_Align)2;
/** Align the label at the left of the widget. Inside labels appear left-justified
* starting at the left side of the widget, outside labels are right-justified and
* drawn to the left of the widget. */
FL_ALIGN_LEFT = 4,
const Fl_Align FL_ALIGN_LEFT = (Fl_Align)4;
/** Align the label to the right of the widget. */
FL_ALIGN_RIGHT = 8,
const Fl_Align FL_ALIGN_RIGHT = (Fl_Align)8;
/** Draw the label inside of the widget. */
FL_ALIGN_INSIDE = 16,
const Fl_Align FL_ALIGN_INSIDE = (Fl_Align)16;
/** If the label contains an image, draw the text on top of the image. */
FL_ALIGN_TEXT_OVER_IMAGE = 32,
const Fl_Align FL_ALIGN_TEXT_OVER_IMAGE = (Fl_Align)32;
/** If the label contains an image, draw the text below the image. */
FL_ALIGN_IMAGE_OVER_TEXT = 0,
const Fl_Align FL_ALIGN_IMAGE_OVER_TEXT = (Fl_Align)0;
/** All parts of the label that are lager than the widget will not be drawn . */
FL_ALIGN_CLIP = 64,
const Fl_Align FL_ALIGN_CLIP = (Fl_Align)64;
/** Wrap text that does not fit the width of the widget. */
FL_ALIGN_WRAP = 128,
FL_ALIGN_TOP_LEFT = FL_ALIGN_TOP | FL_ALIGN_LEFT,
FL_ALIGN_TOP_RIGHT = FL_ALIGN_TOP | FL_ALIGN_RIGHT,
FL_ALIGN_BOTTOM_LEFT = FL_ALIGN_BOTTOM | FL_ALIGN_LEFT,
FL_ALIGN_BOTTOM_RIGHT = FL_ALIGN_BOTTOM | FL_ALIGN_RIGHT,
FL_ALIGN_LEFT_TOP = FL_ALIGN_TOP_LEFT,
FL_ALIGN_RIGHT_TOP = FL_ALIGN_TOP_RIGHT,
FL_ALIGN_LEFT_BOTTOM = FL_ALIGN_BOTTOM_LEFT,
FL_ALIGN_RIGHT_BOTTOM = FL_ALIGN_BOTTOM_RIGHT,
FL_ALIGN_NOWRAP = 0 // for back compatability
};
const Fl_Align FL_ALIGN_WRAP = (Fl_Align)128;
const Fl_Align FL_ALIGN_TOP_LEFT = FL_ALIGN_TOP | FL_ALIGN_LEFT;
const Fl_Align FL_ALIGN_TOP_RIGHT = FL_ALIGN_TOP | FL_ALIGN_RIGHT;
const Fl_Align FL_ALIGN_BOTTOM_LEFT = FL_ALIGN_BOTTOM | FL_ALIGN_LEFT;
const Fl_Align FL_ALIGN_BOTTOM_RIGHT = FL_ALIGN_BOTTOM | FL_ALIGN_RIGHT;
const Fl_Align FL_ALIGN_LEFT_TOP = FL_ALIGN_TOP_LEFT;
const Fl_Align FL_ALIGN_RIGHT_TOP = FL_ALIGN_TOP_RIGHT;
const Fl_Align FL_ALIGN_LEFT_BOTTOM = FL_ALIGN_BOTTOM_LEFT;
const Fl_Align FL_ALIGN_RIGHT_BOTTOM = FL_ALIGN_BOTTOM_RIGHT;
const Fl_Align FL_ALIGN_NOWRAP = (Fl_Align)0; // for back compatability
/**@}*/
typedef int Fl_Font;
typedef int Fl_Font_Size;

View File

@ -103,7 +103,7 @@ class FL_EXPORT Fl_Widget {
uchar type_;
uchar damage_;
uchar box_;
uchar align_;
Fl_Align align_:8;
uchar when_;
const char *tooltip_;
@ -264,12 +264,12 @@ public:
/** Gets the label alignment.
* \return label alignment
* \see label(), align(uchar), Fl_Align
* \see label(), align(Fl_Align), Fl_Align
* \todo This function should not take ucahr as an argument. Apart from the fact that ucahr is too short
* with only 8 bits, it does not provide type safety (in which case we don't need to declare Fl_Type
* an enum to begin with).
*/
Fl_Align align() const {return (Fl_Align)align_;}
Fl_Align align() const {return align_;}
/** Sets the label alignment.
* This controls how the label is displayed next to or inside the widget.
@ -277,7 +277,7 @@ public:
* \param[in] alignment new label alignment
* \see align(), Fl_Align
*/
void align(uchar alignment) {align_ = alignment;}
void align(Fl_Align alignment) {align_ = alignment;}
/** Gets the box type for the widget.
* \return the current box type

View File

@ -1133,7 +1133,7 @@ static Fl_Menu_Item alignmenu[] = {
{0}};
void align_cb(Fl_Button* i, void *v) {
int b = int(long(i->user_data()));
Fl_Align b = Fl_Align(long(i->user_data()));
if (v == LOAD) {
if (current_widget->is_menu_item()) {i->deactivate(); return;} else i->activate();
i->value(current_widget->o->align() & b);
@ -1142,8 +1142,8 @@ void align_cb(Fl_Button* i, void *v) {
for (Fl_Type *o = Fl_Type::first; o; o = o->next) {
if (o->selected && o->is_widget()) {
Fl_Widget_Type* q = (Fl_Widget_Type*)o;
int x = q->o->align();
int y;
Fl_Align x = q->o->align();
Fl_Align y;
if (i->value()) {
y = x | b;
if (b == FL_ALIGN_LEFT || b == FL_ALIGN_TOP) {
@ -2260,10 +2260,10 @@ void Fl_Widget_Type::write_widget_code() {
}
if (o->align() != tplate->align() || subclass()) {
int i = o->align();
write_c("%s%s->align(%s", indent(), var,
write_c("%s%s->align(Fl_Align(%s", indent(), var,
item_name(alignmenu, i & ~FL_ALIGN_INSIDE));
if (i & FL_ALIGN_INSIDE) write_c("|FL_ALIGN_INSIDE");
write_c(");\n");
write_c("));\n");
}
// avoid the unsupported combination of flegs when user sets
// "when" to "FL_WHEN_NEVER", but keeps the "no change" set.

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "about_panel.h"
void show_help(const char *name);

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef about_panel_h
#define about_panel_h

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "alignment_panel.h"

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef alignment_panel_h
#define alignment_panel_h

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "function_panel.h"
#include <FL/Fl_Pixmap.H>

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef function_panel_h
#define function_panel_h

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0107
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "print_panel.h"
#include <stdio.h>
@ -244,272 +244,270 @@ static void cb_Use(Fl_Button*, void*) {
}
Fl_Double_Window* make_print_panel() {
Fl_Double_Window* w;
{ Fl_Double_Window* o = print_panel = new Fl_Double_Window(465, 235, "Print");
w = o;
{ Fl_Group* o = print_panel_controls = new Fl_Group(10, 10, 447, 216);
{ Fl_Choice* o = print_choice = new Fl_Choice(113, 10, 181, 25, "Printer:");
o->down_box(FL_BORDER_BOX);
o->labelfont(1);
o->callback((Fl_Callback*)cb_print_choice);
o->when(FL_WHEN_CHANGED);
}
{ Fl_Button* o = print_properties = new Fl_Button(294, 10, 105, 25, "Properties...");
o->callback((Fl_Callback*)cb_print_properties);
}
{ Fl_Box* o = print_status = new Fl_Box(111, 41, 288, 17, "printer/job status");
o->align(68|FL_ALIGN_INSIDE);
}
{ print_panel = new Fl_Double_Window(465, 235, "Print");
{ print_panel_controls = new Fl_Group(10, 10, 447, 216);
{ print_choice = new Fl_Choice(113, 10, 181, 25, "Printer:");
print_choice->down_box(FL_BORDER_BOX);
print_choice->labelfont(1);
print_choice->callback((Fl_Callback*)cb_print_choice);
print_choice->when(FL_WHEN_CHANGED);
} // Fl_Choice* print_choice
{ print_properties = new Fl_Button(294, 10, 105, 25, "Properties...");
print_properties->callback((Fl_Callback*)cb_print_properties);
} // Fl_Button* print_properties
{ print_status = new Fl_Box(111, 41, 288, 17, "printer/job status");
print_status->align(68|FL_ALIGN_INSIDE);
} // Fl_Box* print_status
{ Fl_Group* o = new Fl_Group(10, 86, 227, 105, "Print Range");
o->box(FL_THIN_DOWN_BOX);
o->labelfont(1);
o->align(FL_ALIGN_TOP_LEFT);
{ Fl_Round_Button* o = print_all = new Fl_Round_Button(20, 96, 38, 25, "All");
o->type(102);
o->down_box(FL_ROUND_DOWN_BOX);
o->value(1);
o->callback((Fl_Callback*)cb_print_all);
}
{ Fl_Round_Button* o = print_pages = new Fl_Round_Button(20, 126, 64, 25, "Pages");
o->type(102);
o->down_box(FL_ROUND_DOWN_BOX);
o->callback((Fl_Callback*)cb_print_pages);
}
{ Fl_Round_Button* o = print_selection = new Fl_Round_Button(20, 156, 82, 25, "Selection");
o->type(102);
o->down_box(FL_ROUND_DOWN_BOX);
o->callback((Fl_Callback*)cb_print_selection);
}
{ Fl_Input* o = print_from = new Fl_Input(136, 126, 28, 25, "From:");
o->type(2);
o->textfont(4);
o->deactivate();
}
{ Fl_Input* o = print_to = new Fl_Input(199, 126, 28, 25, "To:");
o->type(2);
o->textfont(4);
o->deactivate();
}
{ print_all = new Fl_Round_Button(20, 96, 38, 25, "All");
print_all->type(102);
print_all->down_box(FL_ROUND_DOWN_BOX);
print_all->value(1);
print_all->callback((Fl_Callback*)cb_print_all);
} // Fl_Round_Button* print_all
{ print_pages = new Fl_Round_Button(20, 126, 64, 25, "Pages");
print_pages->type(102);
print_pages->down_box(FL_ROUND_DOWN_BOX);
print_pages->callback((Fl_Callback*)cb_print_pages);
} // Fl_Round_Button* print_pages
{ print_selection = new Fl_Round_Button(20, 156, 82, 25, "Selection");
print_selection->type(102);
print_selection->down_box(FL_ROUND_DOWN_BOX);
print_selection->callback((Fl_Callback*)cb_print_selection);
} // Fl_Round_Button* print_selection
{ print_from = new Fl_Input(136, 126, 28, 25, "From:");
print_from->type(2);
print_from->textfont(4);
print_from->deactivate();
} // Fl_Input* print_from
{ print_to = new Fl_Input(199, 126, 28, 25, "To:");
print_to->type(2);
print_to->textfont(4);
print_to->deactivate();
} // Fl_Input* print_to
o->end();
}
} // Fl_Group* o
{ Fl_Group* o = new Fl_Group(247, 86, 210, 105, "Copies");
o->box(FL_THIN_DOWN_BOX);
o->labelfont(1);
o->align(FL_ALIGN_TOP_LEFT);
{ Fl_Spinner* o = print_copies = new Fl_Spinner(321, 96, 45, 25, "# Copies:");
o->callback((Fl_Callback*)cb_print_copies);
o->when(FL_WHEN_CHANGED);
}
{ Fl_Check_Button* o = print_collate_button = new Fl_Check_Button(376, 96, 64, 25, "Collate");
o->down_box(FL_DOWN_BOX);
o->callback((Fl_Callback*)cb_print_collate_button);
o->when(FL_WHEN_CHANGED);
o->deactivate();
}
{ Fl_Group* o = print_collate_group[0] = new Fl_Group(257, 131, 191, 50);
o->deactivate();
{ print_copies = new Fl_Spinner(321, 96, 45, 25, "# Copies:");
print_copies->value(1);
print_copies->callback((Fl_Callback*)cb_print_copies);
print_copies->when(FL_WHEN_CHANGED);
} // Fl_Spinner* print_copies
{ print_collate_button = new Fl_Check_Button(376, 96, 64, 25, "Collate");
print_collate_button->down_box(FL_DOWN_BOX);
print_collate_button->callback((Fl_Callback*)cb_print_collate_button);
print_collate_button->when(FL_WHEN_CHANGED);
print_collate_button->deactivate();
} // Fl_Check_Button* print_collate_button
{ print_collate_group[0] = new Fl_Group(257, 131, 191, 50);
print_collate_group[0]->deactivate();
{ Fl_Box* o = new Fl_Box(287, 141, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(272, 136, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(257, 131, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(352, 141, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(337, 136, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(322, 131, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(417, 141, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(402, 136, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(387, 131, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
o->deactivate();
}
o->end();
}
{ Fl_Group* o = print_collate_group[1] = new Fl_Group(257, 131, 191, 50);
o->hide();
o->deactivate();
} // Fl_Box* o
print_collate_group[0]->end();
} // Fl_Group* print_collate_group[0]
{ print_collate_group[1] = new Fl_Group(257, 131, 191, 50);
print_collate_group[1]->hide();
print_collate_group[1]->deactivate();
{ Fl_Box* o = new Fl_Box(287, 141, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(272, 136, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(257, 131, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(352, 141, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(337, 136, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(322, 131, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(417, 141, 30, 40, "3");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(402, 136, 30, 40, "2");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(387, 131, 30, 40, "1");
o->box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->labelsize(11);
o->align(FL_ALIGN_BOTTOM_RIGHT|FL_ALIGN_INSIDE);
}
o->end();
}
} // Fl_Box* o
print_collate_group[1]->end();
} // Fl_Group* print_collate_group[1]
o->end();
}
} // Fl_Group* o
{ Fl_Return_Button* o = new Fl_Return_Button(309, 201, 70, 25, "Print");
o->callback((Fl_Callback*)print_cb);
}
} // Fl_Return_Button* o
{ Fl_Button* o = new Fl_Button(389, 201, 68, 25, "Cancel");
o->callback((Fl_Callback*)cb_Cancel);
}
o->end();
}
{ Fl_Progress* o = print_progress = new Fl_Progress(10, 203, 289, 21);
o->selection_color((Fl_Color)4);
o->hide();
}
o->set_modal();
o->end();
}
{ Fl_Double_Window* o = print_properties_panel = new Fl_Double_Window(290, 130, "Printer Properties");
w = o;
o->callback((Fl_Callback*)cb_print_properties_panel);
{ Fl_Choice* o = print_page_size = new Fl_Choice(110, 10, 80, 25, "Page Size:");
o->down_box(FL_BORDER_BOX);
o->labelfont(1);
o->menu(menu_print_page_size);
}
} // Fl_Button* o
print_panel_controls->end();
} // Fl_Group* print_panel_controls
{ print_progress = new Fl_Progress(10, 203, 289, 21);
print_progress->selection_color((Fl_Color)4);
print_progress->hide();
} // Fl_Progress* print_progress
print_panel->set_modal();
print_panel->end();
} // Fl_Double_Window* print_panel
{ print_properties_panel = new Fl_Double_Window(290, 130, "Printer Properties");
print_properties_panel->callback((Fl_Callback*)cb_print_properties_panel);
{ print_page_size = new Fl_Choice(110, 10, 80, 25, "Page Size:");
print_page_size->down_box(FL_BORDER_BOX);
print_page_size->labelfont(1);
print_page_size->menu(menu_print_page_size);
} // Fl_Choice* print_page_size
{ Fl_Group* o = new Fl_Group(110, 45, 170, 40, "Output Mode:");
o->labelfont(1);
o->align(FL_ALIGN_LEFT);
{ Fl_Button* o = print_output_mode[0] = new Fl_Button(110, 45, 30, 40);
o->type(102);
o->box(FL_BORDER_BOX);
o->down_box(FL_BORDER_BOX);
o->value(1);
o->color(FL_BACKGROUND2_COLOR);
o->selection_color(FL_FOREGROUND_COLOR);
o->image(image_print_color);
}
{ Fl_Button* o = print_output_mode[1] = new Fl_Button(150, 50, 40, 30);
o->type(102);
o->box(FL_BORDER_BOX);
o->down_box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->selection_color(FL_FOREGROUND_COLOR);
o->image(image_print_color);
}
{ Fl_Button* o = print_output_mode[2] = new Fl_Button(200, 45, 30, 40);
o->type(102);
o->box(FL_BORDER_BOX);
o->down_box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->selection_color(FL_FOREGROUND_COLOR);
o->image(image_print_gray);
}
{ Fl_Button* o = print_output_mode[3] = new Fl_Button(240, 50, 40, 30);
o->type(102);
o->box(FL_BORDER_BOX);
o->down_box(FL_BORDER_BOX);
o->color(FL_BACKGROUND2_COLOR);
o->selection_color(FL_FOREGROUND_COLOR);
o->image(image_print_gray);
}
{ print_output_mode[0] = new Fl_Button(110, 45, 30, 40);
print_output_mode[0]->type(102);
print_output_mode[0]->box(FL_BORDER_BOX);
print_output_mode[0]->down_box(FL_BORDER_BOX);
print_output_mode[0]->value(1);
print_output_mode[0]->color(FL_BACKGROUND2_COLOR);
print_output_mode[0]->selection_color(FL_FOREGROUND_COLOR);
print_output_mode[0]->image(image_print_color);
} // Fl_Button* print_output_mode[0]
{ print_output_mode[1] = new Fl_Button(150, 50, 40, 30);
print_output_mode[1]->type(102);
print_output_mode[1]->box(FL_BORDER_BOX);
print_output_mode[1]->down_box(FL_BORDER_BOX);
print_output_mode[1]->color(FL_BACKGROUND2_COLOR);
print_output_mode[1]->selection_color(FL_FOREGROUND_COLOR);
print_output_mode[1]->image(image_print_color);
} // Fl_Button* print_output_mode[1]
{ print_output_mode[2] = new Fl_Button(200, 45, 30, 40);
print_output_mode[2]->type(102);
print_output_mode[2]->box(FL_BORDER_BOX);
print_output_mode[2]->down_box(FL_BORDER_BOX);
print_output_mode[2]->color(FL_BACKGROUND2_COLOR);
print_output_mode[2]->selection_color(FL_FOREGROUND_COLOR);
print_output_mode[2]->image(image_print_gray);
} // Fl_Button* print_output_mode[2]
{ print_output_mode[3] = new Fl_Button(240, 50, 40, 30);
print_output_mode[3]->type(102);
print_output_mode[3]->box(FL_BORDER_BOX);
print_output_mode[3]->down_box(FL_BORDER_BOX);
print_output_mode[3]->color(FL_BACKGROUND2_COLOR);
print_output_mode[3]->selection_color(FL_FOREGROUND_COLOR);
print_output_mode[3]->image(image_print_gray);
} // Fl_Button* print_output_mode[3]
o->end();
}
} // Fl_Group* o
{ Fl_Return_Button* o = new Fl_Return_Button(123, 95, 79, 25, "Save");
o->callback((Fl_Callback*)cb_Save);
}
} // Fl_Return_Button* o
{ Fl_Button* o = new Fl_Button(212, 95, 68, 25, "Cancel");
o->callback((Fl_Callback*)cb_Cancel1);
}
} // Fl_Button* o
{ Fl_Button* o = new Fl_Button(60, 95, 53, 25, "Use");
o->callback((Fl_Callback*)cb_Use);
}
o->set_modal();
o->end();
}
return w;
} // Fl_Button* o
print_properties_panel->set_modal();
print_properties_panel->end();
} // Fl_Double_Window* print_properties_panel
return print_properties_panel;
}
void print_cb(Fl_Return_Button *, void *);
void print_cb(Fl_Return_Button *, void *);
void print_load() {
FILE *lpstat;

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0107
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef print_panel_h
#define print_panel_h
@ -61,7 +61,7 @@ extern Fl_Choice *print_page_size;
extern Fl_Button *print_output_mode[4];
Fl_Double_Window* make_print_panel();
extern Fl_Menu_Item menu_print_page_size[];
extern void print_cb(Fl_Return_Button *, void *);
extern void print_cb(Fl_Return_Button *, void *);
void print_load();
void print_update_status();
#endif

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0107
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "template_panel.h"
#include <stdio.h>
@ -142,52 +142,50 @@ template_panel->hide();
}
Fl_Double_Window* make_template_panel() {
Fl_Double_Window* w;
{ Fl_Double_Window* o = template_panel = new Fl_Double_Window(460, 355, "New/Save Template");
w = o;
o->callback((Fl_Callback*)cb_template_panel);
{ Fl_Browser* o = template_browser = new Fl_Browser(10, 28, 180, 250, "Available Templates:");
o->type(2);
o->labelfont(1);
o->callback((Fl_Callback*)cb_template_browser);
o->align(FL_ALIGN_TOP_LEFT);
o->when(3);
}
{ Fl_Box* o = template_preview = new Fl_Box(200, 28, 250, 250);
o->box(FL_THIN_DOWN_BOX);
o->align(69|FL_ALIGN_INSIDE);
Fl_Group::current()->resizable(o);
}
{ Fl_Input* o = template_name = new Fl_Input(124, 288, 326, 25, "Template Name:");
o->labelfont(1);
o->textfont(4);
o->callback((Fl_Callback*)cb_template_name);
o->when(3);
}
{ Fl_Input* o = template_instance = new Fl_Input(124, 288, 326, 25, "Instance Name:");
o->labelfont(1);
o->textfont(4);
o->hide();
}
{ template_panel = new Fl_Double_Window(460, 355, "New/Save Template");
template_panel->callback((Fl_Callback*)cb_template_panel);
{ template_browser = new Fl_Browser(10, 28, 180, 250, "Available Templates:");
template_browser->type(2);
template_browser->labelfont(1);
template_browser->callback((Fl_Callback*)cb_template_browser);
template_browser->align(FL_ALIGN_TOP_LEFT);
template_browser->when(3);
} // Fl_Browser* template_browser
{ template_preview = new Fl_Box(200, 28, 250, 250);
template_preview->box(FL_THIN_DOWN_BOX);
template_preview->align(69|FL_ALIGN_INSIDE);
Fl_Group::current()->resizable(template_preview);
} // Fl_Box* template_preview
{ template_name = new Fl_Input(124, 288, 326, 25, "Template Name:");
template_name->labelfont(1);
template_name->textfont(4);
template_name->callback((Fl_Callback*)cb_template_name);
template_name->when(3);
} // Fl_Input* template_name
{ template_instance = new Fl_Input(124, 288, 326, 25, "Instance Name:");
template_instance->labelfont(1);
template_instance->textfont(4);
template_instance->hide();
} // Fl_Input* template_instance
{ Fl_Group* o = new Fl_Group(10, 323, 440, 25);
{ Fl_Button* o = template_delete = new Fl_Button(10, 323, 133, 25, "Delete Template");
o->callback((Fl_Callback*)template_delete_cb);
}
{ template_delete = new Fl_Button(10, 323, 133, 25, "Delete Template");
template_delete->callback((Fl_Callback*)template_delete_cb);
} // Fl_Button* template_delete
{ Fl_Box* o = new Fl_Box(153, 323, 126, 25);
Fl_Group::current()->resizable(o);
}
} // Fl_Box* o
{ Fl_Button* o = new Fl_Button(289, 323, 72, 25, "Cancel");
o->callback((Fl_Callback*)cb_Cancel);
}
{ Fl_Return_Button* o = template_submit = new Fl_Return_Button(371, 323, 79, 25, "Save");
o->callback((Fl_Callback*)cb_template_submit);
}
} // Fl_Button* o
{ template_submit = new Fl_Return_Button(371, 323, 79, 25, "Save");
template_submit->callback((Fl_Callback*)cb_template_submit);
} // Fl_Return_Button* template_submit
o->end();
}
o->set_modal();
o->end();
}
return w;
} // Fl_Group* o
template_panel->set_modal();
template_panel->end();
} // Fl_Double_Window* template_panel
return template_panel;
}
void template_clear() {

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0107
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef template_panel_h
#define template_panel_h
@ -41,7 +41,6 @@ extern Fl_Input *template_name;
extern Fl_Input *template_instance;
#include <FL/Fl_Group.H>
#include <FL/Fl_Button.H>
extern void template_delete_cb(Fl_Button*, void*);
extern Fl_Button *template_delete;
#include <FL/Fl_Return_Button.H>
extern Fl_Return_Button *template_submit;

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#include "widget_panel.h"

View File

@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0108
// generated by Fast Light User Interface Designer (fluid) version 1.0300
#ifndef widget_panel_h
#define widget_panel_h