Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2003 in orxonox.OLD for orxonox/branches/gui/guicc/orxonox_gui.cc


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.