~ubuntu-branches/ubuntu/utopic/qgis/utopic

« back to all changes in this revision

Viewing changes to src/app/qgsprojectproperties.h

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-04-24 15:12:20 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120424151220-r88g00af5fpn5fc3
Tags: 1.7.4+1.7.5~20120320-1
The "Sometimes they come back" release.

* Branching from Qgis tree and adapting to current Debian Policy and
  standards. The target tree is currently set to release-1.7.
  (closes: #661491, #606304, #615683, #616182, #600308)
* Policy bumped to 3.9.3.
* Moving to debhelper compatibility level 9.
* Source format is now 3.0 with quilt support.
* Merged with 2bf42287 upstream git snapshot.
* Migrated to dh_python2 instead of python-central.
  (closes: #617048)
* Snapshot in qgis.org release-1.7: c936d031
* Added an automagic creation of a lintian override for sqlite embedding.
  This is required for uploading currently.
* Added missing ${misc:Depends} to make lintian happy.
* Copyright notes updated and debian/copyright moved to format 1.0.
* More licenses notices now reported in debian/copyright. Thanks ftpmasters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include "ui_qgsprojectpropertiesbase.h"
22
22
#include "qgis.h"
23
23
#include "qgisgui.h"
24
 
#include "qgssnappingdialog.h"
25
24
#include "qgscontexthelp.h"
26
25
 
27
26
class QgsMapCanvas;
86
85
    void on_pbnCanvasColor_clicked();
87
86
 
88
87
    /*!
 
88
     * Slots for WMS project settings
 
89
     */
 
90
    void on_pbnWMSExtCanvas_clicked();
 
91
    void on_pbnWMSAddSRS_clicked();
 
92
    void on_pbnWMSRemoveSRS_clicked();
 
93
    void on_pbnWMSSetUsedSRS_clicked();
 
94
 
 
95
    /*!
89
96
     * Slot to show the context help for this dialog
90
97
     */
91
98
    void on_buttonBox_helpRequested() { QgsContextHelp::run( metaObject()->className() ); }
92
99
 
 
100
    void on_cbxProjectionEnabled_stateChanged( int state );
 
101
 
93
102
    /*!
94
 
      *
 
103
      * If user changes the CRS, set the corresponding map units
95
104
      */
96
 
    void on_mAvoidIntersectionsPushButton_clicked();
97
 
 
98
 
    /*!
99
 
     * Slot to show dialog for the layer snapping options
100
 
     */
101
 
    void on_mSnappingOptionsPushButton_clicked();
102
 
 
103
 
    void on_cbxProjectionEnabled_stateChanged( int state );
 
105
    void setMapUnitsToCurrentProjection();
104
106
 
105
107
  signals:
106
108
    //! Signal used to inform listeners that the mouse display precision may have changed
113
115
  private:
114
116
    QgsMapCanvas* mMapCanvas;
115
117
 
116
 
    /**Snapping settings to pass/read from QgsSnappingDialog.
117
 
     Key is the layer id, the pair consists of snap to vertex = 0/snap to segment = 1,
118
 
    snapping tolerance*/
119
 
    QMap<QString, LayerEntry> mSnappingLayerSettings;
120
 
 
121
 
    /**Stores ids of layers where intersections of new polygons is considered. Is passed to / read from QgsAvoidIntersectionsDialog*/
122
 
    QSet<QString> mAvoidIntersectionsSettings;
123
 
 
124
 
 
125
118
    /*!
126
119
     * Function to save dialog window state
127
120
     */