File: fd_forms.c

package info (click to toggle)
libforms 1.0.93sp1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,548 kB
  • ctags: 9,107
  • sloc: ansic: 97,227; sh: 9,236; makefile: 858
file content (813 lines) | stat: -rw-r--r-- 21,215 bytes parent folder | download | duplicates (2)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
/*
 * 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.  If not, see <http://www.gnu.org/licenses/>.
 */


/**
 * \file fd_forms.c
 *
 *  This file is part of XForms package
 *  Copyright (c) 1996-2002  T.C. Zhao and Mark Overmars
 *  All rights reserved.
 *
 * This file is part of the Forms Designer.
 *
 * It contains the routines that maintain the collection of
 * forms on which the program is working. It contains the callback
 * routines to add forms, change their name, remove them ,etc.
 * It also contains the routine to draw them and the  basic routines
 * for loading and saving forms.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "include/forms.h"
#include "flinternal.h"
#include "fd_main.h"

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

static FRM *forms = NULL;   /* The forms */
int fnumb = 0;

FL_FORM *cur_form = NULL;   /* The current form */


/***************************************
 * Returns the number of the form
 ***************************************/

static int
get_form_numb( FL_FORM * form )
{
    int i;

    for ( i = 0; i < fnumb; i++ )
        if ( forms[ i ].form == form )
            return i;
    return -1;
}


/***************************************
 * Sets the current form to numb, to NULL when numb = -1
 ***************************************/

static void
set_form( int numb )
{
    if ( numb == -1 )
    {
        cur_form = NULL;
        fl_deselect_browser( fd_control->formbrowser );
    }
    else
    {
        cur_form = forms[ numb ].form;
        set_bounding_box( 0, 0, cur_form->w, cur_form->h );
        fl_select_browser_line( fd_control->formbrowser, numb + 1 );
        fl_winstepsize( main_window, 1, 1 );
        fl_winresize( main_window, cur_form->w, cur_form->h );
        if ( fl_display )
            XSync( fl_display, 0 );
    }

    clear_selection( );
    fillin_groups( );
    redraw_the_form( 1 );
}


/***************************************
 * Change current form background. Called when the main window is resized
 ***************************************/

void
reshape_form_background( FL_Coord neww,
                         FL_Coord newh )
{
    if ( cur_form && cur_form->first )
    {
        cur_form->w_hr = cur_form->w =
        cur_form->first->next->w = cur_form->first->next->fr1 =
        cur_form->first->next->fl2 = neww;
        cur_form->h_hr = cur_form->h =
        cur_form->first->next->h = cur_form->first->next->fb1 =
        cur_form->first->next->ft2 = newh;
         
        set_bounding_box( 0, 0, neww, newh );
    }
}


/****
  CALLBACK ROUTINES
****/

/***************************************
 * Callback routine that is called when the user selects another form
 * to work on.
 ***************************************/

void
form_cb( FL_OBJECT * obj  FL_UNUSED_ARG,
         long        arg  FL_UNUSED_ARG )
{
    set_form( fl_get_browser( fd_control->formbrowser ) - 1 );
}


/***************************************
 * Callback routine called when the user adds a form.
 ***************************************/

