123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*=============================================================================
- Library: CTK
- Copyright (c) German Cancer Research Center,
- Division of Medical and Biological Informatics
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =============================================================================*/
- #ifndef CTKSERVICEEVENT_H
- #define CTKSERVICEEVENT_H
- #ifdef REGISTERED
- #error Try to reorder include files (this one first)\
- or write #undef REGISTERED before including this header.\
- Cause of this problem may be dcmimage.h, which indirectly\
- includes windows.h.
- #endif
- #include <QSharedDataPointer>
- #include <QDebug>
- #include <QMetaType>
- #include "ctkPluginFrameworkExport.h"
- #include "ctkServiceReference.h"
- class ctkServiceEventData;
- /**
- * \ingroup PluginFramework
- *
- * An event from the Plugin Framework describing a service lifecycle change.
- * <p>
- * <code>ctkServiceEvent</code> objects are delivered to
- * slots connected via ctkPluginContext::connectServiceListener() when a
- * change occurs in this service's lifecycle. A type code is used to identify
- * the event type for future extendability.
- */
- class CTK_PLUGINFW_EXPORT ctkServiceEvent
- {
- QSharedDataPointer<ctkServiceEventData> d;
- public:
- enum Type {
- /**
- * This service has been registered.
- * <p>
- * This event is synchronously delivered <strong>after</strong> the service
- * has been registered with the Framework.
- *
- * @see ctkPluginContext#registerService()
- */
- REGISTERED = 0x00000001,
- /**
- * The properties of a registered service have been modified.
- * <p>
- * This event is synchronously delivered <strong>after</strong> the service
- * properties have been modified.
- *
- * @see ctkServiceRegistration#setProperties
- */
- MODIFIED = 0x00000002,
- /**
- * This service is in the process of being unregistered.
- * <p>
- * This event is synchronously delivered <strong>before</strong> the service
- * has completed unregistering.
- *
- * <p>
- * If a plugin is using a service that is <code>UNREGISTERING</code>, the
- * plugin should release its use of the service when it receives this event.
- * If the plugin does not release its use of the service when it receives
- * this event, the Framework will automatically release the plugin's use of
- * the service while completing the service unregistration operation.
- *
- * @see ctkServiceRegistration#unregister
- * @see ctkPluginContext#ungetService
- */
- UNREGISTERING = 0x00000004,
- /**
- * The properties of a registered service have been modified and the new
- * properties no longer match the listener's filter.
- * <p>
- * This event is synchronously delivered <strong>after</strong> the service
- * properties have been modified. This event is only delivered to slots
- * which were added with a non-<code>null</code> filter where the filter
- * matched the service properties prior to the modification but the filter
- * does not match the modified service properties.
- *
- * @see ctkServiceRegistration#setProperties
- */
- MODIFIED_ENDMATCH = 0x00000008
- };
- /**
- * Default constructor for use with the Qt meta object system.
- */
- ctkServiceEvent();
- ~ctkServiceEvent();
- /**
- * Can be used to check if this ctkServiceEvent instance is valid,
- * or if it has been constructed using the default constructor.
- *
- * @return <code>true</code> if this event object is valid,
- * <code>false</code> otherwise.
- */
- bool isNull() const;
- /**
- * Creates a new service event object.
- *
- * @param type The event type.
- * @param reference A <code>ctkServiceReference</code> object to the service
- * that had a lifecycle change.
- */
- ctkServiceEvent(Type type, const ctkServiceReference& reference);
- ctkServiceEvent(const ctkServiceEvent& other);
- ctkServiceEvent& operator=(const ctkServiceEvent& other);
- /**
- * Returns a reference to the service that had a change occur in its
- * lifecycle.
- * <p>
- * This reference is the source of the event.
- *
- * @return Reference to the service that had a lifecycle change.
- */
- ctkServiceReference getServiceReference() const;
- /**
- * Returns the type of event. The event type values are:
- * <ul>
- * <li>{@link #REGISTERED} </li>
- * <li>{@link #MODIFIED} </li>
- * <li>{@link #MODIFIED_ENDMATCH} </li>
- * <li>{@link #UNREGISTERING} </li>
- * </ul>
- *
- * @return Type of service lifecycle change.
- */
- Type getType() const;
- };
- Q_DECLARE_METATYPE(ctkServiceEvent)
- /**
- * \ingroup PluginFramework
- * @{
- */
- CTK_PLUGINFW_EXPORT QDebug operator<<(QDebug dbg, ctkServiceEvent::Type type);
- CTK_PLUGINFW_EXPORT QDebug operator<<(QDebug dbg, const ctkServiceEvent& event);
- /** @}*/
- #endif // CTKSERVICEEVENT_H
|