1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
SPDX-FileCopyrightText: 2006-2007 Alexander Dymo <adymo@kdevelop.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KDEVPLATFORM_SUBLIMECONTAINER_H
#define KDEVPLATFORM_SUBLIMECONTAINER_H
#include <QWidget>
#include "sublimeexport.h"
class QMenu;
class QPaintEvent;
namespace Sublime {
class View;
class Document;
class ContainerPrivate;
/**
@short Container for the widgets.
This container is placed inside mainwindow splitters to show widgets
for views in the area.
*/
class KDEVPLATFORMSUBLIME_EXPORT Container: public QWidget {
Q_OBJECT
public:
explicit Container(QWidget *parent = nullptr);
~Container() override;
/**Adds the widget for given @p view to the container.*/
void addWidget(Sublime::View* view, int position = -1);
/**Removes the widget from the container.*/
void removeWidget(QWidget *w);
/** @return true if widget is placed inside this container.*/
bool hasWidget(QWidget* w) const;
QList<View*> views() const;
int count() const;
QWidget *currentWidget() const;
void setCurrentWidget(QWidget *w);
QWidget *widget(int i) const;
int indexOf(QWidget *w) const;
View *viewForWidget(QWidget *w) const;
void setTabBarHidden(bool hide);
void setCloseButtonsOnTabs(bool show);
void setTabColor(const View* view, const QColor& color);
void setTabColors(const QHash<const View*, QColor>& colors);
void resetTabColors(const QColor& color);
/** Adds a corner widget to the left of this containers tab-bar. To remove it again, just delete it.
* The ownership otherwise goes to the container. */
void setLeftCornerWidget(QWidget* widget);
void showTooltipForTab(int tab);
bool isCurrentTab(int tab) const;
/// @return Rect in global position of the tab identified by index @p tab
QRect tabRect(int tab) const;
static bool configTabBarVisible();
static bool configCloseButtonsOnTabs();
Q_SIGNALS:
void activateView(Sublime::View* view);
void requestClose(QWidget *w);
/**
* This signal is emitted whenever the users double clicks on the free
* space next to the tab bar. Typically, a new document should be
* created.
*/
void newTabRequested();
void tabContextMenuRequested(Sublime::View* view, QMenu* menu);
/**
* @p view The view represented by the tab that was hovered
* @p Container The tab container that triggered the event
* @p idx The index of the tab that was hovered
*/
void tabToolTipRequested(Sublime::View* view, Sublime::Container* container, int idx);
void tabDoubleClicked(Sublime::View* view);
private Q_SLOTS:
void widgetActivated(int idx);
void documentTitleChanged(Sublime::Document* doc);
void statusIconChanged(Sublime::Document*);
void statusChanged(Sublime::View *view);
void requestClose(int idx);
void tabMoved(int from, int to);
void contextMenu(const QPoint&);
void doubleClickTriggered(int tab);
void documentListActionTriggered(QAction*);
private:
Sublime::View* currentView() const;
protected:
void focusInEvent(QFocusEvent*) override;
private:
const QScopedPointer<class ContainerPrivate> d_ptr;
Q_DECLARE_PRIVATE(Container)
};
}
#endif
|