OSDN Git Service

05cd918ac34f758760e850542e934a2444ef81dc
[kita/kita.git] / kita / src / bbstabwidget.h
1 /***************************************************************************
2 *   Copyright (C) 2004 by Hideki Ikemoto , (c) 2004 by 421                *
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 KITABBSTABWIDGET_H
11 #define KITABBSTABWIDGET_H
12
13 #include "kitaui/tabwidgetbase.h"
14
15 class QFont;
16
17 namespace Kita
18 {
19
20     class BBSTabWidget : public TabWidgetBase
21     {
22         Q_OBJECT
23
24     public:
25         explicit BBSTabWidget(QWidget* parent);
26         ~BBSTabWidget();
27
28     public slots:
29         void showBoardList();
30         void updateBoardList();
31         void setFont(const QFont& font);
32         void loadOpened();
33     };
34 }
35
36 #endif