Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2614 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui.cc


Ignore:
Timestamp:
Oct 22, 2004, 12:52:33 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: added simple config-file stuffing. (only save needs it now, load still has to do it)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui.cc

    r2613 r2614  
    236236}
    237237
     238/**
     239   \brief Sets the group name under which all the lower widgets of this will be saved.
     240   \param name The name of the group.
     241*/
     242void Packer::setGroupName (char* name)
     243{
     244  groupName = name;
     245}
     246
     247/**
     248   \brief Retrieves the group name under which all the lower widgets of this will be saved.
     249   \returns name The name of the group.
     250*/
     251char* Packer::getGroupName (void)
     252{
     253  return groupName;
     254}
     255
    238256/* CONTAINERS */
    239257
     
    293311  is_option = -1;
    294312  label = "";
     313  this->setGroupName ("");
    295314  next = NULL;
    296315  down = NULL;
     
    365384  is_option = -1;
    366385  label = "";
     386  this->setGroupName("");
    367387  next = NULL;
    368388  down = NULL;
     
    408428  is_option = -1;
    409429  label = "eventBox";
     430  this->setGroupName("");
    410431  next = NULL;
    411432  down = NULL;
     
    451472  is_option = -2;
    452473  label = "box";
     474  this->setGroupName("");
    453475  next = NULL;
    454476  down = NULL;
Note: See TracChangeset for help on using the changeset viewer.