6e8fbca745
match the genesis editor version 1.3.0.653.
212 lines
5.0 KiB
C++
212 lines
5.0 KiB
C++
/*!
|
|
@file
|
|
@author Albert Semenov
|
|
@date 10/2008
|
|
*/
|
|
/*
|
|
This file is part of MyGUI.
|
|
|
|
MyGUI is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
MyGUI is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __MYGUI_EVENT_PAIR_H__
|
|
#define __MYGUI_EVENT_PAIR_H__
|
|
|
|
#include "MyGUI_Prerequest.h"
|
|
|
|
namespace MyGUI
|
|
{
|
|
|
|
template <typename EventObsolete, typename Event>
|
|
class EventPair
|
|
{
|
|
public:
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator = (T* _delegate)
|
|
{
|
|
m_eventObsolete = _delegate;
|
|
m_event = nullptr;
|
|
}
|
|
|
|
MYGUI_OBSOLETE("use : operator += ")
|
|
void operator = (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete = nullptr;
|
|
m_event = _delegate;
|
|
}
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator += (T* _delegate)
|
|
{
|
|
m_eventObsolete += _delegate;
|
|
m_event.clear();
|
|
}
|
|
|
|
void operator += (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete.clear();
|
|
m_event += _delegate;
|
|
}
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator -= (T* _delegate)
|
|
{
|
|
m_eventObsolete -= _delegate;
|
|
m_event.clear();
|
|
}
|
|
|
|
void operator -= (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete.clear();
|
|
m_event -= _delegate;
|
|
}
|
|
|
|
template <typename TP1>
|
|
void operator()( TP1 p1 )
|
|
{
|
|
m_eventObsolete(p1);
|
|
m_event(p1);
|
|
}
|
|
|
|
template <typename TP1, typename TP2>
|
|
void operator()( TP1 p1, TP2 p2 )
|
|
{
|
|
m_eventObsolete(p1, p2);
|
|
m_event(p1, p2);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3);
|
|
m_event(p1, p2, p3);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3, p4);
|
|
m_event(p1, p2, p3, p4);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4, typename TP5>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4, TP5 p5 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3, p4, p5);
|
|
m_event(p1, p2, p3, p4, p5);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4, typename TP5, typename TP6>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4, TP5 p5, TP6 p6 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3, p4, p5, p6);
|
|
m_event(p1, p2, p3, p4, p5, p6);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4, typename TP5, typename TP6, typename TP7>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4, TP5 p5, TP6 p6, TP7 p7 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3, p4, p5, p6, p7);
|
|
m_event(p1, p2, p3, p4, p5, p6, p7);
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4, typename TP5, typename TP6, typename TP7, typename TP8>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4, TP5 p5, TP6 p6, TP7 p7, TP8 p8 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3, p4, p5, p6, p7, p8);
|
|
m_event(p1, p2, p3, p4, p5, p6, p7, p8);
|
|
}
|
|
|
|
bool empty() const
|
|
{
|
|
return m_eventObsolete.empty() && m_event.empty();
|
|
}
|
|
|
|
public:
|
|
EventObsolete m_eventObsolete;
|
|
Event m_event;
|
|
};
|
|
|
|
template <typename EventObsolete, typename Event>
|
|
class EventPair3to4
|
|
{
|
|
public:
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator = (T* _delegate)
|
|
{
|
|
m_eventObsolete = _delegate;
|
|
m_event = nullptr;
|
|
}
|
|
|
|
MYGUI_OBSOLETE("use : operator += ")
|
|
void operator = (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete = nullptr;
|
|
m_event = _delegate;
|
|
}
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator += (T* _delegate)
|
|
{
|
|
m_eventObsolete += _delegate;
|
|
m_event.clear();
|
|
}
|
|
|
|
void operator += (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete.clear();
|
|
m_event += _delegate;
|
|
}
|
|
|
|
template <typename T>
|
|
MYGUI_OBSOLETE("use : signature : Event::IDelegate * _delegate")
|
|
void operator -= (T* _delegate)
|
|
{
|
|
m_eventObsolete -= _delegate;
|
|
m_event.clear();
|
|
}
|
|
|
|
void operator -= (typename Event::IDelegate* _delegate)
|
|
{
|
|
m_eventObsolete.clear();
|
|
m_event -= _delegate;
|
|
}
|
|
|
|
template <typename TP1, typename TP2, typename TP3, typename TP4>
|
|
void operator()( TP1 p1, TP2 p2, TP3 p3, TP4 p4 )
|
|
{
|
|
m_eventObsolete(p1, p2, p3);
|
|
m_event(p1, p2, p3, p4);
|
|
}
|
|
|
|
bool empty() const
|
|
{
|
|
return m_eventObsolete.empty() && m_event.empty();
|
|
}
|
|
|
|
public:
|
|
EventObsolete m_eventObsolete;
|
|
Event m_event;
|
|
};
|
|
|
|
} // namespace MyGUI
|
|
|
|
#endif // __MYGUI_EVENT_PAIR_H__
|