1999-01-07 19:58:26 +03:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1999-01-07 19:58:26 +03:00
|
|
|
//
|
|
|
|
// Main demo program for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2007-02-20 21:43:10 +03:00
|
|
|
// Copyright 1998-2007 by Bill Spitzak and others.
|
1999-01-07 19:58:26 +03:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1999-01-07 19:58:26 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2000-04-04 21:57:05 +04:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
1999-01-07 19:58:26 +03:00
|
|
|
# include <direct.h>
|
2007-02-20 21:43:10 +03:00
|
|
|
# ifndef __WATCOMC__
|
2005-11-27 17:45:48 +03:00
|
|
|
// Visual C++ 2005 incorrectly displays a warning about the use of POSIX APIs
|
|
|
|
// on Windows, which is supposed to be POSIX compliant...
|
2007-02-20 20:02:41 +03:00
|
|
|
# define chdir _chdir
|
|
|
|
# define putenv _putenv
|
|
|
|
# endif // !__WATCOMC__
|
1999-01-07 19:58:26 +03:00
|
|
|
#else
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Box.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
2006-10-11 07:12:15 +04:00
|
|
|
#include <FL/Fl_Choice.H>
|
1999-01-07 19:58:26 +03:00
|
|
|
#include <FL/filename.H>
|
|
|
|
#include <FL/x.H>
|
|
|
|
|
|
|
|
/* The form description */
|
|
|
|
|
|
|
|
void doexit(Fl_Widget *, void *);
|
|
|
|
void doback(Fl_Widget *, void *);
|
|
|
|
void dobut(Fl_Widget *, long);
|
2006-10-11 07:12:15 +04:00
|
|
|
void doscheme(Fl_Choice *c, void *) {
|
|
|
|
Fl::scheme(c->text(c->value()));
|
|
|
|
}
|
1999-01-07 19:58:26 +03:00
|
|
|
|
|
|
|
Fl_Window *form;
|
|
|
|
Fl_Button *but[9];
|
|
|
|
|
|
|
|
void create_the_forms() {
|
|
|
|
Fl_Widget *obj;
|
2006-10-11 07:12:15 +04:00
|
|
|
form = new Fl_Window(350, 440);
|
|
|
|
obj = new Fl_Box(FL_FRAME_BOX,10,385,330,40,"FLTK Demonstration");
|
1999-01-07 19:58:26 +03:00
|
|
|
obj->color(FL_GRAY-4);
|
|
|
|
obj->labelsize(24);
|
|
|
|
obj->labelfont(FL_BOLD);
|
|
|
|
obj->labeltype(FL_ENGRAVED_LABEL);
|
2006-10-11 07:12:15 +04:00
|
|
|
obj = new Fl_Box(FL_FRAME_BOX,10,45,330,330,0);
|
1999-01-07 19:58:26 +03:00
|
|
|
obj->color(FL_GRAY-8);
|
2006-10-11 07:12:15 +04:00
|
|
|
obj = new Fl_Button(280,10,60,25,"Exit");
|
1999-01-07 19:58:26 +03:00
|
|
|
obj->callback(doexit);
|
2006-10-11 07:12:15 +04:00
|
|
|
Fl_Choice *choice = new Fl_Choice(75, 10, 100, 25, "Scheme:");
|
|
|
|
choice->labelfont(FL_HELVETICA_BOLD);
|
|
|
|
choice->add("none");
|
|
|
|
choice->add("gtk+");
|
|
|
|
choice->add("plastic");
|
|
|
|
choice->callback((Fl_Callback *)doscheme);
|
|
|
|
Fl::scheme(NULL);
|
|
|
|
if (!Fl::scheme()) choice->value(0);
|
|
|
|
else if (!strcmp(Fl::scheme(), "gtk+")) choice->value(1);
|
|
|
|
else choice->value(2);
|
|
|
|
obj = new Fl_Button(10,45,330,380); obj->type(FL_HIDDEN_BUTTON);
|
1999-01-07 19:58:26 +03:00
|
|
|
obj->callback(doback);
|
2006-10-11 07:12:15 +04:00
|
|
|
obj = but[0] = new Fl_Button(30,265,90,90);
|
|
|
|
obj = but[1] = new Fl_Button(130,265,90,90);
|
|
|
|
obj = but[2] = new Fl_Button(230,265,90,90);
|
|
|
|
obj = but[5] = new Fl_Button(230,165,90,90);
|
|
|
|
obj = but[4] = new Fl_Button(130,165,90,90);
|
|
|
|
obj = but[3] = new Fl_Button(30,165,90,90);
|
|
|
|
obj = but[6] = new Fl_Button(30,65,90,90);
|
|
|
|
obj = but[7] = new Fl_Button(130,65,90,90);
|
|
|
|
obj = but[8] = new Fl_Button(230,65,90,90);
|
1999-01-07 19:58:26 +03:00
|
|
|
for (int i=0; i<9; i++) {
|
|
|
|
but[i]->align(FL_ALIGN_WRAP);
|
|
|
|
but[i]->callback(dobut, i);
|
|
|
|
}
|
|
|
|
form->forms_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Maintaining and building up the menus. */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char name[64];
|
|
|
|
int numb;
|
|
|
|
char iname[9][64];
|
|
|
|
char icommand[9][64];
|
|
|
|
} MENU;
|
|
|
|
|
|
|
|
#define MAXMENU 32
|
|
|
|
|
|
|
|
MENU menus[MAXMENU];
|
|
|
|
int mennumb = 0;
|
|
|
|
|
2000-08-20 08:35:17 +04:00
|
|
|
int find_menu(const char* nnn)
|
1999-01-07 19:58:26 +03:00
|
|
|
/* Returns the number of a given menu name. */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0; i<mennumb; i++)
|
|
|
|
if (strcmp(menus[i].name,nnn) == 0) return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-08-20 08:35:17 +04:00
|
|
|
void create_menu(const char* nnn)
|
1999-01-07 19:58:26 +03:00
|
|
|
/* Creates a new menu with name nnn */
|
|
|
|
{
|
|
|
|
if (mennumb == MAXMENU -1) return;
|
|
|
|
strcpy(menus[mennumb].name,nnn);
|
|
|
|
menus[mennumb].numb = 0;
|
|
|
|
mennumb++;
|
|
|
|
}
|
|
|
|
|
2000-08-20 08:35:17 +04:00
|
|
|
void addto_menu(const char* men, const char* item, const char* comm)
|
1999-01-07 19:58:26 +03:00
|
|
|
/* Adds an item to a menu */
|
|
|
|
{
|
|
|
|
int n = find_menu(men);
|
|
|
|
if (n<0) { create_menu(men); n = find_menu(men); }
|
|
|
|
if (menus[n].numb == 9) return;
|
|
|
|
strcpy(menus[n].iname[menus[n].numb],item);
|
|
|
|
strcpy(menus[n].icommand[menus[n].numb],comm);
|
|
|
|
menus[n].numb++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Button to Item conversion and back. */
|
|
|
|
|
|
|
|
int b2n[][9] = {
|
|
|
|
{ -1, -1, -1, -1, 0, -1, -1, -1, -1},
|
|
|
|
{ -1, -1, -1, 0, -1, 1, -1, -1, -1},
|
|
|
|
{ 0, -1, -1, -1, 1, -1, -1, -1, 2},
|
|
|
|
{ 0, -1, 1, -1, -1, -1, 2, -1, 3},
|
|
|
|
{ 0, -1, 1, -1, 2, -1, 3, -1, 4},
|
|
|
|
{ 0, -1, 1, 2, -1, 3, 4, -1, 5},
|
|
|
|
{ 0, -1, 1, 2, 3, 4, 5, -1, 6},
|
|
|
|
{ 0, 1, 2, 3, -1, 4, 5, 6, 7},
|
|
|
|
{ 0, 1, 2, 3, 4, 5, 6, 7, 8}
|
|
|
|
};
|
|
|
|
int n2b[][9] = {
|
|
|
|
{ 4, -1, -1, -1, -1, -1, -1, -1, -1},
|
|
|
|
{ 3, 5, -1, -1, -1, -1, -1, -1, -1},
|
|
|
|
{ 0, 4, 8, -1, -1, -1, -1, -1, -1},
|
|
|
|
{ 0, 2, 6, 8, -1, -1, -1, -1, -1},
|
|
|
|
{ 0, 2, 4, 6, 8, -1, -1, -1, -1},
|
|
|
|
{ 0, 2, 3, 5, 6, 8, -1, -1, -1},
|
|
|
|
{ 0, 2, 3, 4, 5, 6, 8, -1, -1},
|
|
|
|
{ 0, 1, 2, 3, 5, 6, 7, 8, -1},
|
|
|
|
{ 0, 1, 2, 3, 4, 5, 6, 7, 8}
|
|
|
|
};
|
|
|
|
|
|
|
|
int but2numb(int bnumb, int maxnumb)
|
|
|
|
/* Transforms a button number to an item number when there are
|
|
|
|
maxnumb items in total. -1 if the button should not exist. */
|
|
|
|
{ return b2n[maxnumb][bnumb]; }
|
|
|
|
|
|
|
|
int numb2but(int inumb, int maxnumb)
|
|
|
|
/* Transforms an item number to a button number when there are
|
|
|
|
maxnumb items in total. -1 if the item should not exist. */
|
|
|
|
{ return n2b[maxnumb][inumb]; }
|
|
|
|
|
|
|
|
/* Pushing and Popping menus */
|
|
|
|
|
|
|
|
char stack[64][32];
|
2005-04-11 11:35:33 +04:00
|
|
|
int stsize = 0;
|
1999-01-07 19:58:26 +03:00
|
|
|
|
2000-08-20 08:35:17 +04:00
|
|
|
void push_menu(const char* nnn)
|
1999-01-07 19:58:26 +03:00
|
|
|
/* Pushes a menu to be visible */
|
|
|
|
{
|
|
|
|
int n,i,bn;
|
|
|
|
int men = find_menu(nnn);
|
|
|
|
if (men < 0) return;
|
|
|
|
n = menus[men].numb;
|
|
|
|
for (i=0; i<9; i++) but[i]->hide();
|
|
|
|
for (i=0; i<n; i++)
|
|
|
|
{
|
|
|
|
bn = numb2but(i,n-1);
|
|
|
|
but[bn]->show();
|
|
|
|
but[bn]->label(menus[men].iname[i]);
|
2001-08-02 01:24:49 +04:00
|
|
|
if (menus[men].icommand[i][0] != '@') but[bn]->tooltip(menus[men].icommand[i]);
|
|
|
|
else but[bn]->tooltip(0);
|
1999-01-07 19:58:26 +03:00
|
|
|
}
|
2005-12-30 13:13:17 +03:00
|
|
|
if (stack[stsize]!=nnn)
|
|
|
|
strcpy(stack[stsize],nnn);
|
1999-01-07 19:58:26 +03:00
|
|
|
stsize++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pop_menu()
|
|
|
|
/* Pops a menu */
|
|
|
|
{
|
|
|
|
if (stsize<=1) return;
|
|
|
|
stsize -= 2;
|
|
|
|
push_menu(stack[stsize]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The callback Routines */
|
|
|
|
|
|
|
|
void dobut(Fl_Widget *, long arg)
|
|
|
|
/* handles a button push */
|
|
|
|
{
|
|
|
|
int men = find_menu(stack[stsize-1]);
|
|
|
|
int n = menus[men].numb;
|
|
|
|
int bn = but2numb( (int) arg, n-1);
|
|
|
|
if (menus[men].icommand[bn][0] == '@')
|
|
|
|
push_menu(menus[men].icommand[bn]);
|
|
|
|
else {
|
1999-02-23 00:09:13 +03:00
|
|
|
|
1999-01-07 19:58:26 +03:00
|
|
|
#ifdef WIN32
|
|
|
|
STARTUPINFO suInfo; // Process startup information
|
|
|
|
PROCESS_INFORMATION prInfo; // Process information
|
1999-02-23 00:09:13 +03:00
|
|
|
|
1999-01-07 19:58:26 +03:00
|
|
|
memset(&suInfo, 0, sizeof(suInfo));
|
|
|
|
suInfo.cb = sizeof(suInfo);
|
|
|
|
|
1999-02-23 00:09:13 +03:00
|
|
|
int icommand_length = strlen(menus[men].icommand[bn]);
|
|
|
|
|
|
|
|
char* copy_of_icommand = new char[icommand_length+1];
|
|
|
|
strcpy(copy_of_icommand,menus[men].icommand[bn]);
|
|
|
|
|
|
|
|
// On WIN32 the .exe suffix needs to be appended to the command
|
|
|
|
// whilst leaving any additional parameters unchanged - this
|
|
|
|
// is required to handle the correct conversion of cases such as :
|
|
|
|
// `../fluid/fluid valuators.fl' to '../fluid/fluid.exe valuators.fl'.
|
|
|
|
|
|
|
|
// skip leading spaces.
|
|
|
|
char* start_command = copy_of_icommand;
|
|
|
|
while(*start_command == ' ') ++start_command;
|
|
|
|
|
|
|
|
// find the space between the command and parameters if one exists.
|
|
|
|
char* start_parameters = strchr(start_command,' ');
|
|
|
|
|
|
|
|
char* command = new char[icommand_length+6]; // 6 for extra 'd.exe\0'
|
|
|
|
|
|
|
|
if (start_parameters==NULL) { // no parameters required.
|
|
|
|
# ifdef _DEBUG
|
|
|
|
sprintf(command, "%sd.exe", start_command);
|
|
|
|
# else
|
|
|
|
sprintf(command, "%s.exe", start_command);
|
|
|
|
# endif // _DEBUG
|
|
|
|
} else { // parameters required.
|
|
|
|
// break the start_command at the intermediate space between
|
|
|
|
// start_command and start_parameters.
|
|
|
|
*start_parameters = 0;
|
|
|
|
// move start_paremeters to skip over the intermediate space.
|
|
|
|
++start_parameters;
|
|
|
|
|
1999-01-07 19:58:26 +03:00
|
|
|
# ifdef _DEBUG
|
1999-02-23 00:09:13 +03:00
|
|
|
sprintf(command, "%sd.exe %s", start_command, start_parameters);
|
1999-01-07 19:58:26 +03:00
|
|
|
# else
|
1999-02-23 00:09:13 +03:00
|
|
|
sprintf(command, "%s.exe %s", start_command, start_parameters);
|
1999-01-07 19:58:26 +03:00
|
|
|
# endif // _DEBUG
|
1999-02-23 00:09:13 +03:00
|
|
|
}
|
1999-01-07 19:58:26 +03:00
|
|
|
|
|
|
|
CreateProcess(NULL, command, NULL, NULL, FALSE,
|
|
|
|
NORMAL_PRIORITY_CLASS, NULL, NULL, &suInfo, &prInfo);
|
1999-02-23 00:09:13 +03:00
|
|
|
|
2005-12-30 13:13:17 +03:00
|
|
|
delete[] command;
|
|
|
|
delete[] copy_of_icommand;
|
1999-02-23 00:09:13 +03:00
|
|
|
|
|
|
|
#else // NON WIN32 systems.
|
|
|
|
|
|
|
|
int icommand_length = strlen(menus[men].icommand[bn]);
|
|
|
|
char* command = new char[icommand_length+5]; // 5 for extra './' and ' &\0'
|
|
|
|
|
1999-01-07 19:58:26 +03:00
|
|
|
sprintf(command, "./%s &", menus[men].icommand[bn]);
|
|
|
|
system(command);
|
1999-02-23 00:09:13 +03:00
|
|
|
|
2005-12-30 13:13:17 +03:00
|
|
|
delete[] command;
|
1999-01-07 19:58:26 +03:00
|
|
|
#endif // WIN32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void doback(Fl_Widget *, void *) {pop_menu();}
|
|
|
|
|
|
|
|
void doexit(Fl_Widget *, void *) {exit(0);}
|
|
|
|
|
2000-08-20 08:35:17 +04:00
|
|
|
int load_the_menu(const char* fname)
|
1999-01-07 19:58:26 +03:00
|
|
|
/* Loads the menu file. Returns whether successful. */
|
|
|
|
{
|
|
|
|
FILE *fin;
|
|
|
|
char line[256], mname[64],iname[64],cname[64];
|
|
|
|
int i,j;
|
|
|
|
fin = fopen(fname,"r");
|
|
|
|
if (fin == NULL)
|
|
|
|
{
|
|
|
|
// fl_show_message("ERROR","","Cannot read the menu description file.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
if (fgets(line,256,fin) == NULL) break;
|
2007-02-23 22:27:43 +03:00
|
|
|
// remove all carriage returns that Cygwin may have inserted
|
|
|
|
char *s = line, *d = line;
|
|
|
|
for (;;++d) {
|
|
|
|
while (*s=='\r') s++;
|
|
|
|
*d = *s++;
|
|
|
|
if (!*d) break;
|
|
|
|
}
|
|
|
|
// interprete the line
|
1999-01-07 19:58:26 +03:00
|
|
|
j = 0; i = 0;
|
|
|
|
while (line[i] == ' ' || line[i] == '\t') i++;
|
|
|
|
if (line[i] == '\n') continue;
|
|
|
|
if (line[i] == '#') continue;
|
|
|
|
while (line[i] != ':' && line[i] != '\n') mname[j++] = line[i++];
|
|
|
|
mname[j] = '\0';
|
|
|
|
if (line[i] == ':') i++;
|
|
|
|
j = 0;
|
|
|
|
while (line[i] != ':' && line[i] != '\n')
|
|
|
|
{
|
|
|
|
if (line[i] == '\\') {
|
|
|
|
i++;
|
|
|
|
if (line[i] == 'n') iname[j++] = '\n';
|
|
|
|
else iname[j++] = line[i];
|
|
|
|
i++;
|
|
|
|
} else
|
|
|
|
iname[j++] = line[i++];
|
|
|
|
}
|
|
|
|
iname[j] = '\0';
|
|
|
|
if (line[i] == ':') i++;
|
|
|
|
j = 0;
|
|
|
|
while (line[i] != ':' && line[i] != '\n') cname[j++] = line[i++];
|
|
|
|
cname[j] = '\0';
|
|
|
|
addto_menu(mname,iname,cname);
|
|
|
|
}
|
|
|
|
fclose(fin);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2005-04-19 00:23:29 +04:00
|
|
|
putenv((char *)"FLTK_DOCDIR=../documentation");
|
1999-01-07 19:58:26 +03:00
|
|
|
char buf[256];
|
2001-12-21 17:35:34 +03:00
|
|
|
strcpy(buf, argv[0]);
|
2002-06-29 04:10:05 +04:00
|
|
|
#if ( defined _MSC_VER || defined __MWERKS__ ) && defined _DEBUG
|
2001-12-21 17:35:34 +03:00
|
|
|
// MS_VisualC appends a 'd' to debugging executables. remove it.
|
2002-03-26 00:08:42 +03:00
|
|
|
fl_filename_setext( buf, "" );
|
2001-12-21 17:35:34 +03:00
|
|
|
buf[ strlen(buf)-1 ] = 0;
|
2001-12-01 04:54:30 +03:00
|
|
|
#endif
|
2002-03-26 00:08:42 +03:00
|
|
|
fl_filename_setext(buf,".menu");
|
1999-01-07 19:58:26 +03:00
|
|
|
const char *fname = buf;
|
|
|
|
int i = 0;
|
|
|
|
if (!Fl::args(argc,argv,i) || i < argc-1)
|
2005-07-18 17:08:09 +04:00
|
|
|
Fl::fatal("Usage: %s <switches> <menufile>\n%s",argv[0],Fl::help);
|
1999-01-07 19:58:26 +03:00
|
|
|
if (i < argc) fname = argv[i];
|
2000-04-04 21:57:05 +04:00
|
|
|
|
2006-10-11 07:12:15 +04:00
|
|
|
create_the_forms();
|
|
|
|
|
1999-01-07 19:58:26 +03:00
|
|
|
if (!load_the_menu(fname)) Fl::fatal("Can't open %s",fname);
|
2005-12-30 13:13:17 +03:00
|
|
|
if (buf!=fname)
|
|
|
|
strcpy(buf,fname);
|
2002-03-26 00:08:42 +03:00
|
|
|
const char *c = fl_filename_name(buf);
|
1999-01-07 19:58:26 +03:00
|
|
|
if (c > buf) {buf[c-buf] = 0; chdir(buf);}
|
|
|
|
push_menu("@main");
|
|
|
|
form->show(argc,argv);
|
|
|
|
Fl::run();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1999-01-07 19:58:26 +03:00
|
|
|
//
|
1999-02-23 00:09:13 +03:00
|
|
|
|