diff --git a/src/gui/qt/gamelobbydialog/mygamelisttreewidget.h b/src/gui/qt/gamelobbydialog/mygamelisttreewidget.h new file mode 100644 index 00000000..b27a6137 --- /dev/null +++ b/src/gui/qt/gamelobbydialog/mygamelisttreewidget.h @@ -0,0 +1,40 @@ +// +// C++ Interface: MyGameListTreeWidget +// +// Description: +// +// +// Author: FThauer FHammer , (C) 2007 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef MYGAMELISTTREEWIDGET_H +#define MYGAMELISTTREEWIDGET_H + +#include +#include + +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