forward declaration for gtk_window_paint declare xid_ht static get the

1998-11-07  Jay Cox  <jaycox@earthlink.net>

	* gtk/gtkwindow.c: forward declaration for gtk_window_paint
	* gdk/gdkxid.c: declare xid_ht static
	* examples/*/Makefile: get the link ordering right.
This commit is contained in:
Jay Cox 1998-11-07 16:12:37 +00:00 committed by jaycox
parent cf1d80fd80
commit a77c4da512
40 changed files with 86 additions and 41 deletions

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -1,3 +1,9 @@
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
* gdk/gdkxid.c: declare xid_ht static
* examples/*/Makefile: get the link ordering right.
Sat Nov 7 16:31:56 1998 Stefan Jeske <stefan@gtk.org>
* gtk/gtkclist.c (gtk_clist_realize): Set background of

View File

@ -2,7 +2,7 @@
CC = gcc
aspectframe: aspectframe.c
$(CC) `gtk-config --cflags` `gtk-config --libs` aspectframe.c -o aspectframe
$(CC) `gtk-config --cflags` aspectframe.c -o aspectframe `gtk-config --libs`
clean:
rm -f *.o aspectframe

View File

@ -2,7 +2,7 @@
CC = gcc
buttons: buttons.c
$(CC) `gtk-config --cflags` `gtk-config --libs` buttons.c -o buttons
$(CC) `gtk-config --cflags` buttons.c -o buttons `gtk-config --libs`
clean:
rm -f *.o buttons

View File

@ -2,7 +2,7 @@
CC = gcc
gcalendar: gcalendar.c
$(CC) `gtk-config --cflags` `gtk-config --libs` gcalendar.c -o gcalendar
$(CC) `gtk-config --cflags` gcalendar.c -o gcalendar `gtk-config --libs`
clean:
rm -f gcalendar

View File

@ -2,7 +2,7 @@
CC = gcc
clist: clist.c
$(CC) `gtk-config --cflags` `gtk-config --libs` clist.c -o clist
$(CC) `gtk-config --cflags` clist.c -o clist `gtk-config --libs`
clean:
rm -f *.o clist

View File

@ -2,7 +2,7 @@
CC = gcc
entry: entry.c
$(CC) `gtk-config --cflags` `gtk-config --libs` entry.c -o entry
$(CC) `gtk-config --cflags` entry.c -o entry `gtk-config --libs`
clean:
rm -f *.o entry

View File

@ -2,7 +2,7 @@
CC = gcc
eventbox: eventbox.c
$(CC) `gtk-config --cflags` `gtk-config --libs` eventbox.c -o eventbox
$(CC) `gtk-config --cflags` eventbox.c -o eventbox `gtk-config --libs`
clean:
rm -f *.o eventbox

View File

@ -1,7 +1,8 @@
CC = gcc
filesel: filesel.c
$(CC) `gtk-config --cflags` `gtk-config --libs` filesel.c -o filesel
$(CC) `gtk-config --cflags` filesel.c -o filesel `gtk-config --libs`
clean:
rm -f *.o filesel

View File

@ -2,7 +2,7 @@
CC = gcc
dial_test: gtkdial.o dial_test.o
$(CC) `gtk-config --libs` dial_test.o gtkdial.o -o dial_test
$(CC) dial_test.o gtkdial.o -o dial_test `gtk-config --libs`
dial_test.o: dial_test.c gtkdial.h
$(CC) `gtk-config --cflags` -c dial_test.c -o dial_test.o

View File

@ -1,8 +1,8 @@
CC = gcc
helloworld: helloworld.c
$(CC) `gtk-config --cflags` `gtk-config --libs` helloworld.c -o helloworld
helloworld: helloworld.c
$(CC) `gtk-config --cflags` helloworld.c -o helloworld `gtk-config --libs`
clean:
rm -f helloworld
rm -f *.o helloworld

View File

