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:
mhugent 2009-03-13 20:46:02 +00:00
parent 80ef91d142
commit 8f02ced2d6
6 changed files with 2 additions and 61 deletions

View File

@ -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;
};

View File

@ -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;
};

View File

@ -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();

View File

@ -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();
};
};

View File

@ -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
};
};

View File

@ -64,8 +64,6 @@ class QgsComposerView: QGraphicsView
void keyReleaseEvent( QKeyEvent * e );
void wheelEvent( QWheelEvent* event );
private:
public slots: