1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/*
*
* This file is part of XForms.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with XForms; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*
*/
/*
* $Id: fd_initforms.c,v 1.0 2002/05/08 05:27:39 zhao Release $
*
*.
* This file is part of XForms package
* Copyright (c) 1996-2002 T.C. Zhao and Mark Overmars
* All rights reserved.
*.
* create and initialize all control panels
*
*/
#include "fd_main.h"
#include "ui_attrib.h" /* from directory fd */
#include "ui_theforms.h" /* from directory fd */
FD_control *fd_control;
FD_test *fd_test;
FD_align *fd_align;
FD_helpform *fd_help;
FD_attrib *fd_attrib;
FD_generic_attrib *fd_generic_attrib;
FD_nullattrib *fd_nullattrib;
extern int fd_helpfontsize;
extern int fd_align_fontsize, fd_type_fontsize;
static void init_helpform(void);
static void init_controlform(void);
static void init_attribform(void);
static void init_testform(void);
void
create_the_forms(void)
{
static int init;
if (init)
{
fprintf(stderr, "fd forms already initialized\n");
return;
}
init = 1;
fd_control = create_form_control();
init_controlform(); /* GUI */
control_init(fd_control); /* menu */
fd_attrib = create_form_attrib();
fd_generic_attrib = create_form_generic_attrib();
fd_nullattrib = create_form_nullattrib();
init_attribform();
fd_test = create_form_test();
init_testform();
fd_align = create_form_align();
init_align();
/* help form */
fd_help = create_form_helpform();
init_helpform();
}
/* conditionally modify the basic color of attribute form */
void
modify_attrib_basic_color(FL_COLOR col1, FL_COLOR col2)
{
fl_set_object_color(fd_generic_attrib->text[0], col1, col2);
fl_set_object_color(fd_generic_attrib->text[1], col1, col2);
fl_set_object_color(fd_generic_attrib->text[2], col1, col2);
fl_set_object_color(fd_generic_attrib->text[3], col1, col2);
fl_set_object_color(fd_generic_attrib->background, col1, col2);
}
void
clearlog_cb(FL_OBJECT * ob, long data)
{
fl_clear_browser(fd_test->browser);
}
static void
init_helpform(void)
{
fl_adjust_form_size(fd_help->helpform);
fl_set_form_position(fd_help->helpform, -1, 1);
/* load one help */
fl_set_button(fd_help->vbutt, 1);
fl_call_object_callback(fd_help->vbutt);
}
static void
init_controlform(void)
{
/* sort of auto-resizing depending on the font size */
if (fl_cntl.buttonFontSize > FL_DEFAULT_SIZE)
{
fd_align_fontsize = FL_SMALL_SIZE;
fd_type_fontsize = FL_SMALL_SIZE;
}
if (fd_control->objectbrowser->lsize > FL_NORMAL_SIZE)
{
fl_set_object_lsize(fd_control->objectbrowser, FL_NORMAL_SIZE);
fl_set_object_lsize(fd_control->formbrowser, FL_NORMAL_SIZE);
fl_set_object_lsize(fd_control->groupbrowser, FL_NORMAL_SIZE);
}
fl_fit_object_label(fd_control->renameform, 1, 0);
fl_fit_object_label(fd_control->objectmenu, -3, 0);
}
static void
init_attribform(void)
{
int a = 1;
if (fl_get_visual_depth() <= 2)
modify_attrib_basic_color(FL_WHITE, FL_WHITE);
fl_adjust_form_size(fd_attrib->attrib);
fl_fit_object_label(fd_attrib->readyobj, 12, 1);
fd_attrib->attrib->y = 5;
fl_get_resource("autoApply", "AutoApply", FL_BOOL, "1", &a, 0);
fl_set_button(fd_attrib->autoapplyobj, a);
fl_call_object_callback(fd_attrib->autoapplyobj);
fl_set_tabfolder_autofit(fd_attrib->attrib_folder, FL_ENLARGE_ONLY);
fl_addto_tabfolder(fd_attrib->attrib_folder, " Generic ",
fd_generic_attrib->generic_attrib);
fl_addto_tabfolder(fd_attrib->attrib_folder, " Spec ",
fd_nullattrib->nullattrib);
}
static void
init_testform(void)
{
fl_fit_object_label(fd_test->stoptesting, 2, 1);
fl_set_object_dblbuffer(fd_test->browser, 1);
}
#include "ui_attrib.c"
#include "ui_theforms.c"
|