~ubuntu-branches/ubuntu/quantal/kdevplatform/quantal-proposed

« back to all changes in this revision

Viewing changes to plugins/externalscript/editexternalscript.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-24 00:06:18 UTC
  • mfrom: (0.3.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101024000618-7otebin77mfcmt3b
Tags: 1.1.0-0ubuntu1
* New upstream release
  - Bump build-dependencies
  - Build against libboost-serialization1.42-dev
  - Update kdevplatform1-libs.install
  - Update kdevplatform-dev.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This plugin is part of KDevelop.
 
3
 
 
4
    Copyright (C) 2010 Milian Wolff <mail@milianw.de>
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Lesser General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2.1 of the License, or (at your option) any later version.
 
10
 
 
11
    This library is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
    Lesser General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU Lesser General Public
 
17
    License along with this library; if not, write to the Free Software
 
18
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 
 
20
*/
 
21
 
 
22
#ifndef EDITEXTERNALSCRIPT_H
 
23
#define EDITEXTERNALSCRIPT_H
 
24
 
 
25
#include <KDialog>
 
26
 
 
27
#include "ui_editexternalscript.h"
 
28
 
 
29
class ExternalScriptItem;
 
30
 
 
31
class EditExternalScript : public KDialog, private Ui::EditExternalScriptBase
 
32
{
 
33
  Q_OBJECT
 
34
 
 
35
public:
 
36
  EditExternalScript( ExternalScriptItem* item, QWidget* parent = 0, Qt::WFlags flags = 0 );
 
37
  virtual ~EditExternalScript();
 
38
 
 
39
private slots:
 
40
  void save();
 
41
  void validate();
 
42
 
 
43
private:
 
44
  ExternalScriptItem* m_item;
 
45
};
 
46
 
 
47
#endif // EDITEXTERNALSCRIPT_H
 
48
 
 
49
// kate: indent-mode cstyle; space-indent on; indent-width 2; replace-tabs on;