2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Denis Mingulov
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
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
|