Changeset 4049 in orxonox.OLD for orxonox/branches/guiMerge/src/lib
- Timestamp:
- May 5, 2005, 12:19:31 AM (20 years ago)
- Location:
- orxonox/branches/guiMerge/src/lib/gui/gui
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/guiMerge/src/lib/gui/gui/gui.h
r4048 r4049 16 16 using namespace std; 17 17 18 #include <stdlib.h>19 20 18 #define ORXONOX_GUI_DEFAULT_CONFIG_FILE "~/.orxonox/orxonox.conf" 21 19 -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_audio.cc
r4047 r4049 26 26 #include "gui_audio.h" 27 27 28 #include "gui_gtk.h" 29 28 30 /** 29 31 \brief Creates an Audio-Frame … … 32 34 { 33 35 Frame* audioFrame; //!< The Frame that holds the audio Options. 34 Box* audioBox; //!< The Box that holds the audio Options.35 CheckButton* enableSound; //!< A Ckeckbutton for enabling Sound.36 Slider* musicVolume; //!< A Slider for music volume.37 Slider* effectsVolume; //!< A Slider for effects volume.38 36 39 37 audioFrame = new Frame("Audio-Options:"); 40 38 audioFrame->setGroupName("audio"); 41 39 { 40 Box* audioBox; //!< The Box that holds the audio Options. 42 41 audioBox = new Box('v'); 43 42 { 43 CheckButton* enableSound; //!< A Ckeckbutton for enabling Sound. 44 Slider* musicVolume; //!< A Slider for music volume. 45 Slider* effectsVolume; //!< A Slider for effects volume. 44 46 45 47 enableSound = new CheckButton("Disable Sound"); -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_audio.h
r4048 r4049 12 12 class OrxonoxGuiAudio : public OrxonoxGuiElement 13 13 { 14 private:15 Frame* audioFrame; //!< The Frame that holds the audio Options.16 Box* audioBox; //!< The Box that holds the audio Options.17 CheckButton* enableSound; //!< A Ckeckbutton for enabling Sound.18 Slider* musicVolume; //!< A Slider for music volume.19 Slider* effectsVolume; //!< A Slider for effects volume.20 14 public: 21 15 OrxonoxGuiAudio(void); -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_banner.cc
r4047 r4049 26 26 #include "gui_banner.h" 27 27 28 #include "gui_gtk.h" 29 28 30 #include "banner.xpm" 29 31 #include "logo.xpm" … … 42 44 // the logo Window 43 45 Window* logoWindow; //!< The Window that holds the Orxonox-CrewLogo. 44 EventBox* logoEventBox; //!< The EventBox that holds the Orxonox-CrewLogo. it has to be an eventbox, because Images can not receive clicks.45 46 Box* logoBox; //!< The Box that holds the Orxonox-CrewLogo 46 47 Image* logoImage; //!< The Orxonox-CrewLogo-Image … … 60 61 logoWindow = new Window("Logo"); 61 62 { 62 63 EventBox* logoEventBox; //!< The EventBox that holds the Orxonox-CrewLogo. it has to be an eventbox, because Images can not receive clicks. 64 63 65 #ifdef HAVE_GTK2 64 66 bannerEventBox->connectSignal("button_press_event", logoWindow, Window::windowOpen); -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_element.cc
r4047 r4049 17 17 18 18 #include "gui_element.h" 19 20 #include "gui_gtk.h" 19 21 20 22 using namespace std; -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_element.h
r4048 r4049 8 8 #define _GUI_ELEMENT_H 9 9 10 #include "gui_gtk.h" 10 class Widget; 11 11 12 12 //! A SuperClass for all the Different GuiElements -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_exec.cc
r4047 r4049 26 26 #include "gui_exec.h" 27 27 28 28 29 #include <string.h> 29 30 #include <stdlib.h> 30 31 #include <sys/stat.h> 31 32 #include <sys/types.h> -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_exec.h
r4048 r4049 10 10 #include "gui_element.h" 11 11 12 #include "gui_gtk.h" 12 13 using namespace std; 13 14 -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_flags.h
r4048 r4049 9 9 #include "gui.h" 10 10 #include "gui_element.h" 11 #include "gui_gtk.h" 11 12 12 13 //! Class that creates the flags-Text. -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_gtk.cc
r4047 r4049 29 29 #include <stdarg.h> 30 30 #include <string.h> 31 #include <stdlib.h> 31 32 32 33 using namespace std; -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_keys.h
r4048 r4049 9 9 #include "gui.h" 10 10 #include "gui_element.h" 11 #include "gui_gtk.h" 11 12 12 13 #ifdef HAVE_GTK2 -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_update.h
r4048 r4049 9 9 #include "gui.h" 10 10 #include "gui_element.h" 11 #include "gui_gtk.h" 11 12 12 13 #include <stdio.h> -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_video.cc
r4047 r4049 28 28 29 29 #include "glincl.h" 30 #include <stdlib.h> 30 31 31 32 /** -
orxonox/branches/guiMerge/src/lib/gui/gui/gui_video.h
r4048 r4049 8 8 #include "gui.h" 9 9 #include "gui_element.h" 10 #include "gui_gtk.h" 10 11 11 12 //! Class that creates the Video-Options.
Note: See TracChangeset
for help on using the changeset viewer.