@ -1,8 +1,8 @@
CC = gcc
helloworld2: helloworld2.c
$(CC) `gtk-config --cflags` `gtk-config --libs` helloworld2.c -o helloworld2
helloworld2: helloworld2.c
$(CC) `gtk-config --cflags` helloworld2.c -o helloworld2 `gtk-config --libs`
clean:
rm -f helloworld2
rm -f *.o helloworld2

View File

@ -2,7 +2,7 @@
CC = gcc
list: list.c
$(CC) `gtk-config --cflags` `gtk-config --libs` list.c -o list
$(CC) `gtk-config --cflags` list.c -o list `gtk-config --libs`
clean:
rm -f *.o list

View File

@ -4,7 +4,7 @@ CC = gcc
all: menu menufactory
menu: menu.c
$(CC) `gtk-config --cflags` `gtk-config --libs` menu.c -o menu
$(CC) `gtk-config --cflags` menu.c -o menu `gtk-config --libs`
menufactory: menufactory.o mfmain.o
$(CC) `gtk-config --libs` menufactory.o mfmain.o -o menufactory

View File

@ -2,7 +2,7 @@
CC = gcc
notebook: notebook.c
$(CC) `gtk-config --cflags` `gtk-config --libs` notebook.c -o notebook
$(CC) `gtk-config --cflags` notebook.c -o notebook `gtk-config --libs`
clean:
rm -f *.o notebook

View File

@ -2,7 +2,7 @@
CC = gcc
packbox: packbox.c
$(CC) `gtk-config --cflags` `gtk-config --libs` packbox.c -o packbox
$(CC) `gtk-config --cflags` packbox.c -o packbox `gtk-config --libs`
clean:
rm -f *.o packbox

View File

@ -1,8 +1,8 @@
CC = gcc
pack: pack.c
$(CC) `gtk-config --cflags` `gtk-config --libs` pack.c -o pack
packer: packer.c
$(CC) `gtk-config --cflags` pack.c -o packer `gtk-config --libs`
clean:
rm -f pack
rm -f *.o packer

View File

@ -2,7 +2,7 @@
CC = gcc
paned: paned.c
$(CC) `gtk-config --cflags` `gtk-config --libs` paned.c -o paned
$(CC) `gtk-config --cflags` paned.c -o paned `gtk-config --libs`
clean:
rm -f *.o paned

View File

@ -2,7 +2,7 @@
CC = gcc
pixmap: pixmap.c
$(CC) `gtk-config --cflags` `gtk-config --libs` pixmap.c -o pixmap
$(CC) `gtk-config --cflags` pixmap.c -o pixmap `gtk-config --libs`
clean:
rm -f *.o pixmap

View File

@ -2,7 +2,7 @@
CC = gcc
progressbar: progressbar.c
$(CC) `gtk-config --cflags` `gtk-config --libs` progressbar.c -o progressbar
$(CC) `gtk-config --cflags` progressbar.c -o progressbar `gtk-config --libs`
clean:
rm -f *.o progressbar

View File

@ -2,7 +2,7 @@
CC = gcc
radiobuttons: radiobuttons.c
$(CC) `gtk-config --cflags` `gtk-config --libs` radiobuttons.c -o radiobuttons
$(CC) `gtk-config --cflags` radiobuttons.c -o radiobuttons `gtk-config --libs`
clean:
rm -f *.o radiobuttons

View File

@ -2,7 +2,7 @@
CC = gcc
rangewidgets: rangewidgets.c
$(CC) `gtk-config --cflags` `gtk-config --libs` rangewidgets.c -o rangewidgets
$(CC) `gtk-config --cflags` rangewidgets.c -o rangewidgets `gtk-config --libs`
clean:
rm -f *.o rangewidgets

View File

@ -2,7 +2,7 @@
CC = gcc
rulers: rulers.c
$(CC) `gtk-config --cflags` `gtk-config --libs` rulers.c -o rulers
$(CC) `gtk-config --cflags` rulers.c -o rulers `gtk-config --libs`
clean:
rm -f *.o rulers

View File

