This commit is contained in:
doitux
2007-10-30 12:50:59 +00:00
parent 2275a8eca8
commit aac9bcb54b
@@ -0,0 +1,40 @@
//
// C++ Interface: MyGameListTreeWidget
//
// Description:
//
//
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef MYGAMELISTTREEWIDGET_H
#define MYGAMELISTTREEWIDGET_H
#include <QtGui>
#include <QtCore>
class MyGameListTreeWidget : public QTreeWidget
{
Q_OBJECT
public:
MyGameListTreeWidget(QDialog*);
~MyGameListTreeWidget();
public slots:
void paintEvent(QPaintEvent *);
// bool event(QEvent *);
void setGameListBackgroundImage(QString pmString);
void scrollContentsBy ( int dx, int dy );
private:
QPixmap gameListBGPixmap;
};
#endif