mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
84 lines
2.5 KiB
Plaintext
84 lines
2.5 KiB
Plaintext
/** \ingroup MapComposer
|
|
* \ingroup gui
|
|
* Widget to display the composer items. Manages the composer tools and the
|
|
* mouse/key events.
|
|
* Creates the composer items according to the current map tools and keeps track
|
|
* of the rubber band item.
|
|
*/
|
|
class QgsComposerView: QGraphicsView
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgscomposerview.h"
|
|
%End
|
|
|
|
%ConvertToSubClassCode
|
|
if (sipCpp->inherits("QgsComposerView"))
|
|
sipClass = sipClass_QgsComposerView;
|
|
else
|
|
sipClass = NULL;
|
|
%End
|
|
|
|
|
|
public:
|
|
|
|
/**Current tool*/
|
|
enum Tool
|
|
{
|
|
Select = 0, // Select/Move item
|
|
AddMap, // add new map
|
|
AddLegend, // add vector legend
|
|
AddLabel, // add label
|
|
AddScalebar, // add scalebar
|
|
AddPicture, // add raster/vector picture
|
|
AddShape, //add shape item (ellipse, rectangle, triangle)
|
|
MoveItemContent //move content of item (e.g. content of map)
|
|
};
|
|
|
|
QgsComposerView( QWidget* parent = 0, const char* name = 0, Qt::WFlags f = 0 );
|
|
|
|
/**Add an item group containing the selected items*/
|
|
void groupItems();
|
|
|
|
/**Ungroups the selected items*/
|
|
void ungroupItems();
|
|
|
|
QgsComposerView::Tool currentTool() const;
|
|
void setCurrentTool( QgsComposerView::Tool t );
|
|
|
|
/**Sets composition (derived from QGraphicsScene)*/
|
|
void setComposition( QgsComposition* c );
|
|
/**Returns the composition or 0 in case of error*/
|
|
QgsComposition* composition();
|
|
|
|
/**Returns the composer main window*/
|
|
QMainWindow* composerWindow();
|
|
|
|
void setPaintingEnabled( bool enabled );
|
|
bool paintingEnabled() const;
|
|
|
|
protected:
|
|
void mousePressEvent( QMouseEvent* );
|
|
void mouseReleaseEvent( QMouseEvent* );
|
|
void mouseMoveEvent( QMouseEvent* );
|
|
|
|
void keyPressEvent( QKeyEvent * e );
|
|
void keyReleaseEvent( QKeyEvent * e );
|
|
|
|
void wheelEvent( QWheelEvent* event );
|
|
|
|
|
|
signals:
|
|
/**Is emitted when selected item changed. If 0, no item is selected*/
|
|
void selectedItemChanged( QgsComposerItem* selected );
|
|
/**Is emitted when a composer item has been removed from the scene*/
|
|
void itemRemoved( QgsComposerItem* );
|
|
/**Current action (e.g. adding composer map) has been finished. The purpose of this signal is that
|
|
QgsComposer may set the selection tool again*/
|
|
void actionFinished();
|
|
|
|
/**Emitted before composerview is shown*/
|
|
void composerViewShow( QgsComposerView* );
|
|
/**Emitted before composerview is hidden*/
|
|
void composerViewHide( QgsComposerView* );
|
|
};
|