123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /*=============================================================================
- 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 CTKPLUGINTRACKERPRIVATE_H
- #define CTKPLUGINTRACKERPRIVATE_H
- #include "ctkPlugin.h"
- #include <QSharedPointer>
- #include <QMutex>
- /**
- * \ingroup PluginFramework
- */
- template<class T>
- class ctkPluginTrackerPrivate
- {
- public:
- ctkPluginTrackerPrivate(ctkPluginTracker<T>* pt,
- ctkPluginContext* context, ctkPlugin::States stateMask,
- ctkPluginTrackerCustomizer<T>* customizer);
- ~ctkPluginTrackerPrivate();
- /**
- * Accessor method for the current ctkTrackedPlugin object. This method is only
- * intended to be used by the unsynchronized methods which do not modify the
- * trackedPlugin field.
- *
- * @return The current ctkTrackedPlugin object.
- */
- QSharedPointer<ctkTrackedPlugin<T> > tracked() const;
- /* set this to true to compile in debug messages */
- static const bool DEBUG; // = false;
- /**
- * The Bundle Context used by this <code>ctkPluginTracker</code>.
- */
- ctkPluginContext* const context;
- /**
- * The <code>ctkPluginTrackerCustomizer</code> object for this tracker.
- */
- ctkPluginTrackerCustomizer<T>* customizer;
- /**
- * Tracked plugins: <code>ctkPlugin</code> object -> customized Object and
- * plugin listener slot.
- */
- QSharedPointer<ctkTrackedPlugin<T> > trackedPlugin;
- /**
- * State mask for plugins being tracked. This field contains the ORed values
- * of the plugin states being tracked.
- */
- ctkPlugin::States mask;
- mutable QMutex mutex;
- private:
- inline ctkPluginTracker<T>* q_func()
- {
- return static_cast<ctkPluginTracker<T> *>(q_ptr);
- }
- inline const ctkPluginTracker<T>* q_func() const
- {
- return static_cast<const ctkPluginTracker<T> *>(q_ptr);
- }
- friend class ctkPluginTracker<T>;
- ctkPluginTracker<T> * const q_ptr;
- };
- #include "ctkPluginTrackerPrivate.tpp"
- #endif // CTKPLUGINTRACKERPRIVATE_H
|