diff options
author | Denis Mingulov <[email protected]> | 2010-07-16 11:18:30 +0200 |
---|---|---|
committer | Kai Koehne <[email protected]> | 2010-07-16 11:24:02 +0200 |
commit | ae8192ad5a88384962f105bd5e18a50784d3edf0 (patch) | |
tree | c03e2856e6fa7de518e1ec064942865433929128 /src/plugins/classview/classviewplugin.cpp | |
parent | 915ba478d3ad304be86d7bc2693b17bdc85e755f (diff) |
ClassView: Initial implementation
Merge-request: 2167
Reviewed-by: Kai Koehne <[email protected]>
Diffstat (limited to 'src/plugins/classview/classviewplugin.cpp')
-rw-r--r-- | src/plugins/classview/classviewplugin.cpp | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/src/plugins/classview/classviewplugin.cpp b/src/plugins/classview/classviewplugin.cpp new file mode 100644 index 00000000000..fc69b461ccf --- /dev/null +++ b/src/plugins/classview/classviewplugin.cpp @@ -0,0 +1,89 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2010 Denis Mingulov. +** +** Contact: Nokia Corporation ([email protected]) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#include "classviewplugin.h" +#include "classviewmanager.h" +#include "classviewnavigationwidgetfactory.h" + +#include <QtCore/QtPlugin> + +namespace ClassView { +namespace Internal { + +///////////////////////////////// PluginPrivate ////////////////////////////////// +/*! + \struct PluginPrivate + \brief Private class data for \a Plugin + \sa Plugin + */ +struct PluginPrivate +{ + //! Pointer to Navi Widget Factory + QPointer<NavigationWidgetFactory> navigationWidgetFactory; + + //! Pointer to Manager + QPointer<Manager> manager; +}; + +///////////////////////////////// Plugin ////////////////////////////////// + +Plugin::Plugin() + : d_ptr(new PluginPrivate()) +{ +} + +Plugin::~Plugin() +{ +} + +bool Plugin::initialize(const QStringList &arguments, QString *errorMessage) +{ + Q_UNUSED(arguments) + Q_UNUSED(errorMessage) + + // create a navigation widget factory + d_ptr->navigationWidgetFactory = NavigationWidgetFactory::instance(); + + // add to ExtensionSystem + addAutoReleasedObject(d_ptr->navigationWidgetFactory); + + // create manager + d_ptr->manager = Manager::instance(this); + + return true; +} + +void Plugin::extensionsInitialized() +{ +} + +} // namespace Internal +} // namespace ClassView + +Q_EXPORT_PLUGIN(ClassView::Internal::Plugin) |