@@ -128,104 +128,104 @@ class QgsComposerMapGrid : QgsComposerMapItem
128128 */
129129 enum GridUnit
130130 {
131- MapUnit, /*< grid units follow map units */
132- MM, /*< grid units in millimetres */
133- CM /*< grid units in centimetres */
131+ MapUnit, /*! < grid units follow map units */
132+ MM, /*! < grid units in millimetres */
133+ CM /*! < grid units in centimetres */
134134 };
135135
136136 /** Grid drawing style
137137 */
138138 enum GridStyle
139139 {
140140 Solid,
141- Cross, /*< draw line crosses at intersections of grid lines */
142- Markers, /*< draw markers at intersections of grid lines */
143- FrameAnnotationsOnly /*< no grid lines over the map, only draw frame and annotations */
141+ Cross, /*! < draw line crosses at intersections of grid lines */
142+ Markers, /*! < draw markers at intersections of grid lines */
143+ FrameAnnotationsOnly /*! < no grid lines over the map, only draw frame and annotations */
144144 };
145145
146146 /** Display settings for grid annotations and frames
147147 */
148148 enum DisplayMode
149149 {
150- ShowAll = 0, /*< show both latitude and longitude annotations/divisions */
151- LatitudeOnly, /*< show latitude/y annotations/divisions only */
152- LongitudeOnly, /*< show longitude/x annotations/divisions only */
153- HideAll /*< no annotations */
150+ ShowAll = 0, /*! < show both latitude and longitude annotations/divisions */
151+ LatitudeOnly, /*! < show latitude/y annotations/divisions only */
152+ LongitudeOnly, /*! < show longitude/x annotations/divisions only */
153+ HideAll /*! < no annotations */
154154 };
155155
156156 /** Position for grid annotations
157157 */
158158 enum AnnotationPosition
159159 {
160160 InsideMapFrame = 0,
161- OutsideMapFrame, /*< draw annotations outside the map frame */
162- Disabled /*< disable annotation
161+ OutsideMapFrame, /*! < draw annotations outside the map frame */
162+ Disabled /*! < disable annotation
163163 * @deprecated in QGIS 2.7, use QgsComposerMapGrid::HideAll instead */
164164 };
165165
166166 /** Direction of grid annotations
167167 */
168168 enum AnnotationDirection
169169 {
170- Horizontal = 0, /*< draw annotations horizontally */
171- Vertical, /*< draw annotations vertically, ascending */
172- VerticalDescending, /*< draw annotations vertically, descending */
173- BoundaryDirection /*< annotations follow the boundary direction */
170+ Horizontal = 0, /*! < draw annotations horizontally */
171+ Vertical, /*! < draw annotations vertically, ascending */
172+ VerticalDescending, /*! < draw annotations vertically, descending */
173+ BoundaryDirection /*! < annotations follow the boundary direction */
174174 };
175175
176176 /** Format for displaying grid annotations
177177 */
178178 enum AnnotationFormat
179179 {
180- Decimal, /*< decimal degrees, use - for S/W coordinates */
181- DegreeMinute, /*< degree/minutes, use NSEW suffix */
182- DegreeMinuteSecond, /*< degree/minutes/seconds, use NSEW suffix */
183- DecimalWithSuffix, /*< decimal degrees, use NSEW suffix */
184- DegreeMinuteNoSuffix, /*< degree/minutes, use - for S/W coordinates */
185- DegreeMinutePadded, /*< degree/minutes, with minutes using leading zeros were required */
186- DegreeMinuteSecondNoSuffix, /*< degree/minutes/seconds, use - for S/W coordinates */
187- DegreeMinuteSecondPadded /*< degree/minutes/seconds, with minutes using leading zeros were required */
180+ Decimal, /*! < decimal degrees, use - for S/W coordinates */
181+ DegreeMinute, /*! < degree/minutes, use NSEW suffix */
182+ DegreeMinuteSecond, /*! < degree/minutes/seconds, use NSEW suffix */
183+ DecimalWithSuffix, /*! < decimal degrees, use NSEW suffix */
184+ DegreeMinuteNoSuffix, /*! < degree/minutes, use - for S/W coordinates */
185+ DegreeMinutePadded, /*! < degree/minutes, with minutes using leading zeros were required */
186+ DegreeMinuteSecondNoSuffix, /*! < degree/minutes/seconds, use - for S/W coordinates */
187+ DegreeMinuteSecondPadded /*! < degree/minutes/seconds, with minutes using leading zeros were required */
188188 };
189189
190190 /** Border sides for annotations
191191 */
192192 enum BorderSide
193193 {
194194 Left,
195- Right, /*< right border */
196- Bottom, /*< bottom border */
197- Top /*< top border */
195+ Right, /*! < right border */
196+ Bottom, /*! < bottom border */
197+ Top /*! < top border */
198198 };
199199
200200 /** Style for grid frame
201201 */
202202 enum FrameStyle
203203 {
204- NoFrame, /*< disable grid frame */
205- Zebra, /*< black/white pattern */
206- InteriorTicks, /*< tick markers drawn inside map frame */
207- ExteriorTicks, /*< tick markers drawn outside map frame */
208- InteriorExteriorTicks, /*< tick markers drawn both inside and outside the map frame */
209- LineBorder /*< simple solid line frame */
204+ NoFrame, /*! < disable grid frame */
205+ Zebra, /*! < black/white pattern */
206+ InteriorTicks, /*! < tick markers drawn inside map frame */
207+ ExteriorTicks, /*! < tick markers drawn outside map frame */
208+ InteriorExteriorTicks, /*! < tick markers drawn both inside and outside the map frame */
209+ LineBorder /*! < simple solid line frame */
210210 };
211211
212212 /** Flags for controlling which side of the map a frame is drawn on
213213 */
214214 enum FrameSideFlag
215215 {
216- FrameLeft, /*< left side of map */
217- FrameRight, /*< right side of map */
218- FrameTop, /*< top side of map */
219- FrameBottom /*< bottom side of map */
216+ FrameLeft, /*! < left side of map */
217+ FrameRight, /*! < right side of map */
218+ FrameTop, /*! < top side of map */
219+ FrameBottom /*! < bottom side of map */
220220 };
221221 typedef QFlags<QgsComposerMapGrid::FrameSideFlag> FrameSideFlags;
222222
223223 /** Annotation coordinate type
224224 */
225225 enum AnnotationCoordinate
226226 {
227- Longitude, /*< coordinate is a longitude value */
228- Latitude /*< coordinate is a latitude value */
227+ Longitude, /*! < coordinate is a longitude value */
228+ Latitude /*! < coordinate is a latitude value */
229229 };
230230
231231 /**Constructor for QgsComposerMapGrid.
0 commit comments