Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jun 21, 2004, 4:39:11 AM (21 years ago)
Author:
bensch
Message:

orxonox/branches/gui/guicc: added style! and labled the sliders

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/gui/guicc/orxonox_gui.cc

    r1997 r1998  
    2727   */
    2828  gtk_init (&argc, &argv);
    29 
     29  gtk_rc_parse( "rc" );
    3030
    3131  orxonoxGUI = new Window("Graphical Orxonox Launcher");
     
    448448  gtk_label_set_line_wrap (GTK_LABEL(widget), TRUE);
    449449}
     450
     451Label:: Label (char* text)
     452{
     453  is_option = 0;
     454  next = NULL;
     455  widget = gtk_label_new (text);
     456  gtk_label_set_line_wrap (GTK_LABEL(widget), TRUE);
     457}
     458
    450459Label::~Label ()
    451460{}
Note: See TracChangeset for help on using the changeset viewer.