~dantti/apper/master

« back to all changes in this revision

Viewing changes to libshared/ApplicationLauncher.h

  • Committer: Daniel Nicoletti
  • Date: 2011-07-27 21:02:31 UTC
  • Revision ID: git-v1:2fb51b7787e2e9d70d2085cc8181a12f4277b047
The idea of libshared, was for it to be static, as
this doesn't seem too simple as putting STATIC word
I'm renaming it to libapper so we don't have such a geniric
lib installed (as pointed by Kevin Kofler

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2008 by Daniel Nicoletti                                *
3
 
 *   dantti85-pk@yahoo.com.br                                              *
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
 
 *   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 General Public License     *
16
 
 *   along with this program; see the file COPYING. If not, write to       *
17
 
 *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
18
 
 *   Boston, MA 02110-1301, USA.                                           *
19
 
 ***************************************************************************/
20
 
 
21
 
#ifndef APPLICATION_LAUNCHER_H
22
 
#define APPLICATION_LAUNCHER_H
23
 
 
24
 
#include <QDialog>
25
 
#include <KService>
26
 
 
27
 
#include "ui_ApplicationLauncher.h"
28
 
 
29
 
class ApplicationLauncher : public QDialog, Ui::ApplicationLauncher
30
 
{
31
 
    Q_OBJECT
32
 
public:
33
 
    explicit ApplicationLauncher(const QVector<KService*> &applications, QWidget *parent = 0);
34
 
    ~ApplicationLauncher();
35
 
 
36
 
private slots:
37
 
    void on_applicationsView_clicked(const QModelIndex &index);
38
 
};
39
 
 
40
 
#endif