Skip to content

Commit fb67488

Browse files
author
timlinux
committedAug 5, 2008
renamed misnamed QgsMapRender (verb) to QgsMapRenderer (noun) as part of cleanups for 1.0.0 release. Updated all related dependencies. Also removed some spurious debug messages
git-svn-id: http://svn.osgeo.org/qgis/trunk@8997 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 4bb5f67 commit fb67488

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+484
-755
lines changed
 

‎python/core/core.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
%Include qgslogger.sip
3030
%Include qgsmaplayer.sip
3131
%Include qgsmaplayerregistry.sip
32-
%Include qgsmaprender.sip
32+
%Include qgsmaprenderer.sip
3333
%Include qgsmaptopixel.sip
3434
%Include qgsmarkercatalogue.sip
3535
%Include qgsmessageoutput.sip

‎python/core/qgsapplication.sip

+14
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,19 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
177177
//! Returns whether this machine uses big or little endian
178178
static endian_t endian();
179179

180+
/** \brief get a standard css style sheet for reports.
181+
* Typically you will use this method by doing:
182+
* QString myStyle = QgsApplication::reportStyleSheet();
183+
* textBrowserReport->document()->setDefaultStyleSheet(myStyle);
184+
* @return QString containing the CSS 2.1 compliant stylesheet.
185+
* @note you can use the special Qt extensions too, for example
186+
* the gradient fills for backgrounds.
187+
*/
188+
static QString reportStyleSheet();
189+
190+
/** Convenience function to get a summary of the paths used in this
191+
* application instance useful for debugging mainly.*/
192+
static QString showSettings();
193+
180194
};
181195

0 commit comments

Comments
 (0)