Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_widget.cc @ 7062

Last change on this file since 7062 was 7062, checked in by bensch, 18 years ago

hud

File size: 2.5 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   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI
17
18#include "glgui_widget.h"
19
20#include "material.h"
21
22#include "debug.h"
23
24using namespace std;
25
26/**
27 * standard constructor
28*/
29GLGuiWidget::GLGuiWidget ( )
30{
31  this->init();
32}
33
34
35/**
36 * standard deconstructor
37 */
38GLGuiWidget::~GLGuiWidget()
39{
40
41}
42
43
44/**
45 * initializes the GUI-element
46 */
47void GLGuiWidget::init()
48{
49  this->setClassID(CL_GLGUI_WIDGET, "GLGuiWidget");
50
51  this->focusable = true;
52  this->clickable = true;
53  this->setVisibility(GLGUI_WIDGET_DEFAULT_VISIBLE);
54//  this->setParent2D((Element2D*)NULL);
55
56  this->backMat.setDiffuse(1.0, 1.0, 1.0);
57
58  this->frontModel = 0;
59
60  for (unsigned int i = 0; i < GLGuiSignalCount; i++)
61    this->widgetSignals[i] = NULL;
62}
63
64
65bool GLGuiWidget::focusOverWidget(float x, float y)
66{
67  if (this->getAbsCoor2D().x < x && this->getAbsCoor2D().x+ this->getSizeX2D() > x &&
68      this->getAbsCoor2D().y < y && this->getAbsCoor2D().y+ this->getSizeX2D() > y)
69    return true;
70  else
71    return false;
72}
73
74/**
75 * @brief connects a Signal to the Gui-Elements' Event.
76 * @param sinalType the Type of Signal to set. @see GLGuiSignalType
77 * @param signal the name of the Signal
78 */
79void GLGuiWidget::connectSignal(GLGuiSignalType signalType, const Executor& signal)
80{
81  if (signalType >= GLGuiSignalCount)
82    return;
83
84  if (this->widgetSignals[signalType] != NULL)
85    PRINTF(2)("Already connected a Signal to %s (%s) type %s... overwriting\n");
86
87  this->widgetSignals[signalType] = signal.clone();
88}
89
90/**
91 * @brief removes a Signal from a Gui-ELements' Event
92 * @param signalType the type of Signal to remove.
93 */
94void GLGuiWidget::disconnectSignal(GLGuiSignalType signalType)
95{
96  if (signalType > GLGuiSignalCount)
97    return;
98
99  this->widgetSignals[signalType] = NULL;
100}
101
102
103void GLGuiWidget::show()
104{
105  this->setVisibility(true);
106}
107
108void GLGuiWidget::hide()
109{
110  this->setVisibility(false);
111}
112
113
114void GLGuiWidget::draw() const
115{
116  this->backMat.select();
117
118  glBegin(GL_QUADS);
119   glTexCoord2i(0,1); glVertex2d(0, 0);
120   glTexCoord2i(0,0); glVertex2d(0, this->getSizeY2D());
121   glTexCoord2i(1,0); glVertex2d(this->getSizeX2D(), this->getSizeY2D());
122   glTexCoord2i(1,1); glVertex2d(this->getSizeX2D(), 0);
123  glEnd();
124}
125
Note: See TracBrowser for help on using the repository browser.