OSDN Git Service

remove unused code.
[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
11 #ifndef FAVORITELISTVIEW_H
12 #define FAVORITELISTVIEW_H
13
14 #include "threadlistview.h"
15 #include "threadlistviewitem.h"
16
17 /**
18  *
19  * @author Hideki Ikemoto <ikemo@users.sourceforge.jp>
20  **/
21 class FavoriteListView : public Kita::ThreadListView
22 {
23     Q_OBJECT
24
25 public:
26     FavoriteListView( QWidget* parent = 0, const char* name = 0 );
27     ~FavoriteListView();
28
29     void refresh();
30
31 private slots:
32     void loadThread( QListViewItem* item );
33     void slotContextMenuRequested( QListViewItem*, const QPoint&, int );
34     void reload();
35 };
36
37 #endif