Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2003 in orxonox.OLD for orxonox/branches


Ignore:
Timestamp:
Jun 22, 2004, 7:52:30 AM (20 years ago)
Author:
bensch
Message:

orxonox/branches/gui/guicc: added .h-files and rc to dist, and made a border for Containers.

Location:
orxonox/branches/gui/guicc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/gui/guicc/Makefile.am

    r1996 r2003  
    33
    44bin_PROGRAMS=gui
    5 gui_SOURCES=orxonox_gui.cc orxonox_gui_video.cc orxonox_gui_audio.cc orxonox_gui_exec.cc orxonox_gui_flags.cc
     5gui_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
    610#orxonox_gui_file.cc
    711
     
    1418#  following and add `chk' to the EXTRA_DIST list
    1519#TESTS=chk
     20EXTRA_DIST = rc
    1621
    1722#  build and install the .info pages
  • orxonox/branches/gui/guicc/Makefile.in

    r1996 r2003  
    114114
    115115bin_PROGRAMS = gui
    116 gui_SOURCES = orxonox_gui.cc orxonox_gui_video.cc orxonox_gui_audio.cc orxonox_gui_exec.cc orxonox_gui_flags.cc
     116gui_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
     132EXTRA_DIST = rc
    117133subdir = guicc
    118134ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     
    144160CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
    145161        -o $@
     162COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
     163        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
     164CCLD = $(CC)
     165LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
    146166DIST_SOURCES = $(gui_SOURCES)
    147167DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
     
    393413        uninstall-am uninstall-binPROGRAMS uninstall-info-am
    394414
    395 #orxonox_gui_file.cc
    396 
    397 #  uncomment the following if bencoder requires the math library
    398 #gui_LDADD=-lm
    399 
    400 #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
    401 
    402 #  if you write a self-test script named `chk', uncomment the
    403 #  following and add `chk' to the EXTRA_DIST list
    404 #TESTS=chk
    405415
    406416#  build and install the .info pages
  • orxonox/branches/gui/guicc/orxonox_gui.cc

    r1998 r2003  
    160160  widget = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    161161  gtk_window_set_policy (GTK_WINDOW(widget), TRUE, TRUE, TRUE);
     162  gtk_container_set_border_width (GTK_CONTAINER (widget), 3);
    162163}
    163164
     
    172173  widget = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    173174  gtk_window_set_policy (GTK_WINDOW (widget), TRUE, TRUE, TRUE);
     175  gtk_container_set_border_width (GTK_CONTAINER (widget), 3);
    174176  this->setTitle (windowName);
    175177}
     
    220222  down = NULL;
    221223  widget = gtk_frame_new ("");
     224  gtk_container_set_border_width (GTK_CONTAINER (widget), 3);
    222225}
    223226Frame::Frame (char* title)
     
    230233  down = NULL;
    231234  widget = gtk_frame_new (title);
     235  gtk_container_set_border_width (GTK_CONTAINER (widget), 3);
    232236}
    233237Frame::~Frame ()
Note: See TracChangeset for help on using the changeset viewer.