|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| docs/ | H | 03-May-2022 | - | 1,003 | 846 |
| src/ | H | 03-May-2022 | - | 21,210 | 14,739 |
| tests/ | H | 03-May-2022 | - | 40,581 | 37,882 |
| AUTHORS | H A D | 25-Jun-2003 | 963 | 30 | 25 |
| BUGS | H A D | 12-May-2000 | 449 | 17 | 9 |
| COPYING | H A D | 17-Dec-2003 | 17.6 KiB | 341 | 281 |
| ChangeLog | H A D | 28-Feb-2000 | 233 | 12 | 7 |
| INSTALL | H A D | 17-Dec-2003 | 9 KiB | 230 | 175 |
| Makefile.am | H A D | 03-Jul-2002 | 535 | 21 | 11 |
| Makefile.in | H A D | 03-May-2022 | 19.1 KiB | 618 | 535 |
| NEWS | H A D | 14-Dec-2004 | 9.9 KiB | 228 | 208 |
| README | H A D | 11-Jun-2001 | 2.7 KiB | 90 | 65 |
| TODO | H A D | 17-Dec-2003 | 2.4 KiB | 85 | 51 |
| acconfig.h | H A D | 18-Nov-2002 | 700 | 34 | 33 |
| aclocal.m4 | H A D | 14-Dec-2004 | 240.9 KiB | 6,937 | 6,174 |
| config.guess | H A D | 14-Dec-2004 | 42.2 KiB | 1,442 | 1,245 |
| config.h.in | H A D | 14-Dec-2004 | 2.5 KiB | 106 | 82 |
| config.sub | H A D | 14-Dec-2004 | 30.5 KiB | 1,553 | 1,412 |
| configure | H A D | 14-Dec-2004 | 686.1 KiB | 21,903 | 17,668 |
| configure.in | H A D | 14-Dec-2004 | 8.3 KiB | 284 | 256 |
| depcomp | H A D | 17-Dec-2003 | 13.5 KiB | 480 | 304 |
| glademm.spec | H A D | 14-Dec-2004 | 1.2 KiB | 57 | 42 |
| glademm.spec.in | H A D | 05-May-2004 | 1.2 KiB | 57 | 43 |
| install-sh | H A D | 17-Dec-2003 | 7 KiB | 295 | 169 |
| ltmain.sh | H A D | 14-Dec-2004 | 179.6 KiB | 6,427 | 5,058 |
| missing | H A D | 17-Dec-2003 | 10 KiB | 337 | 263 |
| mkinstalldirs | H A D | 17-Dec-2003 | 1.9 KiB | 112 | 85 |
README
1// $Id: README,v 1.17 2001/06/11 06:41:34 christof Exp $
2
3This is a C++ backend for glade, the GUI designer for Gtk.
4This means this program reads glade files and outputs a C++ program source
5skeleton for you.
6Each (marked) GUI class has a derivative user class for you to modify and
7extend.
8
9We use this at work, so it's functionality is somewhat biased towards the
10parts of gtk we use. And since my time is limited, I didn't implement each
11property of each widget.
12
13If you feel something important is missing, please add it and don't forget
14to send me your patch so I can include it in future revisions. You might as
15well ask me whether the feature is planned in the near future.
16
17-------------------------- REQUIREMENTS -----------------------------
18
19You need (at least!):
20- glade http://www.comp.lancs.ac.uk/~damon/builder/index.html or check out
21 the most recent snapshot at cvs.gnome.org
22 for creating the files
23
24to compile glademm
25- gcc 2.95 or up
26
27to compile your programs
28- gtk+ (1.2.x recommended) (http://www.gtk.org/)
29- gtk-- (1.2.x recommended) (http://gtkmm.sourceforge.net/)
30- GNU autoconf (http://www.fsf.org/)
31- GNU automake (http://www.fsf.org/)
32- please make sure that you have the development packages of the needed
33 libraries installed, too. (Those containing the .h files)
34
35I also recommend to take a look at my gtk--addons which are available
36at cvs.gnome.org.
37
38---------------------------- USAGE --------------------------------------
39
40simply compile by invoking
41 ./configure
42 make
43 [make install]
44
45create program files
46 glade-- --sample sample.glade
47or use glade's 'gear' button.
48
49Compile your programs by invoking
50 cd dir_of_.glade_file
51 ./autogen.sh (or make)
52
53----------------- HOW TO GET IT --------------------------------------
54
55The current (public) source code is available at
56 [anon]cvs.gnome.org .
57Read http://developer.gnome.org/ ... for more information.
58
59Releases of this program are at
60 http://home.wtal.de/petig/Gtk/ .
61
62It's quickly evolving, so you if you got glade-- elsewhere
63you might take a look at this URL now (or even better check out the cvs
64version)!
65
66------------------------ USING ANONYMOUS CVS ACCESS --------------------
67
68cvs -d :pserver:anonymous@anoncvs.gnome.org:/cvs/gnome login
69<no password, hit return>
70cvs -z3 -d :pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co glade--
71... working ...
72
73If you want to update your copy enter the directory where you checked it out:
74 cd glade--
75and type
76 cvs -z3 update -dP
77
78------------------------- CONTACT ADDRESSES ----------------------------
79
80Enjoy
81 Christof Petig <christof.petig@wtal.de>
82
83Feedback and Thanks are always welcome.
84
85Mailing list (questions and announcements):
86 glademm-list@gnome.org
87
88To subscribe visit
89 http://mail.gnome.org/mailman/listinfo/glademm-list
90