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

ExCWindowButtonSwitchOnMouse.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 "ExCWindowButtonSwitchOnMouse.h"
00024 //--------------------------------
00025 // Constructor // Destructor
00026 //--------------------------------
00027 ExCWindowButtonSwitchOnMouse::ExCWindowButtonSwitchOnMouse(void)
00028 {
00029 Guard(ExCWindowButtonSwitchOnMouse::ExCWindowButtonSwitchOnMouse(void))
00030         Init();
00031 UnGuard
00032 }
00033 
00034 ExCWindowButtonSwitchOnMouse::ExCWindowButtonSwitchOnMouse(ExCVec2D Size,ExCVec2D Position)
00035 {
00036 Guard(ExCWindowButtonSwitchOnMouse::ExCWindowButtonSwitchOnMouse(ExCVec2D Size,ExCVec2D Position))
00037         Init();
00038         SetPosition(Position);
00039         SetOldPosition(Position);
00040         SetWindowSize(Size);
00041         SetOldWindowSize(Size);
00042 UnGuard
00043 }
00044 
00045 ExCWindowButtonSwitchOnMouse::~ExCWindowButtonSwitchOnMouse(void)
00046 {
00047 }
00048 //--------------------------------
00049 // Methode
00050 //--------------------------------
00051 void ExCWindowButtonSwitchOnMouse::Init(void)
00052 {
00053 Guard(void ExCWindowButtonSwitchOnMouse::Init(void))
00054         ExCWindowObject::Init();
00055         SetName("ExCWindowButtonSwitchOnMouse");
00056         SetType(typeid(this).name());
00057         ShowWindowTitle(true);
00058         m_StateButton=false;
00059 UnGuard
00060 }
00061 
00062 void ExCWindowButtonSwitchOnMouse::Draw(void)
00063 {
00064 Guard(void ExCWindowButtonSwitchOnMouse::Draw(void))
00065         
00066         ExCWindowObject::Draw();
00067         //m_StateButton=false;
00068         
00069         if (m_StateButton)
00070         {
00071                 std::cout<<"In button"<<std::endl;
00072         }else
00073         {
00074                 std::cout<<"Out button"<<std::endl;
00075         }
00076         m_StateButton=false;
00077         SwitchValue();
00078 UnGuard
00079 }
00080 
00081 ExCAction ExCWindowButtonSwitchOnMouse::InputCommand(ExCCommand Command)
00082 {
00083 Guard(ExCAction ExCWindowButtonSwitchOnMouse::InputCommand(ExCCommand Command))
00084         //std::cout<<"ExCWindowButtonSwitchOnMouse::Input Command window:"<<Command.m_Command<<std::endl;
00085         /*if(Command.m_Command==MOUSE_MOTION_PASSIVE)
00086         {*/
00087                 //std::cout<<"In button"<<std::endl;
00088                 m_StateButton=true;
00089                 this->SwitchValue();
00090         //}
00091         
00092         for(unsigned int i=0;i<m_VecCommandAction.size();i++)
00093         {
00094                 if(m_VecCommandAction.at(i).first.m_Command==Command.m_Command)
00095                 {
00096                         //SwitchValue();
00097                         return m_VecCommandAction.at(i).second;
00098                 }
00099         }
00100         return NOTHING;
00101 UnGuard
00102 }
00103 
00104 ExCAction ExCWindowButtonSwitchOnMouse::InputAction(ExCAction Action)
00105 {
00106 Guard(ExCAction ExCWindowButtonSwitchOnMouse::InputAction(ExCAction Action))
00107         return NOTHING;
00108 UnGuard
00109 }
00110 
00111 void ExCWindowButtonSwitchOnMouse::SwitchValue(void)
00112 {
00113 Guard(void ExCWindowButtonSwitchOnMouse::SwitchValue(void))
00114         ExCWindowButton *ValueSource;
00115         if (m_StateButton)
00116         {
00117                 ValueSource=m_Butt1;
00118         }else
00119         {
00120                 ValueSource=m_Butt2;
00121         }
00122         //Title
00123         m_ShowWindowTitle=ValueSource->IsShowWindowTitle();
00124         m_WindowTitle=ValueSource->GetWindowTitle();
00125         m_WindowOldTitle=ValueSource->GetWindowOldTitle();
00126         m_WindowTitleColor=ValueSource->GetWindowTitleColor();
00127         //Color and blending
00128         m_Blending=ValueSource->IsBackroundBlending();
00129         m_BackroundBlending=ValueSource->GetBackroundBlending();
00130         m_BackroundColor=ValueSource->GetBackroundColor();
00131         //Border 
00132         m_BorderColor=ValueSource->GetBorderColor();
00133         m_BorderSize=ValueSource->GetBorderSize();
00134         m_ShowBorder=ValueSource->GetShowBorder();
00135         //Texturing
00136         m_BackroundIsTexturing1=ValueSource->IsBackroundTexturing1();
00137         m_BackroundTexture1=ValueSource->GetBackroundTexture1();
00138         m_BackroundIsTexturing2=ValueSource->IsBackroundTexturing2();
00139         m_BackroundTexture2=ValueSource->GetBackroundTexture2();
00140         m_TextureIsMouving=ValueSource->IsTextureIsMouving();
00141         m_TextureMouvingVec=ValueSource->GetTextureMouvingVec();
00142         m_VecCommandAction=ValueSource->GetVecActionCommand();
00143 UnGuard
00144 }

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