Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui_banner.cc @ 3148

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

orxonox/trunk/gui: banner Window is as it should be

File size: 3.1 KB
Line 
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*/
31OrxonoxGuiBanner::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*/
61OrxonoxGuiBanner::~OrxonoxGuiBanner ()
62{
63}
64
65/**
66    \brief Opens up our LOGO-Window.\n
67    it creates a new one if it has not yet been opened.\n
68    it shows it if it has been created
69*/
70void OrxonoxGuiBanner::logoWindowOpen()
71{
72  logoWindow->open();
73}
74
75/**
76   \brief Hides Window through ~Window();
77*/
78void OrxonoxGuiBanner::logoWindowClose()
79{
80  logoWindow->close();
81}
82
83/**
84   \brief Returns an EventBox
85   \return The EventBox, that holds the Banner.
86*/
87Widget* OrxonoxGuiBanner::getWidget ()
88{
89  return bannerEventBox;
90}
91
92/**
93   \brief opens up the banner-window.\n
94   this is the Signal that does it. !!SIGNALS ARE STATIC!!
95   \param widget the widget that did it!
96   \param event the event that did it!
97   \param banner the Object that holds the banner-logo-window
98*/
99gint OrxonoxGuiBanner::LogoWindowOpen (GtkWidget* widget, GdkEvent* event, void* banner)
100{
101  static_cast<OrxonoxGuiBanner*>(banner)->logoWindowOpen();
102}
103
104/**
105   \brief closes the banner-window.\n
106   this is the Signal that does it. !!SIGNALS ARE STATIC!!
107   \param widget the widget that did it!
108   \param event the event that did it!
109   \param banner the Object that holds the banner-logo-window
110*/
111gint OrxonoxGuiBanner::LogoWindowClose (GtkWidget *widget, GdkEvent* event, void* banner)
112{
113  static_cast<OrxonoxGuiBanner*>(banner)->logoWindowClose();
114 
115}
Note: See TracBrowser for help on using the repository browser.