110 lines
3.2 KiB
C++
110 lines
3.2 KiB
C++
#ifndef TABWIDGET_H
|
|
#define TABWIDGET_H
|
|
|
|
#include "gui/tabbar.h"
|
|
#include "gui/tabcontent.h"
|
|
|
|
#include <QTabWidget>
|
|
#include <QUrl>
|
|
|
|
|
|
class CornerButton;
|
|
class Message;
|
|
class FeedMessageViewer;
|
|
|
|
class TabWidget : public QTabWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
// Constructors and destructors.
|
|
explicit TabWidget(QWidget *parent = 0);
|
|
virtual ~TabWidget();
|
|
|
|
// Manimulators for tabs.
|
|
int addTab(TabContent *widget, const QString &,
|
|
const TabBar::TabType &type = TabBar::NonClosable);
|
|
int addTab(TabContent *widget, const QIcon &icon,
|
|
const QString &label, const TabBar::TabType &type = TabBar::NonClosable);
|
|
int insertTab(int index, QWidget *widget, const QString &label,
|
|
const TabBar::TabType &type = TabBar::Closable);
|
|
int insertTab(int index, QWidget *widget, const QIcon &icon,
|
|
const QString &label, const TabBar::TabType &type = TabBar::NonClosable);
|
|
void removeTab(int index);
|
|
|
|
// Returns tab bar.
|
|
inline TabBar *tabBar() {
|
|
return static_cast<TabBar*>(QTabWidget::tabBar());
|
|
}
|
|
|
|
inline TabContent *widget(int index) const {
|
|
return static_cast<TabContent*>(QTabWidget::widget(index));
|
|
}
|
|
|
|
// Initializes TabWidget with tabs, this includes initialization
|
|
// of main "Feeds" widget.
|
|
void initializeTabs();
|
|
|
|
// Sets up icons for this TabWidget.
|
|
void setupIcons();
|
|
|
|
// Accessor to feed/message viewer.
|
|
inline FeedMessageViewer *feedMessageViewer() const {
|
|
return m_feedMessageViewer;
|
|
}
|
|
|
|
protected:
|
|
// Creates necesary connections.
|
|
void createConnections();
|
|
|
|
// Sets up properties of custom corner button.
|
|
void setupCornerButton();
|
|
|
|
// Handlers of insertin/removing of tabs.
|
|
void tabInserted(int index);
|
|
void tabRemoved(int index);
|
|
|
|
public slots:
|
|
// Fixes tabs indexes.
|
|
void fixContentAfterIndexChange(int from);
|
|
void fixContentsAfterMove(int from, int to);
|
|
|
|
// Fixes indexes of tab contents.
|
|
void fixContentsIndexes(int starting_index, int ending_index);
|
|
|
|
// Called when number of tab pages changes.
|
|
void checkTabBarVisibility();
|
|
|
|
// Changes icon/text of the tab.
|
|
void changeTitle(int index, const QString &new_title);
|
|
void changeIcon(int index, const QIcon &new_icon);
|
|
|
|
// Closes tab with given index and deletes contained widget.
|
|
bool closeTab(int index);
|
|
bool closeCurrentTab();
|
|
|
|
// Closes all "closable" tabs except the active tab.
|
|
void closeAllTabsExceptCurrent();
|
|
|
|
// Open single or multiple (newspaper mode) messages in new tab.
|
|
int addBrowserWithMessages(const QList<Message> &messages);
|
|
|
|
// Adds new WebBrowser tab to global TabWidget.
|
|
int addEmptyBrowser();
|
|
|
|
// Adds new WebBrowser with link. This is used when user
|
|
// selects to "Open link in new tab.".
|
|
int addLinkedBrowser(const QUrl &initial_url = QUrl());
|
|
int addLinkedBrowser(const QString &initial_url);
|
|
|
|
// General method for adding WebBrowsers.
|
|
int addBrowser(bool move_after_current,
|
|
bool make_active,
|
|
const QUrl &initial_url = QUrl());
|
|
|
|
private:
|
|
CornerButton *m_cornerButton;
|
|
FeedMessageViewer *m_feedMessageViewer;
|
|
};
|
|
|
|
#endif // TABWIDGET_H
|