Changeset 2003 in orxonox.OLD for orxonox/branches
- Timestamp:
- Jun 22, 2004, 7:52:30 AM (20 years ago)
- Location:
- orxonox/branches/gui/guicc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/gui/guicc/Makefile.am
r1996 r2003 3 3 4 4 bin_PROGRAMS=gui 5 gui_SOURCES=orxonox_gui.cc orxonox_gui_video.cc orxonox_gui_audio.cc orxonox_gui_exec.cc orxonox_gui_flags.cc 5 gui_SOURCES=orxonox_gui.cc orxonox_gui.h \ 6 orxonox_gui_video.cc orxonox_gui_video.h \ 7 orxonox_gui_audio.cc orxonox_gui_audio.h \ 8 orxonox_gui_exec.cc orxonox_gui_exec.h \ 9 orxonox_gui_flags.cc orxonox_gui_flags.h 6 10 #orxonox_gui_file.cc 7 11 … … 14 18 # following and add `chk' to the EXTRA_DIST list 15 19 #TESTS=chk 20 EXTRA_DIST = rc 16 21 17 22 # build and install the .info pages -
orxonox/branches/gui/guicc/Makefile.in
r1996 r2003 114 114 115 115 bin_PROGRAMS = gui 116 gui_SOURCES = orxonox_gui.cc orxonox_gui_video.cc orxonox_gui_audio.cc orxonox_gui_exec.cc orxonox_gui_flags.cc 116 gui_SOURCES = orxonox_gui.cc orxonox_gui.h \ 117 orxonox_gui_video.cc orxonox_gui_video.h \ 118 orxonox_gui_audio.cc orxonox_gui_audio.h \ 119 orxonox_gui_exec.cc orxonox_gui_exec.h \ 120 orxonox_gui_flags.cc orxonox_gui_flags.h 121 122 #orxonox_gui_file.cc 123 124 # uncomment the following if bencoder requires the math library 125 #gui_LDADD=-lm 126 127 #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo 128 129 # if you write a self-test script named `chk', uncomment the 130 # following and add `chk' to the EXTRA_DIST list 131 #TESTS=chk 132 EXTRA_DIST = rc 117 133 subdir = guicc 118 134 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 144 160 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ 145 161 -o $@ 162 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 163 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 164 CCLD = $(CC) 165 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ 146 166 DIST_SOURCES = $(gui_SOURCES) 147 167 DIST_COMMON = $(srcdir)/Makefile.in Makefile.am … … 393 413 uninstall-am uninstall-binPROGRAMS uninstall-info-am 394 414 395 #orxonox_gui_file.cc396 397 # uncomment the following if bencoder requires the math library398 #gui_LDADD=-lm399 400 #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo401 402 # if you write a self-test script named `chk', uncomment the403 # following and add `chk' to the EXTRA_DIST list404 #TESTS=chk405 415 406 416 # build and install the .info pages -
orxonox/branches/gui/guicc/orxonox_gui.cc
r1998 r2003 160 160 widget = gtk_window_new (GTK_WINDOW_TOPLEVEL); 161 161 gtk_window_set_policy (GTK_WINDOW(widget), TRUE, TRUE, TRUE); 162 gtk_container_set_border_width (GTK_CONTAINER (widget), 3); 162 163 } 163 164 … … 172 173 widget = gtk_window_new (GTK_WINDOW_TOPLEVEL); 173 174 gtk_window_set_policy (GTK_WINDOW (widget), TRUE, TRUE, TRUE); 175 gtk_container_set_border_width (GTK_CONTAINER (widget), 3); 174 176 this->setTitle (windowName); 175 177 } … … 220 222 down = NULL; 221 223 widget = gtk_frame_new (""); 224 gtk_container_set_border_width (GTK_CONTAINER (widget), 3); 222 225 } 223 226 Frame::Frame (char* title) … … 230 233 down = NULL; 231 234 widget = gtk_frame_new (title); 235 gtk_container_set_border_width (GTK_CONTAINER (widget), 3); 232 236 } 233 237 Frame::~Frame ()
Note: See TracChangeset
for help on using the changeset viewer.