void
addform_cb( FL_OBJECT * obj  FL_UNUSED_ARG,
            long        arg  FL_UNUSED_ARG )
{
    float w = 0,
          h = 0;
    FL_Coord xx,
             yy;
    static int form_seq;
    const char *s;
    const char *sp;
    FRM *new_forms;

    new_forms = fl_realloc( forms, ( fnumb + 1 ) * sizeof *forms );

    if ( ! new_forms )
    {
        fl_show_alert( "Too many forms", "Running out of memory for forms",
                       NULL, 0 );
        return;
    }
    else
        forms = new_forms;

    /* Make old form invisible */

    set_form( -1 );

    /* Get boundary */

    fl_deactivate_form( fd_control->control );

    fl_get_win_size( main_window, &xx, &yy );
    set_bounding_box( 0, 0, xx, yy );

    w = xx;
    h = yy;

 get_new_form_name:

    if (    ! ( s = fl_show_input( "Enter form name (must be usable as "
                                   "a C variable):", "" ) )
         || ! *s )
    {
        fl_activate_form( fd_control->control );
        return;
    }

    if (    ! isascii( ( unsigned char ) *s )
         || ! ( isalpha( ( unsigned char ) *s ) || *s == '_' ) )
    {
        fl_show_alert( "Error", "Invalid C identifier specified for form "
                       "name:", s, 0 );
        goto get_new_form_name;
    }

    for ( sp = s + 1; *sp; sp++ )
        if (    ! isascii( ( unsigned char ) *sp )
             || ! ( isalnum( ( unsigned char ) *sp ) || *sp == '_' ) )
        {
            fl_show_alert( "Error", "Invalid C identifier specified for form "
                           "name:", s, 0 );
            goto get_new_form_name;
        }

    /* Create the form */

    cur_form = forms[ fnumb ].form = fl_bgn_form( FL_NO_BOX, w, h );
    fl_end_form( );

    add_an_object( FL_BOX, FL_UP_BOX, 0, 0, w, h );
    fl_set_form_dblbuffer( cur_form, 1 );

    /* Get form name and add it */

    strcpy( forms[ fnumb ].fname, s );

    if ( ! forms[ fnumb ].fname[ 0 ] )
        sprintf( forms[ fnumb ].fname, "form%d", form_seq++ );
    fl_add_browser_line( fd_control->formbrowser, forms[ fnumb ].fname );

    /* finish off */

    set_form( fnumb++ );
    fl_activate_form( fd_control->control );
    changed = FL_TRUE;
}


/***************************************
 * Callback routine invoked when the user wants to change the name
 ***************************************/

void
changename_cb( FL_OBJECT * obj  FL_UNUSED_ARG,
               long        arg  FL_UNUSED_ARG )
{
    int fn = get_form_numb( cur_form );
    const char *s;
    const char *sp;

    if ( cur_form == NULL || fn == -1 )
        return;

 get_changed_form_name:

    if (    ! ( s = fl_show_input( "Enter form name (must be usable as "
                                   "a C variable):", forms[ fn ].fname ) )
         || ! *s )
        return;

    if (    ! isascii( ( unsigned char ) *s )
         || ! ( isalpha( ( unsigned char ) *s ) || *s == '_' ) )
    {
        fl_show_alert( "Error", "Invalid C identifier specified for form "
                       "name:", s, 0 );
        goto get_changed_form_name;
    }

    for ( sp = s + 1; *sp; sp++ )
        if (    ! isascii( ( unsigned char ) *sp )
             || ! ( isalnum( ( unsigned char ) *sp ) || *sp == '_' ) )
        {
            fl_show_alert( "Error", "Invalid C identifier specified for form "
                           "name:", s, 0 );
            goto get_changed_form_name;
        }

    fli_sstrcpy( forms[ fn ].fname, s, MAX_VAR_LEN );

    fl_replace_browser_line( fd_control->formbrowser, fn + 1,
                             forms[ fn ].fname );
    changed = FL_TRUE;
}


/***************************************
 * Callback routine invoked when the user wants to change the forms size
 ***************************************/

void
changesize_cb( FL_OBJECT * obj  FL_UNUSED_ARG,
               long        arg  FL_UNUSED_ARG )
{
    FL_OBJECT *retobj;
    int fn = get_form_numb( cur_form );

    if ( cur_form == NULL || fn == -1 )
        return;

    /* While this form is shown no other should be operational (the user
       still can resize the forms window, that will automatically set the
       width and height spinners) */

    fl_deactivate_all_forms( );

    /* Set up the width and height spinner objects to show the sizes of
       the current form */

    fl_set_spinner_value( fd_resize->width,  cur_form->w );
    fl_set_spinner_value( fd_resize->height, cur_form->h );

    fl_show_form( fd_resize->resize, FL_PLACE_HOTSPOT, FL_TRANSIENT,
                  "Form size" );

    fl_update_display( 0 );
    fl_winfocus( fd_resize->resize->window );

    /* Loop until user clicks the "Dismiss" button */

    while ( ( retobj = fl_do_only_forms( ) ) != fd_resize->quit )
    {
        int w;
        int h;

        if ( retobj != fd_resize->set_size )
            continue;

        /* User has clicked on the "Set new size" button */

        w = FL_nint( fl_get_spinner_value( fd_resize->width  ) );
        h = FL_nint( fl_get_spinner_value( fd_resize->height ) );
        fl_set_spinner_value( fd_resize->width, w  );
        fl_set_spinner_value( fd_resize->height, h );

        if ( w == cur_form->w && h == cur_form->h )
            continue;

        XResizeWindow( flx->display, main_window, w, h );

        if ( cur_form && ( cur_form->w > w || cur_form->h > h ) )
        {
            reshape_form_background( w, h );
            redraw_the_form( 1 );
        }

        changed = FL_TRUE;
    }

    fl_hide_form( fd_resize->resize );
    fl_activate_all_forms( );
}


