source: rtems-graphics-toolkit/fltk-1.1.10/fluid/about_panel.fl @ 513eea1

Last change on this file since 513eea1 was 513eea1, checked in by Joel Sherrill <joel.sherrill@…>, on 01/09/10 at 22:43:24

2010-01-08 Joel Sherrill <joel.sherrill@…>

fltk 1.1.10. imported

  • ORIGIN: Updated.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1# data file for the Fltk User Interface Designer (fluid)
2version 1.0108
3header_name {.h}
4code_name {.cxx}
5comment {//
6// "$Id$"
7//
8// About dialog for the Fast Light Tool Kit (FLTK).
9//
10// Copyright 1998-2009 by Bill Spitzak and others.
11//
12// This library is free software; you can redistribute it and/or
13// modify it under the terms of the GNU Library General Public
14// License as published by the Free Software Foundation; either
15// version 2 of the License, or (at your option) any later version.
16//
17// This library is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20// Library General Public License for more details.
21//
22// You should have received a copy of the GNU Library General Public
23// License along with this library; if not, write to the Free Software
24// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25// USA.
26//
27// Please report all bugs and problems on the following page:
28//
29//     http://www.fltk.org/str.php
30//
31} {in_source in_header
32}
33
34decl {void show_help(const char *name);} {public
35}
36
37Function {make_about_panel()} {open
38} {
39  Fl_Window about_panel {
40    label {About FLUID} open
41    xywh {390 162 315 175} type Double color 50 selection_color 47 hotspot non_modal visible
42  } {
43    Fl_Box {} {
44      image {icons/fluid-96.xpm} xywh {10 10 115 120}
45    }
46    Fl_Box {} {
47      label {FLTK User
48Interface Designer
49Version 1.1.10}
50      xywh {135 10 170 69} color 12 selection_color 47 labelfont 1 labelsize 18 align 21
51    }
52    Fl_Box {} {
53      label {Copyright 1998-2009 by
54Bill Spitzak and others} selected
55      xywh {135 89 170 42} align 148
56    }
57    Fl_Button {} {
58      label {View License...}
59      callback {show_help("license.html");}
60      xywh {89 141 123 25} labelcolor 136
61    }
62    Fl_Return_Button {} {
63      label Close
64      callback {((Fl_Window*)(o->parent()))->hide();}
65      xywh {222 141 83 25}
66    }
67  }
68}
69
70comment {
71//
72// End of "$Id$".
73//} {in_source in_header
74}
Note: See TracBrowser for help on using the repository browser.