From 6392f5a9dfce2bf83617d49bb7f332181ec6004e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 25 May 2014 15:37:31 +0900 Subject: Revert "Finish renaming tdevelop components" This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73. --- lib/widgets/tdevtabwidget.cpp | 66 ------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 lib/widgets/tdevtabwidget.cpp (limited to 'lib/widgets/tdevtabwidget.cpp') diff --git a/lib/widgets/tdevtabwidget.cpp b/lib/widgets/tdevtabwidget.cpp deleted file mode 100644 index adfd4566..00000000 --- a/lib/widgets/tdevtabwidget.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2001-2003 * - * The KDevelop Team * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#include - -#include -#include -#include -#include - -#include "tdevtabwidget.h" - -TDevTabWidget::TDevTabWidget(TQWidget *parent, const char *name) : TQTabWidget(parent,name) -{ - m_pTabBar = new KTabBar(this, "tabbar"); - setTabBar(m_pTabBar); - connect(m_pTabBar, TQT_SIGNAL(closeWindow(const TQWidget*)), this, TQT_SIGNAL(closeWindow(const TQWidget*))); - connect(m_pTabBar, TQT_SIGNAL(closeOthers(TQWidget*)), this, TQT_SIGNAL(closeOthers(TQWidget*))); -} - -KTabBar::KTabBar(TQWidget *parent, const char *name) : TQTabBar(parent,name) -{ - m_pPopupMenu = new TQPopupMenu(this); - - TQPixmap closePixmap = TDEGlobal::instance()->iconLoader()->loadIcon( "tab_remove", TDEIcon::Small, 0, TDEIcon::DefaultState, 0, true ); - if (closePixmap.isNull()) - closePixmap = SmallIcon("fileclose"); - - m_pPopupMenu->insertItem(closePixmap, i18n("&Close"), this, TQT_SLOT(closeWindowSlot())); - m_pPopupMenu->insertItem(i18n("Close &Others"), this, TQT_SLOT(closeOthersSlot())); -} - -void KTabBar::closeWindowSlot() -{ - emit closeWindow(m_pPage); -} - -void KTabBar::closeOthersSlot() -{ - emit closeOthers(m_pPage); -} - -void KTabBar::mousePressEvent(TQMouseEvent *e) -{ - if(e->button() == Qt::RightButton) { - - TQTab *tab = selectTab(e->pos() ); - if( tab == 0L ) return; - - m_pPage = ((TDevTabWidget*)parent())->page(indexOf(tab->identifier() ) ); - if(m_pPage == 0L) return; - - m_pPopupMenu->exec(mapToGlobal(e->pos())); - } - TQTabBar::mousePressEvent(e); -} - -#include "tdevtabwidget.moc" -- cgit v1.2.1