44 lines
651 B
C++
44 lines
651 B
C++
//
|
|
// C++ Interface: MyRightTabWidget
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef MYRIGHTTABWIDGET_H
|
|
#define MYRIGHTTABWIDGET_H
|
|
|
|
#include <QtGui>
|
|
#include <QtCore>
|
|
|
|
class MyRightTabWidget : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyRightTabWidget(QGroupBox*);
|
|
|
|
~MyRightTabWidget();
|
|
|
|
|
|
void paintEvent(QPaintEvent * event);
|
|
// void startBlinkChatTab();
|
|
// void stopBlinkChatTab();
|
|
// void showDefaultChatTab();
|
|
|
|
public slots:
|
|
|
|
// void blinkChatTab();
|
|
|
|
private:
|
|
|
|
// QTimer *chatBlinkTimer;
|
|
QTabBar *myTabBar;
|
|
|
|
};
|
|
|
|
#endif
|