[qet] [GIT] qet/qet.git branch master updated. 0.9-dev-642-g539e0a7

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


This is an automated email from git. It was generated because a ref
change was pushed to the "qet/qet.git" repository.

The branch, master has been updated
       via  539e0a7a491fe2f271d081eeee64363af032a74b (commit)
       via  f54bea713e5198f5060b4c3b991b94d09fbf7575 (commit)
       via  f41b5a4ed441f6501d091728c0084539e6cfe00b (commit)
       via  1f99a40f1b16f476d2bb5391bb3956a9511e24ca (commit)
       via  d23a5bbdc799f466bb1b0bedacf8a5fe1b68dd58 (commit)
       via  81640015e5c5a011de84aa6e92a5a680e940376e (commit)
       via  a18cd2461f7b9037a3ab0235dbfed93f26af2003 (commit)
       via  aca3b8ad1e7d1f0d0f0925da836e3c8c8addd002 (commit)
       via  9e1ef8c42f500679f6fa5e6dcf9193ba2ca3df36 (commit)
       via  7fede2277f93ec5b206eca5bc0d8637ecd5c414d (commit)
       via  21de926367d6cc315812ca9ccab43c835ee3f81d (commit)
       via  ff80453f2c80c34e64e9959bcf6a4170e64da487 (commit)
       via  d9a0b03e23a165a1cf447e3cc8a312e57b0ed95a (commit)
      from  9afef79629808e50b7a11e8be8fc91ea10e2f35d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 539e0a7a491fe2f271d081eeee64363af032a74b
Merge: 9afef79 f54bea7
Author: joshua <Joshua@xxxxxxxxxxxxxxxx>
Date:   Mon Jan 2 19:40:08 2023 +0100

    Merge branch 'terminal_strip'
    
    * terminal_strip:
      Terminal strip item can saved / loaded to .qet file
      See previous commit...
      Move terminal strip drawer class in is own file
      Fix wrong use of QStringLiteral and QLatin1String
      Double click a TerminalStripItem open the editor
      Minor change about checkable QAction of QetDiagramEditor
      Minor : corrects a minor aesthetic defect when unbridge terminals
      Revamp code
      Add and move terminal strip item are now managed by undo command
      TerminalStripItem : Draw terminal bridge
      Terminal strip item can be added to diagram
      Minor : add QGIUtility namespace

-----------------------------------------------------------------------

Summary of changes:
 dev_doc/enum_type_of_QGraphicsItem                 |   1 +
 qelectrotech.pro                                   |   4 +
 .../GraphicsItem/terminalstripdrawer.cpp           | 231 +++++++++++++++++++++
 .../GraphicsItem/terminalstripdrawer.h             |  45 ++++
 .../GraphicsItem/terminalstripitem.cpp             | 107 ++++++++++
 .../TerminalStrip/GraphicsItem/terminalstripitem.h |  60 ++++++
 .../GraphicsItem/terminalstriplayoutpattern.cpp    |  78 +++++++
 .../GraphicsItem/terminalstriplayoutpattern.h      | 109 ++++++++++
 .../UndoCommand/bridgeterminalscommand.cpp         |  15 +-
 sources/TerminalStrip/terminalstrip.cpp            |   5 +-
 sources/TerminalStrip/terminalstripbridge.cpp      |   8 +
 sources/TerminalStrip/terminalstripbridge.h        |   1 +
 sources/TerminalStrip/terminalstripdata.cpp        |  22 +-
 .../ui/addterminalstripitemdialog.cpp              |  88 ++++++++
 .../ui/addterminalstripitemdialog.h}               |  34 +--
 .../ui/addterminalstripitemdialog.ui}              |  32 ++-
 sources/TerminalStrip/ui/freeterminalmodel.cpp     |   4 +-
 .../TerminalStrip/ui/terminalstripeditorwindow.cpp |  20 +-
 .../TerminalStrip/ui/terminalstripeditorwindow.h   |  37 +++-
 sources/TerminalStrip/ui/terminalstripmodel.cpp    |   4 +-
 sources/diagram.cpp                                |  38 +++-
 sources/diagramcommands.cpp                        | 147 -------------
 sources/diagramcommands.h                          |  39 ----
 sources/diagramcontent.cpp                         |  32 +--
 sources/diagramcontent.h                           |   7 +-
 sources/elementsmover.cpp                          |  15 +-
 sources/qet.cpp                                    |  11 +-
 sources/qet.h                                      |   9 +-
 sources/qetapp.cpp                                 |  25 ++-
 sources/qetapp.h                                   |   3 +-
 sources/qetdiagrameditor.cpp                       |  41 ++--
 sources/qetgraphicsitem/crossrefitem.cpp           |   4 +-
 sources/qetgraphicsitem/elementtextitemgroup.cpp   |   2 +-
 sources/qetgraphicsitem/qetgraphicsitem.cpp        |  16 ++
 sources/qetgraphicsitem/qetgraphicsitem.h          |   7 +
 sources/qetgraphicsitem/qgraphicsitemutility.cpp   |  30 ++-
 sources/qetgraphicsitem/qgraphicsitemutility.h     |  11 +-
 sources/qetproject.cpp                             |  43 ++--
 sources/qetproject.h                               |   1 +
 sources/qetxml.cpp                                 |  35 +++-
 sources/qetxml.h                                   |   5 +
 sources/undocommand/movegraphicsitemcommand.cpp    | 175 ++++++++++++++++
 sources/undocommand/movegraphicsitemcommand.h      |  65 ++++++
 sources/xml/terminalstripitemxml.cpp               | 131 ++++++++++++
 sources/xml/terminalstripitemxml.h                 |  37 ++++
 45 files changed, 1524 insertions(+), 310 deletions(-)
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstripdrawer.cpp
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstripdrawer.h
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstripitem.cpp
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstripitem.h
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstriplayoutpattern.cpp
 create mode 100644 sources/TerminalStrip/GraphicsItem/terminalstriplayoutpattern.h
 create mode 100644 sources/TerminalStrip/ui/addterminalstripitemdialog.cpp
 copy sources/{ui/importelementdialog.h => TerminalStrip/ui/addterminalstripitemdialog.h} (52%)
 copy sources/{ui/formulaassistantdialog.ui => TerminalStrip/ui/addterminalstripitemdialog.ui} (68%)
 create mode 100644 sources/undocommand/movegraphicsitemcommand.cpp
 create mode 100644 sources/undocommand/movegraphicsitemcommand.h
 create mode 100644 sources/xml/terminalstripitemxml.cpp
 create mode 100644 sources/xml/terminalstripitemxml.h


hooks/post-receive
-- 
qet/qet.git



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/