Skip to content

Commit

Permalink
Remove the private members from the composer sip files as they cannot…
Browse files Browse the repository at this point in the history
… be used from Python anyway

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10275 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Mar 13, 2009
1 parent b2679f9 commit c68d142
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 61 deletions.
23 changes: 0 additions & 23 deletions python/core/qgscomposerlegend.sip
Expand Up @@ -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;
};
9 changes: 0 additions & 9 deletions python/core/qgscomposermap.sip
Expand Up @@ -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;
};
7 changes: 0 additions & 7 deletions python/core/qgscomposerpicture.sip
Expand Up @@ -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();
Expand Down
17 changes: 1 addition & 16 deletions python/core/qgscomposition.sip
Expand Up @@ -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();
};
};
5 changes: 1 addition & 4 deletions python/core/qgsscalebarstyle.sip
Expand Up @@ -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
};
};
2 changes: 0 additions & 2 deletions python/gui/qgscomposerview.sip
Expand Up @@ -64,8 +64,6 @@ class QgsComposerView: QGraphicsView
void keyReleaseEvent( QKeyEvent * e );

void wheelEvent( QWheelEvent* event );

private:


public slots:
Expand Down

0 comments on commit c68d142

Please sign in to comment.