1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
// SDPGTK
// Copyright (c) 1995-2004, Timothy M. Shead
//
// Contact: tshead@k-3d.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This program 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
// General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "sdpgtkevent.h"
#include "sdpgtkloopevents.h"
#include "sdpgtkevents.h"
#include <iostream>
////////////////////////////////////////////////////////////////////
// sdpGtkEvent
sdpGtkEvent* sdpGtkEvent::CreateEvent(SDPCSTRING EventSignal, SDPCSTRING EventName, bool After, sdpGtkObjectContainer* EventContainer, GtkObject* EventObject)
{
// Create a new event object, based on the type ...
const sdpString signal(EventSignal);
// Our "special" objects ...
if(signal == "quit")
return new sdpGtkEventQuit(EventSignal, EventName, After, EventContainer);
if(signal == "timeout")
return new sdpGtkEventTimeout(EventSignal, EventName, After, EventContainer);
if(signal == "idle")
return new sdpGtkEventIdle(EventSignal, EventName, After, EventContainer);
// Machine-generated code that instantiates "normal" event objects ...
#include "sdpgtkeventcreation.h"
std::cerr << "sdpGtkEvent::CreateEvent(): Unknown event signal \"" << signal << "\"!!!" << std::endl;
return 0;
}
sdpGtkEvent::sdpGtkEvent(SDPCSTRING EventSignal, SDPCSTRING EventName, bool After, sdpGtkObjectContainer* EventContainer) :
m_EventSignal(EventSignal),
m_EventName(EventName),
m_After(After),
m_EventContainer(EventContainer),
m_EventHandler(0)
{
// Sanity checks ...
g_assert_string(EventSignal);
g_assert_string(EventName);
g_assert(EventContainer);
}
sdpGtkEvent::~sdpGtkEvent()
{
}
bool sdpGtkEvent::IsObjectEvent()
{
return !IsLoopEvent();
}
bool sdpGtkEvent::IsLoopEvent()
{
return (m_EventSignal == "quit" || m_EventSignal == "timeout" || m_EventSignal == "idle");
}
/////////////////////////////////////////////////////////////////////
// sdpGtkObjectEvent
sdpGtkObjectEvent::sdpGtkObjectEvent(SDPCSTRING EventSignal, SDPCSTRING EventName, bool After, sdpGtkObjectContainer* EventContainer, GtkObject* EventObject) :
sdpGtkEvent(EventSignal, EventName, After, EventContainer),
m_EventObject(EventObject)
{
// Sanity checks ...
g_assert(EventObject);
}
void sdpGtkObjectEvent::Disconnect()
{
// Sanity checks ...
g_assert(m_EventHandler);
gtk_signal_disconnect(m_EventObject, m_EventHandler);
m_EventHandler = 0;
}
void sdpGtkObjectEvent::Block()
{
// Sanity checks ...
g_assert(m_EventHandler);
gtk_signal_handler_block(m_EventObject, m_EventHandler);
}
void sdpGtkObjectEvent::Unblock()
{
// Sanity checks ...
g_assert(m_EventHandler);
gtk_signal_handler_unblock(m_EventObject, m_EventHandler);
}
///////////////////////////////////////////////////////////////////////
// sdpGtkLoopEvent
sdpGtkLoopEvent::sdpGtkLoopEvent(SDPCSTRING EventSignal, SDPCSTRING EventName, bool After, sdpGtkObjectContainer* EventContainer) :
sdpGtkEvent(EventSignal, EventName, After, EventContainer)
{
g_return_if_fail(false == After);
}
gint sdpGtkLoopEvent::Event()
{
m_EventContainer->OnEvent(this);
return m_Result;
}
gint sdpGtkLoopEvent::RawEvent(gpointer EventData)
{
return ((sdpGtkLoopEvent*)EventData)->Event();
}
bool sdpGtkLoopEvent::Result()
{
return m_Result;
}
void sdpGtkLoopEvent::SetResult(bool Result)
{
m_Result = Result;
}
|