2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 Denis Mingulov
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
#include "classviewnavigationwidgetfactory.h"
|
|
|
|
|
#include "classviewnavigationwidget.h"
|
|
|
|
|
#include "classviewconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QKeySequence>
|
|
|
|
|
#include <QSettings>
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
namespace ClassView {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
///////////////////////////////// NavigationWidgetFactory //////////////////////////////////
|
|
|
|
|
|
2013-05-24 17:35:14 +02:00
|
|
|
/*!
|
|
|
|
|
\class NavigationWidgetFactory
|
|
|
|
|
\brief The NavigationWidgetFactory class implements a singleton instance of
|
|
|
|
|
the INavigationWidgetFactory for the Class View.
|
|
|
|
|
|
|
|
|
|
Supports the \c setState public slot for adding the widget factory to or
|
|
|
|
|
removing it from \c ExtensionSystem::PluginManager.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-07-16 11:18:30 +02:00
|
|
|
NavigationWidgetFactory::NavigationWidgetFactory()
|
|
|
|
|
{
|
2014-06-24 11:15:32 +02:00
|
|
|
setDisplayName(tr("Class View"));
|
|
|
|
|
setPriority(500);
|
|
|
|
|
setId("Class View");
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::NavigationView NavigationWidgetFactory::createWidget()
|
|
|
|
|
{
|
2018-11-04 22:40:59 +01:00
|
|
|
auto widget = new NavigationWidget();
|
2021-05-10 14:06:10 +02:00
|
|
|
return {widget, widget->createToolButtons()};
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
|
|
|
|
|
/*!
|
2013-05-24 17:35:14 +02:00
|
|
|
Returns a settings prefix for \a position.
|
|
|
|
|
*/
|
2011-07-06 17:40:54 +02:00
|
|
|
static QString settingsPrefix(int position)
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
2016-09-17 18:31:56 +03:00
|
|
|
return QString::fromLatin1("ClassView.Treewidget.%1.FlatMode").arg(position);
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
//! Flat mode settings
|
|
|
|
|
|
2020-12-14 17:00:53 +01:00
|
|
|
void NavigationWidgetFactory::saveSettings(Utils::QtcSettings *settings,
|
|
|
|
|
int position,
|
|
|
|
|
QWidget *widget)
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
2018-11-04 22:40:59 +01:00
|
|
|
auto pw = qobject_cast<NavigationWidget *>(widget);
|
2010-07-16 11:18:30 +02:00
|
|
|
QTC_ASSERT(pw, return);
|
|
|
|
|
|
|
|
|
|
// .beginGroup is not used - to prevent simultaneous access
|
2016-09-17 18:31:56 +03:00
|
|
|
QString settingsGroup = settingsPrefix(position);
|
|
|
|
|
settings->setValue(settingsGroup, pw->flatMode());
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-17 18:31:56 +03:00
|
|
|
void NavigationWidgetFactory::restoreSettings(QSettings *settings, int position, QWidget *widget)
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
2018-11-04 22:40:59 +01:00
|
|
|
auto pw = qobject_cast<NavigationWidget *>(widget);
|
2010-07-16 11:18:30 +02:00
|
|
|
QTC_ASSERT(pw, return);
|
|
|
|
|
|
|
|
|
|
// .beginGroup is not used - to prevent simultaneous access
|
2016-09-17 18:31:56 +03:00
|
|
|
QString settingsGroup = settingsPrefix(position);
|
|
|
|
|
pw->setFlatMode(settings->value(settingsGroup, false).toBool());
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClassView
|