@ -1,8 +1,8 @@
CC = gcc
scribble-simple: scribble-simple.c
$(CC) `gtk-config --cflags` `gtk-config --libs` scribble-simple.c -o scribble-simple
scribble-simple: scribble-simple.c
$(CC) `gtk-config --cflags` scribble-simple.c -o scribble-simple `gtk-config --libs`
clean:
rm -f scribble-simple
rm -f *.o scribble-simple

View File

@ -2,7 +2,7 @@
CC = gcc
scrolledwin: scrolledwin.c
$(CC) `gtk-config --cflags` `gtk-config --libs` scrolledwin.c -o scrolledwin
$(CC) `gtk-config --cflags` scrolledwin.c -o scrolledwin `gtk-config --libs`
clean:
rm -f *.o scrolledwin

View File

@ -4,10 +4,10 @@ CC = gcc
all: gettargets setselection
gettargets: gettargets.c
$(CC) `gtk-config --cflags` `gtk-config --libs` gettargets.c -o gettargets
$(CC) `gtk-config --cflags` gettargets.c -o gettargets `gtk-config --libs`
setselection: setselection.c
$(CC) `gtk-config --cflags` `gtk-config --libs` setselection.c -o setselection
$(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs`
clean:
rm -f *.o gettargets setselection

View File

@ -2,7 +2,7 @@
CC = gcc
statusbar: statusbar.c
$(CC) `gtk-config --cflags` `gtk-config --libs` statusbar.c -o statusbar
$(CC) `gtk-config --cflags` statusbar.c -o statusbar `gtk-config --libs`
clean:
rm -f *.o statusbar

View File

@ -2,7 +2,7 @@
CC = gcc
table: table.c
$(CC) `gtk-config --cflags` `gtk-config --libs` table.c -o table
$(CC) `gtk-config --cflags` table.c -o table `gtk-config --libs`
clean:
rm -f *.o table

View File

@ -2,7 +2,7 @@
CC = gcc
text: text.c
$(CC) `gtk-config --cflags` `gtk-config --libs` text.c -o text
$(CC) `gtk-config --cflags` text.c -o text `gtk-config --libs`
clean:
rm -f *.o text

View File

@ -2,7 +2,7 @@
CC = gcc
ttt_test: tictactoe.o ttt_test.o
$(CC) `gtk-config --libs` ttt_test.o tictactoe.o -o ttt_test
$(CC) ttt_test.o tictactoe.o -o ttt_test `gtk-config --libs`
ttt_test.o: ttt_test.c tictactoe.h
$(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o

View File

@ -2,7 +2,7 @@
CC = gcc
tree: tree.c
$(CC) `gtk-config --cflags` `gtk-config --libs` tree.c -o tree
$(CC) `gtk-config --cflags` tree.c -o tree `gtk-config --libs`
clean:
rm -f *.o tree

View File

@ -2,7 +2,7 @@
CC = gcc
wheelbarrow: wheelbarrow.c
$(CC) `gtk-config --cflags` `gtk-config --libs` wheelbarrow.c -o wheelbarrow
$(CC) `gtk-config --cflags` wheelbarrow.c -o wheelbarrow `gtk-config --libs`
clean:
rm -f *.o wheelbarrow

View File

@ -24,7 +24,7 @@ static gint gdk_xid_compare (XID *a,
XID *b);
GHashTable *xid_ht = NULL;
static GHashTable *xid_ht = NULL;
void

View File

@ -24,7 +24,7 @@ static gint gdk_xid_compare (XID *a,
XID *b);
GHashTable *xid_ht = NULL;
static GHashTable *xid_ht = NULL;
void

View File

@ -91,6 +91,8 @@ static void gtk_window_read_rcfiles (GtkWidget *widget,
GdkEventClient *event);
static void gtk_window_draw (GtkWidget *widget,
GdkRectangle *area);
static void gtk_window_paint (GtkWidget *widget,
GdkRectangle *area);
static gint gtk_window_expose (GtkWidget *widget,
GdkEventExpose *event);
static void gtk_window_style_set (GtkWidget *widget,