-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Martins labeling-ng from plugin to core/app
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13607 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
mhugent
committed
May 31, 2010
1 parent
6933d1d
commit 5946f89
Showing
21 changed files
with
266 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef QGSLABELENGINECONFIGDIALOG_H | ||
#define QGSLABELENGINECONFIGDIALOG_H | ||
|
||
#include <QDialog> | ||
|
||
#include "ui_qgsengineconfigdialog.h" | ||
|
||
class QgsPalLabeling; | ||
|
||
class QgsLabelEngineConfigDialog : public QDialog, private Ui::QgsEngineConfigDialog | ||
{ | ||
Q_OBJECT | ||
public: | ||
QgsLabelEngineConfigDialog( QgsPalLabeling* lbl, QWidget* parent = NULL ); | ||
|
||
public slots: | ||
void onOK(); | ||
|
||
protected: | ||
QgsPalLabeling* mLBL; | ||
}; | ||
|
||
#endif // QGSLABELENGINECONFIGDIALOG_H |
Oops, something went wrong.