From e1781ecb6ce807cf4afd991d16c55b1d9b5f8e58 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 5 Apr 2009 17:16:28 +0200 Subject: Compiles just with 4.5.. --- src/mainview.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/mainview.cpp') diff --git a/src/mainview.cpp b/src/mainview.cpp index 70ce39fc..1c1ee678 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -59,11 +59,11 @@ MainView::MainView(QWidget *parent) , m_lineEditCompleter(0) , m_lineEdits(new QStackedWidget(this)) , m_tabBar(new TabBar(this)) + , m_parent(parent) { setTabBar(m_tabBar); loadingGitPath = KStandardDirs::locate("appdata" , "pics/loading.gif"); - kWarning() << loadingGitPath; connect(m_tabBar, SIGNAL(newTab()), this, SLOT(newWebView())); connect(m_tabBar, SIGNAL(closeTab(int)), this, SLOT(closeTab(int))); @@ -81,6 +81,20 @@ MainView::MainView(QWidget *parent) m_recentlyClosedTabsAction->setMenu(m_recentlyClosedTabsMenu); m_recentlyClosedTabsAction->setEnabled(false); +// if (oneCloseButton) +// { +// QToolButton *closeTabButton = new QToolButton(this); +// closeTabButton->setDefaultAction(m_closeTabAction); +// closeTabButton->setAutoRaise(true); +// closeTabButton->setToolButtonStyle(Qt::ToolButtonIconOnly); +// setCornerWidget(closeTabButton, Qt::TopRightCorner); +// } +// else +// { +// m_tabBar->setTabsClosable(true); +// connect(m_tabBar, SIGNAL(tabCloseRequested(int)), this, SLOT(closeTab(int))); +// } + // -- connect(this, SIGNAL(currentChanged(int)), this, SLOT(currentChanged(int))); } -- cgit v1.2.1