Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/gui/gui/orxonox_gui_flags.cc @ 4039

Last change on this file since 4039 was 4039, checked in by bensch, 19 years ago

orxonox/trunk/gui: minor change

File size: 2.9 KB
RevLine 
[2581]1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software Foundation,
18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
19
20
21   ### File Specific:
22   main-programmer: Benjamin Grauer
23
24*/
25
[2018]26#include "orxonox_gui_flags.h"
27
[2588]28/**
29   \brief Creates the Flags-Frame
30*/
[3423]31OrxonoxGuiFlags::OrxonoxGuiFlags(void)
[2018]32{
[3423]33  this->flagsFrame = new Frame("Orxonox-Startup-Flags:");
34  this->flagsBox = new Box('v');
[2018]35
[3423]36  this->flagsLabel = new Label();
37  this->flagsLabel->setSize(260,60);
38  this->flagsBox->fill(flagsLabel);
39  this->shortFlags = new CheckButton("shortFlags");
40  this->flagsBox->fill(shortFlags);
[2018]41
[3423]42  this->flagsFrame->fill(flagsBox);
[4024]43  this->setMainWidget(flagsFrame);
[3423]44}
[2018]45
[3423]46/**
47   \brief Destructs the Flags-stuff
48*/
49OrxonoxGuiFlags::~OrxonoxGuiFlags(void)
50{
51  // nothing to do here
[2018]52}
53
[2588]54/**
55   \brief Sets the Flags from widget downwards.
56   \param widget the Widget from which on to scan for deeper Options and their settings.
57*/
[3423]58void OrxonoxGuiFlags::setTextFromFlags(Widget* widget)
[2018]59{
[3423]60  FlagInfo flagInfo;
61  flagInfo.shortFlags = this->shortFlags;
62  flagInfo.flagsLabel = this->flagsLabel;
63
64  this->flagsLabel->ereaseText();
[4039]65  this->flagsLabel->appendText(progExecutable);
[3423]66  widget->walkThrough(OrxonoxGuiFlags::flagsText, &flagInfo, 0);
67  //  flagsLabel->setTitle(flagText);
[2018]68}
69
[2588]70/**
71    \brief this actually sets the flagtext, and appends it to flagText
72    \param widget like OrxonoxGuiFlags::setTextFromFlags(widget)
[3423]73    \param flagInfo Information aboout the Flag that should be updated.
[2588]74*/
[3423]75void OrxonoxGuiFlags::flagsText(Widget* widget, void* flagInfo)
[2018]76{
[3423]77  FlagInfo* info =(FlagInfo*)flagInfo;
78  if(widget->isOption >= 1)
79    if (static_cast<Option*>(widget)->value != static_cast<Option*>(widget)->defaultValue )
[2018]80      {
[3423]81        if(info->shortFlags->isActive() && static_cast<Option*>(widget)->flagNameShort)
[2018]82          {
[3423]83            info->flagsLabel->appendText(" -");
84            info->flagsLabel->appendText(static_cast<Option*>(widget)->flagNameShort);
[2018]85          }
[3423]86        else if(!info->shortFlags->isActive() && static_cast<Option*>(widget)->flagName)
[2018]87          {
[3423]88            info->flagsLabel->appendText(" --");
89            info->flagsLabel->appendText(static_cast<Option*>(widget)->flagName);
[2018]90          }
[3423]91
92        if(static_cast<Option*>(widget)->isOption == 2)
[2018]93          {
[3423]94            info->flagsLabel->appendText("=");
95            info->flagsLabel->appendInt(static_cast<Option*>(widget)->value);
[2018]96          }
97      }
98}
Note: See TracBrowser for help on using the repository browser.