• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H03-May-2022-1,003846

src/H03-May-2022-21,21014,739

tests/H03-May-2022-40,58137,882

AUTHORSH A D25-Jun-2003963 3025

BUGSH A D12-May-2000449 179

COPYINGH A D17-Dec-200317.6 KiB341281

ChangeLogH A D28-Feb-2000233 127

INSTALLH A D17-Dec-20039 KiB230175

Makefile.amH A D03-Jul-2002535 2111

Makefile.inH A D03-May-202219.1 KiB618535

NEWSH A D14-Dec-20049.9 KiB228208

READMEH A D11-Jun-20012.7 KiB9065

TODOH A D17-Dec-20032.4 KiB8551

acconfig.hH A D18-Nov-2002700 3433

aclocal.m4H A D14-Dec-2004240.9 KiB6,9376,174

config.guessH A D14-Dec-200442.2 KiB1,4421,245

config.h.inH A D14-Dec-20042.5 KiB10682

config.subH A D14-Dec-200430.5 KiB1,5531,412

configureH A D14-Dec-2004686.1 KiB21,90317,668

configure.inH A D14-Dec-20048.3 KiB284256

depcompH A D17-Dec-200313.5 KiB480304

glademm.specH A D14-Dec-20041.2 KiB5742

glademm.spec.inH A D05-May-20041.2 KiB5743

install-shH A D17-Dec-20037 KiB295169

ltmain.shH A D14-Dec-2004179.6 KiB6,4275,058

missingH A D17-Dec-200310 KiB337263

mkinstalldirsH A D17-Dec-20031.9 KiB11285

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