2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Copyright (C) 2016 Falko Arps
|
|
|
|
|
** Copyright (C) 2016 Sven Klein
|
|
|
|
|
** Copyright (C) 2016 Giuliano Schneider
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01: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.
|
2008-12-02 14:17:16 +01: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
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "inavigationwidgetfactory.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QKeySequence>
|
2009-01-26 15:27:04 +01:00
|
|
|
|
2013-12-11 15:37:48 +01:00
|
|
|
/*!
|
|
|
|
|
\class Core::INavigationWidgetFactory
|
2020-03-18 13:32:02 +01:00
|
|
|
\ingroup mainclasses
|
|
|
|
|
\inmodule QtCreator
|
2013-12-11 15:37:48 +01:00
|
|
|
\brief The INavigationWidgetFactory class provides new instances of navigation widgets.
|
|
|
|
|
|
|
|
|
|
A navigation widget factory is necessary because there can be more than one navigation widget of
|
|
|
|
|
the same type at a time. Each navigation widget is wrapped in a \l{Core::NavigationView} for
|
|
|
|
|
delivery.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class Core::NavigationView
|
|
|
|
|
\inmodule Qt Creator
|
|
|
|
|
\brief The NavigationView class is a C struct for wrapping a widget and a list of tool buttons.
|
|
|
|
|
Wrapping the widget that is shown in the content area of the navigation widget and a list of
|
|
|
|
|
tool buttons that is shown in the header above it.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
\fn QString Core::INavigationWidgetFactory::displayName() const
|
2013-12-11 15:37:48 +01:00
|
|
|
|
|
|
|
|
Returns the display name of the navigation widget, which is shown in the dropdown menu above the
|
|
|
|
|
navigation widget.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
\fn int Core::INavigationWidgetFactory::priority() const
|
2013-12-11 15:37:48 +01:00
|
|
|
|
|
|
|
|
Determines the position of the navigation widget in the dropdown menu.
|
|
|
|
|
|
|
|
|
|
0 to 1000 from top to bottom
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
\fn Id Core::INavigationWidgetFactory::id() const
|
2013-12-11 15:37:48 +01:00
|
|
|
|
|
|
|
|
Returns a unique identifier for referencing the navigation widget factory.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
\fn Core::NavigationView Core::INavigationWidgetFactory::createWidget()
|
2013-12-11 15:37:48 +01:00
|
|
|
|
|
|
|
|
Returns a \l{Core::NavigationView} containing the widget and the buttons. The ownership is given
|
|
|
|
|
to the caller.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace Core;
|
|
|
|
|
|
2017-12-08 17:20:48 +01:00
|
|
|
static QList<INavigationWidgetFactory *> g_navigationWidgetFactories;
|
|
|
|
|
|
2014-06-24 11:15:32 +02:00
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Constructs a navigation widget factory.
|
2014-06-24 11:15:32 +02:00
|
|
|
*/
|
|
|
|
|
INavigationWidgetFactory::INavigationWidgetFactory()
|
|
|
|
|
{
|
2017-12-08 17:20:48 +01:00
|
|
|
g_navigationWidgetFactories.append(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
INavigationWidgetFactory::~INavigationWidgetFactory()
|
|
|
|
|
{
|
|
|
|
|
g_navigationWidgetFactories.removeOne(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QList<INavigationWidgetFactory *> INavigationWidgetFactory::allNavigationFactories()
|
|
|
|
|
{
|
|
|
|
|
return g_navigationWidgetFactories;
|
2014-06-24 11:15:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Sets the display name for the factory to \a displayName.
|
2014-06-24 11:15:32 +02:00
|
|
|
|
|
|
|
|
\sa displayName()
|
|
|
|
|
*/
|
|
|
|
|
void INavigationWidgetFactory::setDisplayName(const QString &displayName)
|
|
|
|
|
{
|
|
|
|
|
m_displayName = displayName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Sets the \a priority for the factory.
|
2014-06-24 11:15:32 +02:00
|
|
|
|
|
|
|
|
\sa priority()
|
|
|
|
|
*/
|
|
|
|
|
void INavigationWidgetFactory::setPriority(int priority)
|
|
|
|
|
{
|
|
|
|
|
m_priority = priority;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Sets the \a id for the factory.
|
2014-06-24 11:15:32 +02:00
|
|
|
|
|
|
|
|
\sa id()
|
|
|
|
|
*/
|
|
|
|
|
void INavigationWidgetFactory::setId(Id id)
|
|
|
|
|
{
|
|
|
|
|
m_id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Sets the keyboard activation sequence for the factory to \a keys.
|
2014-06-24 11:15:32 +02:00
|
|
|
|
|
|
|
|
\sa activationSequence()
|
|
|
|
|
*/
|
|
|
|
|
void INavigationWidgetFactory::setActivationSequence(const QKeySequence &keys)
|
|
|
|
|
{
|
|
|
|
|
m_activationSequence = keys;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-11 15:37:48 +01:00
|
|
|
/*!
|
|
|
|
|
Returns the keyboard shortcut to activate an instance of a navigation widget.
|
|
|
|
|
*/
|
2010-01-27 19:03:20 +01:00
|
|
|
QKeySequence INavigationWidgetFactory::activationSequence() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-06-24 11:15:32 +02:00
|
|
|
return m_activationSequence;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-12-11 15:37:48 +01:00
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Stores the \a settings for the \a widget at \a position that was created by this factory
|
2013-12-11 15:37:48 +01:00
|
|
|
(the \a position identifies a specific navigation widget).
|
|
|
|
|
|
|
|
|
|
\sa INavigationWidgetFactory::restoreSettings()
|
|
|
|
|
*/
|
2016-09-17 18:31:56 +03:00
|
|
|
void INavigationWidgetFactory::saveSettings(QSettings * /* settings */, int /* position */, QWidget * /* widget */)
|
2008-12-11 14:35:14 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-11 15:37:48 +01:00
|
|
|
/*!
|
2020-03-25 11:29:32 +01:00
|
|
|
Reads and restores the \a settings for the \a widget at \a position that was created by this
|
2013-12-11 15:37:48 +01:00
|
|
|
factory (the \a position identifies a specific navigation widget).
|
|
|
|
|
|
|
|
|
|
\sa INavigationWidgetFactory::saveSettings()
|
|
|
|
|
*/
|
2016-09-17 18:31:56 +03:00
|
|
|
void INavigationWidgetFactory::restoreSettings(QSettings * /* settings */, int /* position */, QWidget * /* widget */)
|
2008-12-11 14:35:14 +01:00
|
|
|
{
|
|
|
|
|
}
|