/***************************************
 * Callback routine called to delete a form
 ***************************************/

void
deleteform_cb( FL_OBJECT * obj  FL_UNUSED_ARG,
               long        arg  FL_UNUSED_ARG )
{
    int i,
        fn = get_form_numb( cur_form );

    if ( cur_form == NULL || fn == -1 )
        return;
    if ( ! fl_show_question( "Delete current form?", 1 ) )
        return;
    fl_delete_browser_line( fd_control->formbrowser, fn + 1 );
    for ( i = fn; i < fnumb - 1; i++ )
        forms[ i ] = forms[ i + 1 ];
    fnumb--;
    set_form( -1 );
    changed = 1;
}

/****
  DRAWING FORMS
****/

/***************************************
 * Redraws the form in main window. 'back' indicates whether the background
 * should be redrawn (when not double-buffering). This avoids flashing.
 ***************************************/

void
redraw_the_form( int back )
{
    if ( main_window == 0 )
        return;

    fl_winset( main_window );

    /* It's possible to have a NULL cur_form, e.g. when adding */

    if ( back && ! cur_form )
        fd_clear( 0, 0, winw + 1, winh + 1 );

    if ( cur_form != NULL )
    {
        cur_form->window = main_window;
        cur_form->visible = 1;
        fl_set_form_dblbuffer( cur_form, 1 );
        fl_redraw_form( cur_form );
        cur_form->window = 0;
        cur_form->visible = 0;
        draw_selbox( );
    }
}


/****
  LOADING AND SAVING
****/

int fd_magic;

/***************************************
 ***************************************/

char *
append_fd_suffix( const char * fn )
{
    size_t l = strlen( fn );
    char *fname = fl_malloc( l + 4 );

    strcpy( fname, fn );
    if ( l < 3 || strcmp( fname + l - 3, ".fd" ) )
        strcat( fname, ".fd" );
    return fname;
}


/***************************************
 * Reads in the very first part of a .fd file
 ***************************************/

static int
load_fd_header( void )
{
    char *p;
    int nforms = -1;

    /* Line with "magic" number must come first, followed by some
       boilerplate text */

    if (    ff_read( "%k", &p ) <= 0
         || strcmp( p, "Magic" )
         || ff_read( "%d", &fd_magic ) <= 0
         || (    fd_magic != MAGIC2 && fd_magic != MAGIC3
              && fd_magic != MAGIC4 && fd_magic != MAGIC5 ) )
        return ff_err( "Wrong type of file" );

    if ( fd_magic != MAGIC5 )
    {
        char *tmp = ff_get_filename_copy( );

        if ( ! fdopt.conv_only )
            fl_show_alert2( 0, "Warning:\fFile %s\nwas created with an older "
                            "fdesign version,\nthe new output file may not be "
                            "compatible.", tmp );
        else
            M_warn( "", "Warning: File %s was created with an older fdesign "
                    "version, the new output file may not be compatible",
                    tmp );

        fl_safe_free( tmp );
    }

    if (    ff_read( "Internal Form Definition File" ) < 0
         || ff_read( "(do not change)" ) < 0 )
        return ff_err( "Invalid format of file" );

    /* Now follows a set of keyword/value pairs. The key "Name" marks
       the end of the header and the start of the first form definition */

    while ( 1 )
    {
        if ( ff_read( "%k", &p ) <= 0 )
            return ff_err( "Invalid format of file" );

        if ( ! strcmp( p, "Number of forms" ) )
        {
            if ( ff_read( "%d", &nforms ) <= 0 )
                return ff_err( "Expected number of forms" );

            if ( nforms <= 0 )
                return ff_err( "Invalid number of forms" );
        }
        else if ( ! strcmp( p, "Unit of measure" ) )
        {
            if ( ff_read( "%x", &fdopt.unit ) < 0 )
                return ff_err( "Expected valid unit of measure" );

            fli_cntl.coordUnit = fdopt.unit;        /* make_obj uses this */
        }
        else if ( ! strcmp( p, "SnapGrid" ) || ! strcmp( p, "Snap" ) )
        {
            int snap_size;

            if ( ff_read( "%d", &snap_size ) < 0 )
                return ff_err( "Expected snap size" );

            if ( snap_size < 0 )
                return ff_err( "Invalid snap size" );

            set_snap_size( snap_size, 1 );
        }
        else if ( ! strcmp( p, "Border Width" ) )
        {
            int bw;

            if ( ff_read( "%d", &bw ) < 0 )
                return ff_err( "Expected border width" );
            
            if ( bw != FL_BOUND_WIDTH )
                fl_set_border_width( fd_bwidth = bw );
        }
        else if ( ! strcmp( p, "Name" ) )
        {
            if ( nforms < 0 )
                return ff_err( "Number of forms is missing" );

            return nforms;
        }
        else
            return ff_err( "Invalid format of file" );
    }

    return ff_err( "Invalid format of file" );
}


