Remove commented code
[kdepim.git] / blogilo / src / poststabwidget.h
blobe47a59ba8bc7ebe1cb9a52b15ecdc1a2d90d32d5
1 /*
2 Copyright (c) 2013-2016 Montel Laurent <montel@kde.org>
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License, version 2, as
6 published by the Free Software Foundation.
8 This program is distributed in the hope that it will be useful, but
9 WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License along
14 with this program; if not, write to the Free Software Foundation, Inc.,
15 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef POSTSTABWIDGET_H
19 #define POSTSTABWIDGET_H
21 #include <QTabWidget>
22 class QToolButton;
24 class PostsTabWidget : public QTabWidget
26 Q_OBJECT
27 public:
28 explicit PostsTabWidget(QWidget *parent);
29 ~PostsTabWidget();
31 Q_SIGNALS:
32 void createNewPost();
33 void closeTabClicked();
34 void tabRemoveAllExclude(int);
36 private Q_SLOTS:
37 void slotTabContextMenuRequest(const QPoint &);
39 private:
40 QToolButton *mNewTabButton;
41 QToolButton *mCloseTabButton;
44 #endif // POSTSTABWIDGET_H