/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** 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. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef LOCATORPLUGIN_H #define LOCATORPLUGIN_H #include "ilocatorfilter.h" #include "directoryfilter.h" #include "executefilter.h" #include #include #include #include #include #if QT_VERSION >= 0x050000 # include #endif namespace Locator { namespace Internal { class LocatorWidget; class OpenDocumentsFilter; class FileSystemFilter; class SettingsPage; class LocatorPlugin; class LocatorPlugin : public ExtensionSystem::IPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Locator.json") public: LocatorPlugin(); ~LocatorPlugin(); bool initialize(const QStringList &arguments, QString *errorMessage); void extensionsInitialized(); bool delayedInitialize(); QList filters(); QList customFilters(); void setFilters(QList f); void setCustomFilters(QList f); int refreshInterval(); void setRefreshInterval(int interval); public slots: void refresh(QList filters = QList()); void saveSettings(); void openLocator(); private slots: void updatePlaceholderText(Core::Command *command = 0); private: void loadSettings(); template void loadSettingsHelper(S *settings); LocatorWidget *m_locatorWidget; SettingsPage *m_settingsPage; bool m_settingsInitialized; QList m_filters; QList m_customFilters; int m_refreshInterval; QTimer m_refreshTimer; OpenDocumentsFilter *m_openDocumentsFilter; FileSystemFilter *m_fileSystemFilter; ExecuteFilter *m_executeFilter; }; template void LocatorPlugin::loadSettingsHelper(S *settings) { settings->beginGroup(QLatin1String("QuickOpen")); m_refreshTimer.setInterval(settings->value(QLatin1String("RefreshInterval"), 60).toInt() * 60000); foreach (ILocatorFilter *filter, m_filters) { if (settings->contains(filter->id())) { const QByteArray state = settings->value(filter->id()).toByteArray(); if (!state.isEmpty()) filter->restoreState(state); } } settings->beginGroup(QLatin1String("CustomFilters")); QList customFilters; const QStringList keys = settings->childKeys(); foreach (const QString &key, keys) { ILocatorFilter *filter = new DirectoryFilter; filter->restoreState(settings->value(key).toByteArray()); m_filters.append(filter); customFilters.append(filter); } setCustomFilters(customFilters); settings->endGroup(); settings->endGroup(); } } // namespace Internal } // namespace Locator #endif // LOCATORPLUGIN_H