/***************************************
 * Loads or merges a file with form definitions
 ***************************************/

int
load_forms( int          merge,
            const char * str,
            int          record )
{
    int i,
        saved_unit = fdopt.unit,
        r,
        nforms;
    FRM *new_forms;
    char *fname,
         *tmp;

    /* Try to open the .fd file */

    if ( ff_get_fd_file( str, merge ) < 0 )
        return -1;

    if ( ! merge )
    {
        fnumb = 0;
        fl_clear_browser( fd_control->formbrowser );
    }

    /* Try to read the header of the file (must indicate that there's at
       least one form */

    if ( ( nforms = load_fd_header( ) ) <= 0 )
        return -1;

    if ( ! ( new_forms = fl_realloc( forms,
                                     ( fnumb + nforms ) * sizeof *forms ) ) )
        return ff_err( "Can't load file, running out of memory" );

    forms = new_forms;

    fname = ff_get_filename_copy( );

    /* Now read in all forms - we have already read in the "Name:" key that
       starts a new form */

    r = FF_AT_START_OF_FORM;

    for ( i = 0; i < nforms && r == FF_AT_START_OF_FORM; i++ )
    {
        char *p;

        /* First thing to read is the name of the form (which must not be an
           empty string) */

        if ( ff_read( "%v", &p ) < 1 )
        {
            fl_free( fname );
            return ff_err( "Failed to read expected form name" );
        }

        if ( ! p || ! *p )
        {
            fl_safe_free( p );
            return ff_err( "Expected name of the form" );
        }

        fli_sstrcpy( forms[ fnumb ].fname, p, sizeof forms[ fnumb ].fname );
        fl_safe_free( p );

        /* Having gotten the name read all the remaining information. We then
           should either end up at the start of a new form or at the end of
           the file */

        if (    ( r = read_form( ) ) == FF_AT_START_OF_FORM
             || r == FF_AT_END_OF_FILE )
        {
            forms[ fnumb ].form = cur_form;
            fl_add_browser_line( fd_control->formbrowser,
                                 forms[ fnumb ].fname );
            fnumb++;
        }
    }

    /* Check if we're really at the end of the file and as many forms have
       been found as we were led to expect */

    if ( r == FF_AT_START_OF_FORM )
    {
        fl_free( fname );
        return ff_err( "More forms found than expected" );
    }
    else if ( r != FF_READ_FAILURE && i < nforms )
    {
        ff_err( "Less forms found than expected" );
        fl_free( fname );
        return -1;
    }

    /* Everything's dandy and we're done with the file */

    ff_close( );

    set_form( fnumb > 0 ? 0 : -1 );

    if ( merge )
        changed = 1;
    else if ( record && ( tmp = strrchr( fname, '/' ) ) )
    {
        fl_safe_free( loadedfile );
        *tmp = '\0';
        loadedfile = fl_strdup( fname );
    }

    if ( ! merge )
    {
        fl_safe_free( loadedfile_fullpath );
        loadedfile_fullpath = fl_strdup( fname );
    }

    fl_free( fname );

    /* Reset active coordinate system to pixel */

    fli_cntl.coordUnit = FL_COORD_PIXEL;

    /* Force output the same as input when converting directly. The reason is
       we don't know the screen DPI. */

    if ( ! fdopt.conv_only )
        fdopt.unit = saved_unit;

    fd_magic = 0;
    return 0;
}


