| 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 |  | 
|---|
| 26 | #include "orxonox_gui_banner.h" | 
|---|
| 27 |  | 
|---|
| 28 | /** | 
|---|
| 29 |    \brief Creates a new BannerEventBox and its content. | 
|---|
| 30 | */ | 
|---|
| 31 | OrxonoxGuiBanner::OrxonoxGuiBanner () | 
|---|
| 32 | { | 
|---|
| 33 |   // Banner Itself // | 
|---|
| 34 |   bannerEventBox = new EventBox ("BannerEventBox"); | 
|---|
| 35 |   bannerImage = new Image ("banner.xpm"); | 
|---|
| 36 |   bannerEventBox->fill(bannerImage); | 
|---|
| 37 |   bannerEventBox->connectSignal ("button_press_event", this, LogoWindowOpen); | 
|---|
| 38 |  | 
|---|
| 39 |   // Banner Window // | 
|---|
| 40 |   logoWindow = new Window("Logo"); | 
|---|
| 41 |   logoWindow->connectSignal("destroy", this, LogoWindowClose); | 
|---|
| 42 |   logoWindow->connectSignal("delete_event", this, LogoWindowClose); | 
|---|
| 43 |   logoEventBox = new EventBox(); | 
|---|
| 44 |   logoBox = new Box('v'); | 
|---|
| 45 |   logoLabel = new Label("OrxOnoX, " PACKAGE_VERSION); | 
|---|
| 46 |   logoImage = new Image("banner.xpm"); | 
|---|
| 47 |   logoEventBox->fill(logoImage); | 
|---|
| 48 |    | 
|---|
| 49 |   logoBox->fill(logoLabel); | 
|---|
| 50 |   logoBox->fill(logoEventBox); | 
|---|
| 51 |   logoEventBox->connectSignal("button_press_event",this,LogoWindowClose); | 
|---|
| 52 |    | 
|---|
| 53 |   logoWindow->fill (logoBox); | 
|---|
| 54 |    | 
|---|
| 55 |   Window::addWindow (logoWindow); | 
|---|
| 56 | } | 
|---|
| 57 |  | 
|---|
| 58 | /** | 
|---|
| 59 |    \brief Destructs it. | 
|---|
| 60 | */ | 
|---|
| 61 | OrxonoxGuiBanner::~OrxonoxGuiBanner () | 
|---|
| 62 | { | 
|---|
| 63 | } | 
|---|
| 64 |  | 
|---|
| 65 | /** | 
|---|
| 66 |    \brief Returns an EventBox | 
|---|
| 67 |    \return The EventBox, that holds the Banner. | 
|---|
| 68 | */ | 
|---|
| 69 | Widget* OrxonoxGuiBanner::getWidget () | 
|---|
| 70 | { | 
|---|
| 71 |   return bannerEventBox; | 
|---|
| 72 | } | 
|---|
| 73 |  | 
|---|
| 74 | /** | 
|---|
| 75 |    \brief opens up the banner-window.\n | 
|---|
| 76 |    this is the Signal that does it. !!SIGNALS ARE STATIC!! | 
|---|
| 77 |    \param widget the widget that did it! | 
|---|
| 78 |    \param event the event that did it! | 
|---|
| 79 |    \param banner the Object that holds the banner-logo-window | 
|---|
| 80 | */ | 
|---|
| 81 | gint OrxonoxGuiBanner::LogoWindowOpen (GtkWidget* widget, GdkEvent* event, void* banner) | 
|---|
| 82 | { | 
|---|
| 83 |   static_cast<OrxonoxGuiBanner*>(banner)->logoWindow->open(); | 
|---|
| 84 | } | 
|---|
| 85 |  | 
|---|
| 86 | /** | 
|---|
| 87 |    \brief closes the banner-window.\n | 
|---|
| 88 |    this is the Signal that does it. !!SIGNALS ARE STATIC!! | 
|---|
| 89 |    \param widget the widget that did it! | 
|---|
| 90 |    \param event the event that did it! | 
|---|
| 91 |    \param banner the Object that holds the banner-logo-window | 
|---|
| 92 | */ | 
|---|
| 93 | gint OrxonoxGuiBanner::LogoWindowClose (GtkWidget *widget, GdkEvent* event, void* banner) | 
|---|
| 94 | { | 
|---|
| 95 |   static_cast<OrxonoxGuiBanner*>(banner)->logoWindow->close(); | 
|---|
| 96 |    | 
|---|
| 97 | } | 
|---|