Basic Primitive shapes added (line,rectangle,ellipse). Default style dashed.

Pending work:
1. DXF Export
2. XML Import / Export
3. Properties Edit option (line style/colour/weight)
4. Debugging required



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2873 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
abhishekm71
2014-02-23 18:55:26 +00:00
parent cd1c5ffc81
commit b0e9e7efc1
6 changed files with 228 additions and 4 deletions

View File

@@ -126,6 +126,9 @@ class QETDiagramEditor : public QETMainWindow {
void slot_resetConductors();
void slot_addText();
void slot_addImage();
void slot_addLine();
void slot_addRectangle();
void slot_addEllipse();
void slot_editSelection();
void setWindowedMode();
void setTabbedMode();
@@ -219,6 +222,9 @@ class QETDiagramEditor : public QETMainWindow {
QAction *prev_window; ///< Switch to the previous document
QAction *next_window; ///< Switch to the next document
QAction *add_image; ///< Tool to add an independent image item on diagrams
QAction *add_line; ///< Tool to add an independent line shape item on diagrams
QAction *add_rectangle; ///< Tool to add an independent rectangle shape item on diagrams
QAction *add_ellipse; ///< Tool to add an independent ellipse shape item on diagrams
QAction *edit_selection; ///< To edit selected item
private: