Files
qt-creator/src/plugins/coreplugin/editortoolbar.h
Kai Köhne 56baf8c058 Remove GPL-3.0+ from license identifiers
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...

While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only

Change was done by running

  find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;

Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2023-01-06 11:15:13 +00:00

93 lines
2.4 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "core_global.h"
#include <utils/styledbar.h>
#include <functional>
QT_BEGIN_NAMESPACE
class QMenu;
QT_END_NAMESPACE
namespace Core {
class IEditor;
class IDocument;
struct EditorToolBarPrivate;
/**
* Fakes an IEditor-like toolbar for design mode widgets such as Qt Designer and Bauhaus.
* Creates a combobox for open files and lock and close buttons on the right.
*/
class CORE_EXPORT EditorToolBar : public Utils::StyledBar
{
Q_OBJECT
public:
explicit EditorToolBar(QWidget *parent = nullptr);
~EditorToolBar() override;
using MenuProvider = std::function<void(QMenu*)>;
enum ToolbarCreationFlags { FlagsNone = 0, FlagsStandalone = 1 };
/**
* Adds an editor whose state is listened to, so that the toolbar can be kept up to date
* with regards to locked status and tooltips.
*/
void addEditor(IEditor *editor);
/**
* Sets the editor and adds its custom toolbar to the widget.
*/
void setCurrentEditor(IEditor *editor);
void setToolbarCreationFlags(ToolbarCreationFlags flags);
void setMenuProvider(const MenuProvider &provider);
/**
* Adds a toolbar to the widget and sets invisible by default.
*/
void addCenterToolBar(QWidget *toolBar);
void setNavigationVisible(bool isVisible);
void setCanGoBack(bool canGoBack);
void setCanGoForward(bool canGoForward);
void removeToolbarForEditor(IEditor *editor);
void setCloseSplitEnabled(bool enable);
void setCloseSplitIcon(const QIcon &icon);
signals:
void closeClicked();
void goBackClicked();
void goForwardClicked();
void horizontalSplitClicked();
void verticalSplitClicked();
void splitNewWindowClicked();
void closeSplitClicked();
void listSelectionActivated(int row);
void currentDocumentMoved();
protected:
bool eventFilter(QObject *obj, QEvent *event) override;
private:
static void changeActiveEditor(int row);
static void makeEditorWritable();
void checkDocumentStatus(IDocument *document);
void closeEditor();
void updateActionShortcuts();
void updateDocumentStatus(IDocument *document);
void fillListContextMenu(QMenu *menu);
void updateToolBar(QWidget *toolBar);
EditorToolBarPrivate *d;
};
} // namespace Core