~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/plugins/dxf2shp_converter/dxf2shpconvertergui.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *Copyright (C) 2008 Paolo L. Scala, Barbara Rita Barricelli, Marco Padula *
 
3
 * CNR, Milan Unit (Information Technology),                               *
 
4
 * Construction Technologies Institute.\n";                                *
 
5
 *                                                                         *
 
6
 * email : Paolo L. Scala <scala@itc.cnr.it>                               *
 
7
 *                                                                         *
 
8
 *   This is a plugin generated from the QGIS plugin template              *
 
9
 *                                                                         *
 
10
 *   This program is free software; you can redistribute it and/or modify  *
 
11
 *   it under the terms of the GNU General Public License as published by  *
 
12
 *   the Free Software Foundation; either version 2 of the License, or     *
 
13
 *   (at your option) any later version.                                   *
 
14
 ***************************************************************************/
 
15
#ifndef dxf2shpConverterGUI_H
 
16
#define dxf2shpConverterGUI_H
 
17
 
 
18
#include <QDialog>
 
19
#include <ui_dxf2shpconvertergui.h>
 
20
 
 
21
/**
 
22
  @author Tim Sutton
 
23
  */
 
24
class dxf2shpConverterGui: public QDialog, private Ui::dxf2shpConverterGui
 
25
{
 
26
    Q_OBJECT
 
27
 
 
28
  public:
 
29
    dxf2shpConverterGui( QWidget *parent = 0, Qt::WFlags fl = 0 );
 
30
    ~dxf2shpConverterGui();
 
31
 
 
32
  private:
 
33
    void getInputFileName();
 
34
    void getOutputFileName();
 
35
    void getOutputDir();
 
36
 
 
37
  private slots:
 
38
    void on_buttonBox_accepted();
 
39
    void on_buttonBox_rejected();
 
40
    void on_buttonBox_helpRequested();
 
41
    void on_btnBrowseForFile_clicked();
 
42
    void on_btnBrowseOutputDir_clicked();
 
43
 
 
44
  signals:
 
45
    void createLayer( QString, QString );
 
46
};
 
47
 
 
48
#endif