Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <svx/sdr/event/eventhandler.hxx>
21 :
22 : // for SOLARIS compiler include of algorithm part of _STL is necesary to
23 : // get access to basic algos like ::std::find
24 : #include <algorithm>
25 : #include <tools/debug.hxx>
26 :
27 : //////////////////////////////////////////////////////////////////////////////
28 :
29 : namespace sdr
30 : {
31 : namespace event
32 : {
33 0 : BaseEvent::BaseEvent(EventHandler& rEventHandler)
34 0 : : mrEventHandler(rEventHandler)
35 : {
36 0 : mrEventHandler.AddEvent(*this);
37 0 : }
38 :
39 0 : BaseEvent::~BaseEvent()
40 : {
41 0 : mrEventHandler.RemoveEvent(*this);
42 0 : }
43 : } // end of namespace mixer
44 : } // end of namespace sdr
45 :
46 : //////////////////////////////////////////////////////////////////////////////
47 :
48 : namespace sdr
49 : {
50 : namespace event
51 : {
52 0 : void EventHandler::AddEvent(BaseEvent& rBaseEvent)
53 : {
54 0 : maVector.push_back(&rBaseEvent);
55 0 : }
56 :
57 0 : void EventHandler::RemoveEvent(BaseEvent& rBaseEvent)
58 : {
59 0 : if(maVector.back() == &rBaseEvent)
60 : {
61 : // the one to remove is the last, pop
62 0 : maVector.pop_back();
63 : }
64 : else
65 : {
66 : const BaseEventVector::iterator aFindResult = ::std::find(
67 0 : maVector.begin(), maVector.end(), &rBaseEvent);
68 : DBG_ASSERT(aFindResult != maVector.end(),
69 : "EventHandler::RemoveEvent: Event to be removed not found (!)");
70 0 : maVector.erase(aFindResult);
71 : }
72 0 : }
73 :
74 0 : BaseEvent* EventHandler::GetEvent()
75 : {
76 0 : if(!maVector.empty())
77 : {
78 : // get the last event, that one is fastest to be removed
79 0 : return maVector.back();
80 : }
81 : else
82 : {
83 0 : return 0L;
84 : }
85 : }
86 :
87 0 : EventHandler::EventHandler()
88 : {
89 0 : }
90 :
91 0 : EventHandler::~EventHandler()
92 : {
93 0 : while(!maVector.empty())
94 : {
95 0 : delete GetEvent();
96 : }
97 0 : }
98 :
99 : // Trigger and consume the events
100 0 : void EventHandler::ExecuteEvents()
101 : {
102 0 : for(;;)
103 : {
104 0 : BaseEvent* pEvent = GetEvent();
105 0 : if(pEvent == NULL)
106 0 : break;
107 0 : pEvent->ExecuteEvent();
108 0 : delete pEvent;
109 : }
110 0 : }
111 :
112 : // for control
113 0 : sal_Bool EventHandler::IsEmpty() const
114 : {
115 0 : return (0L == maVector.size());
116 : }
117 : } // end of namespace mixer
118 : } // end of namespace sdr
119 :
120 : //////////////////////////////////////////////////////////////////////////////
121 :
122 : namespace sdr
123 : {
124 : namespace event
125 : {
126 0 : TimerEventHandler::TimerEventHandler(sal_uInt32 nTimeout)
127 : {
128 0 : SetTimeout(nTimeout);
129 0 : Stop();
130 0 : }
131 :
132 0 : TimerEventHandler::~TimerEventHandler()
133 : {
134 0 : Stop();
135 0 : }
136 :
137 : // The timer when it is triggered; from class Timer
138 0 : void TimerEventHandler::Timeout()
139 : {
140 0 : ExecuteEvents();
141 0 : }
142 :
143 : // reset the timer
144 0 : void TimerEventHandler::Restart()
145 : {
146 0 : Start();
147 0 : }
148 : } // end of namespace mixer
149 : } // end of namespace sdr
150 :
151 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|