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
|
/*
* This file is part of the XForms library package.
*
* 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 oneliner.c
*
* This file is part of the XForms library package.
* Copyright (c) 1996-2002 T.C. Zhao
* All rights reserved.
*
* Show message in a top-level unmanaged window.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "include/forms.h"
#include "flinternal.h"
static int fntstyle = FL_NORMAL_STYLE,
fntsize = FL_DEFAULT_SIZE;
static FL_COLOR background = FL_YELLOW,
textcolor = FL_BLACK;
static FL_FORM *oneliner;
static FL_OBJECT *text;
/***************************************
***************************************/
static void
create_it( void )
{
if ( oneliner )
return;
FL_NO_BOX, 5, 5 );
text = fl_add_box( FL_BORDER_BOX, 0, 0, 5, 5, "" );
fl_set_object_lstyle( text, fntstyle );
fl_set_object_lsize( text, fntsize );
fl_set_object_lcolor( text, textcolor );
fl_set_object_color( text, background, background );
fl_end_form( );
}
/***************************************
***************************************/
void
fl_show_oneliner( const char * s,
FL_Coord x,
FL_Coord y )
{
int w,
h;
if ( ! s )
return;
create_it( );
fl_get_string_dimension( fntstyle, fntsize, s, strlen( s ), &w, &h );
w += ( 2 * fntsize ) / 3;
h += ( 2 * fntsize ) / 3;
fl_freeze_form( oneliner );
fl_set_form_geometry( oneliner, x, y, w, h );
fl_set_object_label( text, s );
fl_unfreeze_form( oneliner );
if ( oneliner->visible == FL_INVISIBLE )
fl_show_form( oneliner, FL_PLACE_GEOMETRY | FL_FREE_SIZE,
FL_NOBORDER, "OneLiner" );
fl_update_display( 1 );
}
/***************************************
***************************************/
void
fl_hide_oneliner( void )
{
if ( oneliner && oneliner->visible )
fl_hide_form( oneliner );
}
/***************************************
***************************************/
void
fl_set_oneliner_color( FL_COLOR tc,
FL_COLOR bc )
{
create_it( );
fl_set_object_lcolor( text, textcolor = tc );
background = bc;
fl_set_object_color( text, background, background );
}
/***************************************
***************************************/
void
fl_set_oneliner_font( int style,
int size )
{
create_it( );
fl_set_object_lstyle( text, fntstyle = style );
fl_set_object_lsize( text, fntsize = size );
}
/*
* Local variables:
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|