/***************************************
 * Saves the form definitions, returns whether saved
 ***************************************/

int
save_forms( const char *str )
{
    int i,
        snap;
    FILE *fn;
    char fname[ 1024 ],
         filename[ 1024 ];
    Conv *conv;

    fl_use_fselector( SAVE_FSELECTOR );

    /* Get the filename if necessary */

    if ( ! str || ! * str )
        str = fl_show_fselector( "Filename to save forms to", "",
                                 "*.fd", loadedfile );

    if ( ! str )
        return 0;       /* cancel */

    if ( ! *str )
    {
        fl_show_alert( "No forms were saved.", "", "", 0 );
        return 0;
    }

    /* Remove .fd if required */

    strcpy( filename, str );
    i = strlen( filename ) - 1;
    if ( strcmp( filename + i - 2, ".fd" ) == 0 )
        filename[ i - 2 ] = '\0';

    strcpy( fname, filename );

    /* On conversion there's need to (re)save  the .fd file. It messes up
       Makefile rules */

    if ( fdopt.conv_only )
        goto emit_code;

    /* Make the .fd file. */

    strcat( fname, ".fd" );
    make_backup( fname );

    if ( ( fn = fopen( fname, "w" ) ) == 0 )
    {
        fl_show_alert( "Cannot create definition file!!", "", "", 1 );
        return 0;
    }

    snap = get_step_size( ) + 0.1;
    fprintf( fn, "Magic: %d\n\n", MAGIC5 );
    fprintf( fn, "Internal Form Definition File\n" );
    fprintf( fn, "    (do not change)\n\n" );
    fprintf( fn, "Number of forms: %d\n", fnumb );

    fprintf( fn, "Unit of measure: %s\n", unit_name( fdopt.unit ) );

    if ( fd_bwidth != FL_BOUND_WIDTH && fd_bwidth )
        fprintf( fn, "Border Width: %d\n", fd_bwidth );

    if ( snap != 10 )
        fprintf( fn, "SnapGrid: %d\n", snap );

    for ( i = 0; i < fnumb; i++ )
        write_form( fn, forms[ i ].form, forms[ i ].fname );

    fprintf( fn, "\n==============================\n%s\n", main_name );
    fclose( fn );

 emit_code:

    /* If no code is desired, return */

    if ( ! fdopt.emit_code )
        return 1;

    conv = convertor + fdopt.language;

    /* some converter works on the c code */

    if ( conv->need_c_code )
        convertor[ FD_C ].convert( filename, forms, fnumb );

    if ( conv->convert )
        return conv->convert( filename, forms, fnumb );
    else if ( conv->extern_convertor )
    {
        char cmdbuf[ 1024 ];
        char optbuf[ 512 ];
        int status;

        *optbuf = '\0';

        if ( fdopt.emit_main )
            strcat( optbuf, "-main " );
        if ( fdopt.emit_cb )
            strcat( optbuf, "-callback " );
        if ( fdopt.altformat )
            strcat( optbuf, "-altformat " );
        if ( fdopt.compensate )
            strcat( optbuf, "-compensate " );
        if ( fdopt.output_dir ) {
            strcat( optbuf, "-dir " );
            strcat( optbuf, fdopt.output_dir );
        }

        sprintf( cmdbuf, "%s %s%s", conv->extern_convertor, optbuf, filename );
        M_warn( "Convert", "Executing %s", cmdbuf );

        if ( fdopt.conv_only )
        {
            if ( ( status = system( cmdbuf ) ) )
                M_err( "Output", "Error executing %s\n", cmdbuf );
        }
        else
        {
            fl_clear_command_log( );
            if ( ( status = fl_exe_command( cmdbuf, 1 ) ) )
            {
                fl_addto_command_log( "\nerror executing " );
                fl_addto_command_log( cmdbuf );
                fl_show_command_log( FL_FULLBORDER );
            }
        }

        return status == 0;
    }
    else
    {
        fprintf( stderr, "Convertor %s for %s not found\n",
                 conv->extern_convertor, conv->lang_name );
        return 0;
    }

    return 1;
}


/*
 * Local variables:
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */