OSDN Git Service

Rename boardmanager.cpp and boardmanager.h
[kita/kita.git] / kita / src / favoritelistview.h
1 /***************************************************************************
2 *   Copyright (C) 2003 by Hideki Ikemoto                                  *
3 *   ikemo@users.sourceforge.jp                                            *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) any later version.                                   *
9 ***************************************************************************/
10 #ifndef KITAFAVORITELISTVIEW_H
11 #define KITAFAVORITELISTVIEW_H
12
13 #include "threadlistview.h"
14
15 namespace Kita {
16     /**
17      *
18      * @author Hideki Ikemoto <ikemo@users.sourceforge.jp>
19      **/
20     class FavoriteListView : public ThreadListView
21     {
22         Q_OBJECT
23
24     public:
25         explicit FavoriteListView(QWidget* parent = 0);
26
27         void refresh();
28
29     private slots:
30         void loadThread(QTableWidgetItem* item);
31         void reload();
32     };
33 }
34
35 #endif