2008-05-05 07:46:19 +00:00
|
|
|
//
|
|
|
|
|
// C++ Implementation: MyRightTabWidget
|
|
|
|
|
//
|
2011-02-11 20:02:08 +00:00
|
|
|
// Description:
|
2008-05-05 07:46:19 +00:00
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#include "myrighttabwidget.h"
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
MyRightTabWidget::MyRightTabWidget(QGroupBox *parent)
|
2011-02-11 20:02:08 +00:00
|
|
|
: QTabWidget(parent), myTabBar(0)
|
2008-05-05 07:46:19 +00:00
|
|
|
{
|
|
|
|
|
myTabBar = this->tabBar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MyRightTabWidget::~MyRightTabWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void MyRightTabWidget::paintEvent(QPaintEvent * event)
|
|
|
|
|
{
|
2008-05-05 07:46:19 +00:00
|
|
|
|
|
|
|
|
QTabWidget::paintEvent(event);
|
2011-02-11 20:02:08 +00:00
|
|
|
|
2008-05-05 07:46:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|