mainwindow --> gametable

This commit is contained in:
doitux
2008-05-05 07:46:19 +00:00
parent 4b04aedc3f
commit f2defd033d
59 changed files with 14825 additions and 7600 deletions
+43
View File
@@ -0,0 +1,43 @@
//
// 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