~ubuntu-branches/ubuntu/vivid/kate/vivid-updates

« back to all changes in this revision

Viewing changes to addons/katebuild-plugin/SelectTargetView.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-12-04 16:49:41 UTC
  • mfrom: (1.6.6)
  • Revision ID: package-import@ubuntu.com-20141204164941-l3qbvsly83hhlw2v
Tags: 4:14.11.97-0ubuntu1
* New upstream release
* Update build-deps and use pkg-kde v3 for Qt 5 build
* kate-data now kate5-data for co-installability

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   This file is part of Kate build plugin                                *
 
3
 *   Copyright 2014 Kåre Särs <kare.sars@iki.fi>                           *
 
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
 ***************************************************************************/
 
20
#ifndef SelectTargetView_H
 
21
#define SelectTargetView_H
 
22
 
 
23
#include "ui_SelectTargetUi.h"
 
24
#include <QAbstractItemModel>
 
25
 
 
26
class TargetFilterProxyModel;
 
27
 
 
28
class SelectTargetView : public QDialog, public Ui::SelectTargetUi
 
29
{
 
30
    Q_OBJECT
 
31
public:
 
32
    SelectTargetView(QAbstractItemModel *model, QWidget *parent = 0);
 
33
    const QModelIndex currentIndex() const;
 
34
 
 
35
    void setCurrentIndex(const QModelIndex &index);
 
36
 
 
37
public Q_SLOTS:
 
38
    void setFilter(const QString &filter);
 
39
 
 
40
protected:
 
41
    virtual bool eventFilter(QObject *obj, QEvent *event);
 
42
 
 
43
private:
 
44
    TargetFilterProxyModel *m_proxyModel;
 
45
};
 
46
 
 
47
#endif