Page principale | Liste des namespaces | Hiérarchie des classes | Liste par ordre alphabétique | Liste des composants | Liste des fichiers | Membres des namespaces | Composants | Déclarations

ExCWindowLabel.cpp

Aller à la documentation de ce fichier.
00001 /*
00002  * ExNihilo 3D Engine
00003  * 
00004  *  This program is free software; you can redistribute it and/or modify
00005  *  it under the terms of the GNU General Public License as published by
00006  *  the Free Software Foundation; either version 2 of the License, or
00007  *  (at your option) any later version.
00008  *
00009  *  This program is distributed in the hope that it will be useful,
00010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *  GNU Library General Public License for more details.
00013  *
00014  *  You should have received a copy of the GNU General Public License
00015  *  along with this program; if not, write to the Free Software
00016  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00017  *
00018  * Please read AUTHORS file !!!
00019  * 
00020  *
00021  */
00022 
00023 #include "ExCWindowLabel.h"
00024 //--------------------------------
00025 // Constructor // Destructor
00026 //--------------------------------
00027 ExCWindowLabel::ExCWindowLabel(void)
00028 {
00029 Guard(ExCWindowLabel::ExCWindowLabel(void))
00030         Init();
00031 UnGuard
00032 }
00033 
00034 ExCWindowLabel::ExCWindowLabel(ExCVec2D Size,ExCVec2D Position)
00035 {
00036 Guard(ExCWindowLabel::ExCWindowLabel(ExCVec2D Size,ExCVec2D Position))
00037         Init();
00038         SetPosition(Position);
00039         SetOldPosition(Position);
00040         SetWindowSize(Size);
00041         SetOldWindowSize(Size);
00042 UnGuard
00043 }
00044 
00045 ExCWindowLabel::~ExCWindowLabel(void)
00046 {
00047 }
00048 //--------------------------------
00049 // Methode
00050 //--------------------------------
00051 void ExCWindowLabel::Init(void)
00052 {
00053 Guard(void ExCWindowLabel::Init(void))
00054         ExCWindowObject::Init();
00055         SetName("ExCWindowLabel");
00056         SetType(typeid(this).name());
00057         SetWindowTitle("Static Label");
00058         ShowWindowTitle(true);
00059         SetBackroundColor(ExCVec3D(0.98f,0.98f,0.98f));
00060         SetBorderColor(ExCVec3D(0.4f,0.4f,0.4f));
00061 UnGuard
00062 }
00063 
00064 void ExCWindowLabel::Draw(void)
00065 {
00066 Guard(void ExCWindowLabel::Draw(void))
00067         ExCWindowObject::Draw();
00068 UnGuard
00069 }
00070 
00071 ExCAction ExCWindowLabel::InputCommand(ExCCommand Command)
00072 {
00073 Guard(ExCAction ExCWindowLabel::InputCommand(ExCCommand Command))
00074         //std::cout<<"ExCWindowLabel::Input Command window:"<<Command.m_Command<<std::endl;
00075         for(unsigned int i=0;i<m_VecCommandAction.size();i++)
00076         {
00077                 if(m_VecCommandAction.at(i).first.m_Command==Command.m_Command)
00078                 {
00079                         return m_VecCommandAction.at(i).second;
00080                 }
00081         }
00082         return NOTHING;
00083 UnGuard
00084 }
00085 
00086 ExCAction ExCWindowLabel::InputAction(ExCAction Action)
00087 {
00088 Guard(ExCAction ExCWindowLabel::InputAction(ExCAction Action))
00089         return NOTHING;
00090 UnGuard
00091 }

Généré le Tue Oct 28 12:43:34 2003 pour ExNihilo par doxygen 1.3.4