mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Remove the private members from the composer sip files as they cannot be used from Python anyway
git-svn-id: http://svn.osgeo.org/qgis/trunk@10275 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
80ef91d142
commit
8f02ced2d6
@ -71,27 +71,4 @@ class QgsComposerLegend: QObject, QgsComposerItem
|
||||
public slots:
|
||||
/**Data changed*/
|
||||
void synchronizeWithModel();
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
private:
|
||||
QgsComposerLegend(); //forbidden
|
||||
|
||||
/**Draws child items of a layer item
|
||||
@param layerItem parent model item (layer)
|
||||
@param currentYCoord in/out: current y position of legend item
|
||||
@param maxXCoord in/out: maximum x-coordinate of the whole legend
|
||||
*/
|
||||
void drawLayerChildItems( QPainter* p, QStandardItem* layerItem, double& currentYCoord, double& maxXCoord );
|
||||
|
||||
/**Draws a symbol at the current y position and returns the new x position. Returns real symbol height, because for points,
|
||||
it is possible that it differs from mSymbolHeight*/
|
||||
void drawSymbol( QPainter* p, QgsSymbol* s, double currentYCoord, double& currentXPosition, double& symbolHeight ) const;
|
||||
void drawPointSymbol( QPainter*, QgsSymbol* s, double currentYCoord, double& currentXPosition, double& symbolHeight ) const;
|
||||
void drawLineSymbol( QPainter*, QgsSymbol* s, double currentYCoord, double& currentXPosition ) const;
|
||||
void drawPolygonSymbol( QPainter* p, QgsSymbol* s, double currentYCoord, double& currentXPosition ) const;
|
||||
|
||||
/**Helper function that lists ids of layers contained in map canvas*/
|
||||
QStringList layerIdList() const;
|
||||
};
|
||||
|
@ -105,13 +105,4 @@ class QgsComposerMap : QObject, QgsComposerItem
|
||||
signals:
|
||||
/**Is emitted when width/height is changed as a result of user interaction*/
|
||||
void extentChanged();
|
||||
|
||||
private:
|
||||
|
||||
/**Establishes signal/slot connection for update in case of layer change*/
|
||||
void connectUpdateSlot();
|
||||
|
||||
/**Returns the zoom factor of the graphics view. If no
|
||||
graphics view exists, the default 1 is returned*/
|
||||
double horizontalViewScaleFactor() const;
|
||||
};
|
||||
|
@ -38,13 +38,6 @@ class QgsComposerPicture: QObject, QgsComposerItem
|
||||
*/
|
||||
bool readXML( const QDomElement& itemElem, const QDomDocument& doc );
|
||||
|
||||
private:
|
||||
|
||||
//default constructor is forbidden
|
||||
QgsComposerPicture();
|
||||
/**Updates content of current image using svg generator*/
|
||||
void updateImageFromSvg();
|
||||
|
||||
signals:
|
||||
/**Tell the configuration widget that the settings need to be updated*/
|
||||
void settingsChanged();
|
||||
|
@ -125,19 +125,4 @@ class QgsComposition: QGraphicsScene
|
||||
|
||||
/**Snaps a scene coordinate point to grid*/
|
||||
QPointF snapPointToGrid( const QPointF& scenePoint ) const;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
QgsComposition(); //default constructor is forbidden
|
||||
|
||||
/**Reset z-values of items based on position in z list*/
|
||||
void updateZValues();
|
||||
|
||||
/**Returns the bounding rectangle of the selected items in scene coordinates
|
||||
@return 0 in case of success*/
|
||||
int boundingRectOfSelectedItems( QRectF& bRect );
|
||||
|
||||
void loadGridAppearanceSettings();
|
||||
void saveGridAppearanceSettings();
|
||||
};
|
||||
};
|
||||
|
@ -18,7 +18,4 @@ class QgsScaleBarStyle
|
||||
virtual QRectF calculateBoxSize() const; //default implementation provided
|
||||
virtual QString name() const = 0; //return name of the style
|
||||
//virtual QIcon styleIcon() const = 0;
|
||||
|
||||
private:
|
||||
QgsScaleBarStyle(); //default constructor forbidden
|
||||
};
|
||||
};
|
||||
|
@ -64,8 +64,6 @@ class QgsComposerView: QGraphicsView
|
||||
void keyReleaseEvent( QKeyEvent * e );
|
||||
|
||||
void wheelEvent( QWheelEvent* event );
|
||||
|
||||
private:
|
||||
|
||||
|
||||
public slots:
|
||||
|
Loading…
x
Reference in New Issue
Block a user