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

« back to all changes in this revision

Viewing changes to src/plugins/labeling/engineconfigdialog.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
#ifndef ENGINECONFIGDIALOG_H
 
2
#define ENGINECONFIGDIALOG_H
 
3
 
 
4
#include <QDialog>
 
5
 
 
6
#include "ui_engineconfigdialog.h"
 
7
 
 
8
class PalLabeling;
 
9
 
 
10
class EngineConfigDialog : public QDialog, private Ui::EngineConfigDialog
 
11
{
 
12
    Q_OBJECT
 
13
  public:
 
14
    EngineConfigDialog( PalLabeling* lbl, QWidget* parent = NULL );
 
15
 
 
16
  public slots:
 
17
    void onOK();
 
18
 
 
19
  protected:
 
20
    PalLabeling* mLBL;
 
21
};
 
22
 
 
23
#endif // ENGINECONFIGDIALOG_H