Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/guicc/orxonox_gui_video.cc @ 1978

Last change on this file since 1978 was 1978, checked in by bensch, 21 years ago

orxonox/branches/gui/guicc: added video and audio frames. made default signal connection to slider and checkbutton

File size: 407 bytes
Line 
1#include "orxonox_gui_video.h"
2
3
4
5OrxonoxGuiVideo::OrxonoxGuiVideo ()
6{
7  videoFrame = new Frame ("Video-Options:");
8  videoBox = new Box ('v');
9 
10  fullscreen = new CheckButton ("Fullscreen-mode");
11  videoBox->fill (fullscreen);
12  wireframe = new CheckButton ("WireFrame-mode");
13  videoBox->fill (wireframe);
14
15  videoFrame->fill (videoBox);
16}
17
18Frame* OrxonoxGuiVideo::getFrame ()
19{
20  return videoFrame;
21}
Note: See TracBrowser for help on using the repository browser.