Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / plugins / projectmanagerview / projectbuildsetwidget.h
blobcd9be4896761ed51d55971a7ad86590668fbd4c8
1 /***************************************************************************
2 * This file is part of KDevelop *
3 * Copyright 2007 Andreas Pakulat <apaku@gmx.de> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Library General Public License as *
7 * published by the Free Software Foundation; either version 2 of the *
8 * License, or (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU Library General Public *
16 * License along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef PROJECTBUILDSETWIDGET_H
22 #define PROJECTBUILDSETWIDGET_H
24 #include <QWidget>
25 #include <QMap>
27 class QTreeView;
28 class QToolButton;
29 class ProjectManagerViewPlugin;
30 class QStringListModel;
31 class ProjectManagerView;
33 namespace KDevelop
35 class ProjectBaseItem;
38 namespace Ui
40 class ProjectBuildSetWidget;
43 class ProjectBuildSetWidget : public QWidget
45 Q_OBJECT
46 public:
47 ProjectBuildSetWidget( ProjectManagerView* view, QWidget* parent );
48 ~ProjectBuildSetWidget();
49 public slots:
50 void selectionChanged();
51 private slots:
52 void addItems();
53 void removeItems();
54 void showContextMenu( const QPoint& p );
55 private:
56 ProjectManagerViewPlugin* m_plugin;
57 ProjectManagerView* m_view;
59 Ui::ProjectBuildSetWidget* m_ui;
62 #endif
64 //kate: space-indent on; indent-width 4; replace-tabs on; auto-insert-doxygen on; indent-mode cstyle;