Compare commits

...

4836 Commits

Author SHA1 Message Date
Laurent Trinques
1a1e8a2299 Fix Summary headline issue on german 2025-09-13 09:43:04 +02:00
Laurent Trinques
75c1485ead
Merge pull request #404 from arummler/master-fix-missing-language
Fixing translation file list in CMake
2025-09-12 10:46:37 +02:00
Laurent Trinques
4ebaf073d6 Fix bug https://qelectrotech.org/bugtracker/view.php?id=330 2025-09-12 10:44:39 +02:00
Laurent Trinques
8a96097d41 Fix Summary headline issue in German
https://qelectrotech.org/forum/viewtopic.php?pid=22082#p22082
2025-09-11 13:32:29 +02:00
Laurent Trinques
43826361a4
Merge pull request #403 from arummler/master-update-dependencies
Update dependencies to fix compilation errors
2025-09-11 12:40:53 +02:00
Andre Rummler
67b80364e1 CMAKE/FIX: BE was missing as it had been renamed to nl_BE. RS and UK were not included. 2025-09-08 23:52:27 +02:00
Andre Rummler
ea9d57cdde Update googltest library to v1.17.0 2025-09-08 13:27:56 +02:00
Andre Rummler
bad60834cc Update Catch2 library to v2.13.10 2025-09-08 13:26:54 +02:00
Laurent Trinques
6119d49d15 Add new Photovoltaïque examples found on www.. 2025-09-06 10:10:00 +02:00
Laurent Trinques
acf0eb8f6a git submodule update --remote elements 2025-09-01 05:06:50 +02:00
Laurent Trinques
3cadedaf9e
Merge pull request #401 from Evilscrack/master
Minor corrections to prevent crashes
2025-08-31 11:47:41 +02:00
Pascal Sander
84ac394d3b Refactor to more QRectF to be more compatible with QPrinter. #5 2025-08-30 12:08:54 +02:00
Pascal Sander
27b21b38aa Fixed incorrect cast from ElementCollectionItem to FileElementCollectionItem #4 2025-08-22 20:12:27 +02:00
Evilscrack
12b33e15a3
Merge branch 'qelectrotech:master' into master 2025-08-22 19:26:25 +02:00
Laurent Trinques
2ec1aecd53
Merge pull request #399 from ChuckNr11/master
Correct compositeText alignment on copying
2025-08-20 16:38:57 +02:00
achim
73ce3ae9fe Correct compositeText alignment on copying
After the commit 'Correcting dynamicElementTextItem alignment on
copying', not all composite text was displayed correctly. As soon as the
composite text contained multiple variables in a line or user text, the
alignment was no longer correct. Furthermore, the text value was not
correctly written to the clipboard, so it was no longer present when
pasting. I have corrected these errors here.
2025-08-19 20:16:31 +02:00
Laurent Trinques
6375136a50 Fix bughttps://qelectrotech.org/bugtracker/view.php?id=329
Modification of the int BACKUP_INTERVAL from 2 min to 20 min used by
KautoSaveFile.

On a large project with a 256 MB folio printed in A0 format, the
graphical interface freezes for 30 seconds when KautoSaveFile writes
this large amount of data to the disk every two minutes.

Even if the programme crashes, you only lose 20 minutes of your work,
which is not a big deal.

Thanks to Enzo for reporting it and finding the problem.
2025-08-18 14:04:27 +02:00
Pascal Sander
ee49086d03 QMenu must set a parent for correct position. #3 2025-08-17 17:48:29 +02:00
Pascal Sander
c31cab34e4 Check QAbstractItemModel for nullptr before access. #2 2025-08-17 10:33:04 +02:00
Evilscrack
a61d70e40e
Merge branch 'qelectrotech:master' into master 2025-08-17 09:56:49 +02:00
Laurent Trinques
f43ce82052 Minor: m_autosave_sb QSpinbox set max 99 to 200 minutes
Change singlestep 1 to 10 enable accelerated function

See: https://qelectrotech.org/bugtracker/view.php?id=329
2025-08-17 08:47:19 +02:00
Laurent Trinques
707005879b
Merge pull request #398 from ChuckNr11/master
Better handling of conductors when moving
2025-08-15 16:06:35 +02:00
achim
29c362fe4c Better handling of conductors when moving
For conductors, the setPos() function can result in negative
coordinates.
For unknown reasons, this can lead to an offset in the scene coordinate
system, resulting in a free space above and to the left of the drawing
frame. This free space could not be removed.

It is better to set the conductors using the conductor::updatePath()
function. If the conductor text has been moved by the user, the new
position of the text must be calculated.
It is important to position the elements first and then 'connect' the
conductors.
Setting the conductor position via setPos() was done in elemntsmover.cpp
(corrected here) and in Diagram::fromXML (corrected in the commit
'Better handling of conductors when creating from XML').
2025-08-14 22:03:05 +02:00
Pascal Sander
dad637689d QScopedPointer removes QDrag to early and will still be accessed in another thread. #1 2025-08-13 20:01:22 +02:00
plc-user
0f179a5d49 add and correct English comments 2025-08-09 09:05:34 +02:00
plc-user
3a0546e638 add English comments / translate variable-names to English 2025-08-08 12:46:11 +02:00
Laurent Trinques
c9ea538999
Merge pull request #395 from ChuckNr11/master
A few small improvements
2025-08-05 15:02:25 +02:00
achim
96d84bf852 Better handling of conductors when creating from XML
The position of a conductor is determined by the two terminals the
conductor connects. Therefore, it makes no sense to set the position
with 'setPos()'.

It is better to first load all elements (but not the conductors),
position them if necessary, and only then load the conductors and assign
them to the elements (terminals).
2025-08-03 01:04:37 +02:00
achim
0a6efa466e Correcting dynamicElementTextItem alignment on copying
When copying and pasting selected areas, right-aligned dynamic text in
report and slave elements was not displayed correctly. The text
insertion point was always shifted to the left by the text width.

To correct this, the insertion point of dynamicElementTextItems is reset
to its origin insertion point before writing to clipboard.
2025-08-02 23:27:09 +02:00
achim
f20ea041b6 correcting the visibility of Variables in CompositeText
When using composite text in report elements, the name of the variable
was displayed when inserting the reportElement into the drawing (e.g.
%{function}). This is corrected here.
Add missing variables to assignvariables.cpp
2025-08-02 22:16:12 +02:00
Laurent Trinques
fb01e51bbb Try to fix symbolic links are resolved to "ordinary" files for both macOS-Packages,
thanks plc-user
7244e4a59c (commitcomment-162938064)
2025-08-01 10:29:46 +02:00
Laurent Trinques
5f252fbd00 Revert "Remove symbolic links"
This reverts commit 22f8034ddb8454637a946fe32bc43b7b6dc0ffcf.
2025-08-01 10:26:03 +02:00
Laurent Trinques
22f8034ddb Remove symbolic links 2025-07-27 13:27:11 +02:00
Laurent Trinques
60b013786d git submodule update --remote pugixml 2025-07-26 09:49:56 +02:00
Laurent Trinques
55b2ab797d git submodule update --remote SingleApplication to new release v3.5.3 2025-07-26 09:46:31 +02:00
Laurent Trinques
4726db5f15 git submodule update --remote elements 2025-07-20 12:48:10 +02:00
Laurent Trinques
704aa6cbdb Add qet ts file for Serbian translation 2025-07-20 12:45:13 +02:00
joshua
1607c7f5dc Minor : improve behavior when rotate terminal part.
iIn the element editor, every rotation is made around the center of the
scene, this is usefull when rotate several part but less when only one
need to be rotated, especially when it is the terminal part and we only
want to change the orientation.
This commit solve it. Now when only a terminal part is selected, the
terminal don't rotate around the center of the scene but change the
orientation.

The rotation, flip and mirror of parts are good features but always
rotate around the center of the scene and if the parts are far from the
center of the scene the behavior look inappropriate from the POV of user
(because parts move far from original position and can out of the view).
A good new features should be to solve it (rotate around the center of
the bounding rect of the selection) and probably extract the function
rotate/flip/mirror from the parts class and create a new class with for
only goal to calculate and apply these modifiaction trough an undo
command.
2025-07-15 22:47:33 +02:00
plc-user
07c6ac6c9f correct some English comments 2025-07-09 15:23:01 +02:00
Laurent Trinques
acb4b21070
Update packaging_script_AppImage_aarch64.sh 2025-06-13 16:03:35 +02:00
Laurent Trinques
1e7660fcab
Update packaging_script_AppImage_aarch64.sh 2025-06-13 13:06:21 +02:00
plc-user
6586fa3f91 adjust English translation 2025-06-01 11:14:57 +02:00
plc-user
7244e4a59c use symbolic links to collect all licenses in one directory and adjust sourcecode 2025-06-01 11:03:49 +02:00
plc-user
1868f91ff8 use symbolic links to collect all licenses in one directory and adjust sourcecode 2025-06-01 11:01:32 +02:00
plc-user
0b1491b59a fix typo in German translation 2025-06-01 08:52:46 +02:00
Laurent Trinques
7495901d07 macOS add licenses folder in BUNDLE/Contents/Resources/licenses 2025-05-31 12:51:23 +02:00
Laurent Trinques
33445de6c0 Try to add embed fonts for macOS 2025-05-31 12:31:03 +02:00
plc-user
5ba984be56 add copyright-sign to about-dialog 2025-05-30 10:49:32 +02:00
Laurent Trinques
ab03530a14 git submodule update --remote elements 2025-05-30 10:01:03 +02:00
plc-user
1b671990ee prevent crash, when adding text to element in diagram-editor 2025-05-30 09:42:22 +02:00
plc-user
ce18bd1666 use "%" for string-concatenation (less memory-usage) 2025-05-30 09:40:11 +02:00
plc-user
e371fe9845 add font-links to about-dialog – tab "libraries" 2025-05-22 22:35:09 +02:00
plc-user
ad29893842 use "%" for string-concatenation
Qt-Docs says it's less memory-usage...
2025-05-22 21:33:32 +02:00
plc-user
3a8e6b16f5 update osifont (-medium) from upstream 2025-05-22 19:15:47 +02:00
Laurent Trinques
6dbc1cd392 git submodule update --remote elements 2025-05-22 09:08:10 +02:00
plc-user
c7ed744481 Include some fonts to QElectroTech
- include Liberation-Fonts and osifont
  (thanks elevatormind!)
- use "Liberation Sans" as default-font
- adjust License-Tab in About-Form
- Bugfix: When selecting a font, the current
  font is highlighted in dialog
- adjust some whitespace and English comments
2025-05-18 14:15:20 +02:00
plc-user
cf39ae2417 Include some fonts to QElectroTech
- include Liberation-Fonts and osifont
  (thanks elevatormind!)
- use "Liberation Sans" as default-font
- adjust License-Tab in About-Form
- Bugfix: When selecting a font, the current
  font is highlighted in dialog
- adjust some whitespace and English comments
2025-05-18 13:54:31 +02:00
Laurent Trinques
b82a05881a Update packaging_script_AppImage_aarch64.sh 2025-05-16 14:57:31 +02:00
Laurent Trinques
8082274e41 Add packaging_script_AppImage_aarch64.sh 2025-05-11 16:35:22 +02:00
Laurent Trinques
f16d48ec67
Update org.qelectrotech.QElectroTech.json 2025-05-06 11:11:11 +02:00
Laurent Trinques
c259832de4 git submodule update --remote elements 2025-05-04 15:54:06 +02:00
Laurent Trinques
80c0831361
Update org.qelectrotech.QElectroTech.json 2025-04-28 11:35:58 +02:00
plc-user
4e4a26a410 added Chinese translations to titleblocks 2025-04-27 11:45:55 +02:00
plc-user
f2674a0a46 added Chinese translations to default-titleblock 2025-04-27 11:08:28 +02:00
Laurent Trinques
64ace66f8b
Update MacQetDeploy_arm64.sh 2025-04-17 16:07:37 +02:00
plc-user
d007035237 whitespace and comment 2025-03-28 20:21:09 +01:00
plc-user
c1559d2a99 Fix signal for KColorButton 2025-03-28 20:16:37 +01:00
plc-user
936a27500c BugFix: Font for titleblock was hardcoded to Sans Serif
Because of a typo it was never read from settings.
2025-03-23 07:25:37 +01:00
Laurent Trinques
31aaf50572
Merge pull request #388 from Bisku/master
qet_de updated
2025-03-16 09:26:49 +01:00
Bisku
81ec28d1cf Update of qet_de
Translation error fixed.
2025-03-15 21:11:02 +01:00
Laurent Trinques
3bbb6385b8
Merge pull request #387 from plc-user/master
only calculate grid-point-size, when min != max
2025-03-15 18:45:16 +01:00
plc-user
757df90951 minor: added some English comments 2025-03-13 21:05:21 +01:00
plc-user
eeb453f120 only calculate grid-point-size, when min != max 2025-03-13 20:46:04 +01:00
Laurent Trinques
6afd9fe48d
Merge pull request #386 from elevatormind/master
Mouse hover text for dynamic text items
2025-03-13 11:07:40 +01:00
Laurent Trinques
6eff69bc6b
Merge pull request #384 from plc-user/master
improvement: adjust size of grid-dots with zoom-factor
2025-03-13 11:06:30 +01:00
Magnus Hellströmer
c9304892e0 Mouse hover text for dynamic text items
- Added text for dynamic text item to indicate that shift needs to be held down to move the text.
2025-03-12 21:16:25 +01:00
plc-user
59f547b4a2 unify German wording 2025-03-08 15:16:33 +01:00
plc-user
0084dcf289 fix typo with function-name 2025-03-07 20:53:07 +01:00
plc-user
0804d3524a improvement: ajust size of grid-dots with zoom-factor
Introduced additional spinboxes in config-page for
setting min- and max-size of grid-dots separately for
diagram- and element-editor.
That assures maximal flexibility for setting the grids.
Don't want the grid-dots to change over zooming-levels?
Set min- and max-values to the same number.
Preset-values for all min-/max-values is "1".
If the adjustable range of 1 to 5 is not sufficient, it
can be easily adjusted. Only need feedback for this.
2025-03-07 20:16:21 +01:00
plc-user
2b0dd1b188 comments and whitespace 2025-03-07 18:13:53 +01:00
Laurent Trinques
3c2c889922
Merge pull request #383 from plc-user/master
adjust zoom-factor to use cosmetic-line and fixed comments
2025-03-07 11:07:31 +01:00
plc-user
27cff81ee7 adjust zoom-factor to use cosmetic-line and fixed comments 2025-03-07 10:58:47 +01:00
Laurent Trinques
40a7995993
Merge pull request #382 from plc-user/master
element-editor: fix jumping positions when rotate, mirror or flip
2025-03-07 07:57:16 +01:00
plc-user
45afd9af0e element-editor: fix jumping positions when rotate, mirror or flip 2025-03-07 07:43:20 +01:00
Laurent Trinques
20b7e1763d
Merge pull request #379 from plc-user/master
unify some more code for Qt5 & Qt6 (and more)
2025-03-07 06:35:07 +01:00
plc-user
9044d532ac corrected English comments 2025-03-06 08:07:49 +01:00
plc-user
50efc318e0 change to run code with Qt5 & Qt6 as described in forum 2025-03-06 08:06:36 +01:00
plc-user
e4d2dbd2a6 a minor change is enough to run code in Qt5 & Qt6 - no need to differentiate anymore 2025-03-05 15:24:07 +01:00
plc-user
ddf40854dc fix comment 2025-03-05 11:54:58 +01:00
plc-user
ef0fa6e7ac same change for polygons as for other primitives to support Qt5 & Qt6 2025-03-05 09:49:16 +01:00
plc-user
237c21bad8 use same code for Qt5 & Qt6 for XRef-list 2025-03-05 07:05:12 +01:00
plc-user
260ce2a8bc unify NamesList "imported elements" to be used with Qt5 & Qt6; still need to decide whether to use list of QChars or written text in utf-8; kept both variants for now... 2025-03-05 07:03:38 +01:00
plc-user
6199367166 remove unused NamesList from qetproject.* 2025-03-05 06:59:09 +01:00
plc-user
d073e810b8 set default-value for QFont::Weight to prevent warning at runtime 2025-03-05 06:55:14 +01:00
Laurent Trinques
a1572be8fa
Merge pull request #377 from plc-user/master
same simplifications as in #376 "use the same code for Qt5 & Qt6"
2025-03-04 15:09:20 +01:00
plc-user
6c52d95201 same simplifications as in #376 "use the same code for Qt5 & Qt6" 2025-03-03 22:41:44 +01:00
Laurent Trinques
d3463def98
Merge pull request #376 from plc-user/master
simplify and use the same code for Qt5 & Qt6
2025-03-03 06:16:21 +01:00
plc-user
4009e6aaab simplify and use the same code for Qt5 & Qt6
When reading and comparing Qt5-docs and Qt6-docs, I read,
that there are no differences in the functions!
So it is not necessary to have the differentiation
between the Qt-Versions.
Code compiles without errors or warnings for Qt5 and Qt6.
2025-03-02 18:56:34 +01:00
Laurent Trinques
6ff518ec3b
Merge pull request #375 from plc-user/master
bordertitleblock: use same code for Qt5 & Qt6 for "numbering" rows
2025-03-02 09:53:11 +01:00
plc-user
513927424f bordertitleblock: use same code for Qt5 & Qt6 for "numbering" rows 2025-03-02 08:48:19 +01:00
Laurent Trinques
864a3f166f
Merge pull request #374 from plc-user/master
some minor changes
2025-03-01 07:19:28 +01:00
plc-user
6111d8ca2c only write author-information, if available 2025-02-28 21:08:12 +01:00
plc-user
e0b26592c7 fix typos 2025-02-28 20:36:38 +01:00
plc-user
a17ceaba85 sort names in desktop-file by alphabet 2025-02-28 20:27:00 +01:00
plc-user
e987d8c271 fix typo in variable-name 2025-02-28 20:25:31 +01:00
Laurent Trinques
74e6657ca5 Add translations FR 2025-02-28 17:35:57 +01:00
Laurent Trinques
e1d15f3b77
Merge pull request #372 from plc-user/master
implement setting of point-size of grids
2025-02-28 17:30:58 +01:00
plc-user
81f51b3d58 update language-files 2025-02-28 16:55:18 +01:00
plc-user
a36de7de74 implement variable point-size of grid 2025-02-28 16:33:24 +01:00
plc-user
15ae8b0058 fix typo of variable 2025-02-28 16:02:58 +01:00
Laurent Trinques
e66061fdca
Merge pull request #370 from plc-user/master
some small changes for selective move
2025-02-28 09:57:41 +01:00
plc-user
e2e84a56f7 limit movement to int-values to be able to re-position to original position 2025-02-28 07:40:59 +01:00
plc-user
565374f174 additional ControlModifier does not work here as expected 2025-02-28 07:36:53 +01:00
plc-user
7bdca47d8e use brackets to be more clear what is meant 2025-02-28 07:33:17 +01:00
Laurent Trinques
f0c954329f git submodule update --remote elements 2025-02-25 16:49:12 +01:00
Laurent Trinques
e99ad6b424
Merge pull request #369 from prescott66/patch-1
Added slovak translation to org.qelectrotech.qelectrotech.desktop
2025-02-25 12:53:10 +01:00
Dušan Kazik
74460a6645
Added slovak translation to org.qelectrotech.qelectrotech.desktop
Added slovak translation for app name and comment.
2025-02-25 09:20:04 +01:00
Laurent Trinques
231a1c919a git submodule update --remote elements 2025-02-22 10:31:24 +01:00
Laurent Trinques
19c9d614e8
Merge pull request #367 from plc-user/master
unify calls to "setRotation" for element-primitives again
2025-02-22 10:18:14 +01:00
plc-user
43386aa14f unify calls to "setRotation" for element-primitives 2025-02-22 09:30:15 +01:00
plc-user
181680e6f1 add English comments 2025-02-22 09:20:46 +01:00
Laurent Trinques
667d25899f
Merge pull request #364 from elevatormind/conductor_texts
New variables for conductor text formulas
2025-02-21 17:13:18 +01:00
Laurent Trinques
c9b9165911
Merge pull request #365 from elevatormind/selective_move
Added option to only move dynamic texts
2025-02-21 17:12:54 +01:00
Magnus Hellströmer
78ee65a21b Added option to only move dynamic texts 2025-02-19 21:33:29 +01:00
Magnus Hellströmer
68a2ddde18 New variables for conductor text formulas 2025-02-19 20:26:53 +01:00
Laurent Trinques
8c3343795a
Merge pull request #362 from pkess/fix_typo
Fix typo widht to width
2025-02-19 15:54:59 +01:00
Peter Kessen
2097b24d37 Fix typo for variable 2025-02-18 20:14:51 +01:00
Peter Kessen
5351746dc7 Fix typo within settings entry 2025-02-18 20:13:10 +01:00
Laurent Trinques
1af3c5b852
Merge pull request #361 from plc-user/master
element-editor: add mirror and flip for "text"
2025-02-18 06:27:14 +01:00
plc-user
c2a2e5f5eb minor: whitespace and comments 2025-02-17 19:45:53 +01:00
plc-user
dc836248f0 element editor: add mirror and flip for “text”
Maybe not (yet) perfect, but it looks pretty good to me!

Why am I doing this to myself?
All this crap with fonts and stuff!
It's been crap for as long as I can remember.
2025-02-17 19:39:53 +01:00
Laurent Trinques
a3bf2e2800 minor for Swedish translation
Add translation for Imported elements in QET project widget
2025-02-17 16:00:46 +01:00
Laurent Trinques
83f960a983
Merge pull request #360 from elevatormind/lang_sv
Add Swedish translation
2025-02-17 15:42:25 +01:00
Laurent Trinques
c223121f00 git submodule update --remote elements 2025-02-17 15:30:42 +01:00
plc-user
0f647a5c38 fix: do not add "kindInformations" for thumbnail-elements 2025-02-17 09:48:51 +01:00
plc-user
67112bf8e5 fix typo in enum-entry and comments 2025-02-17 09:33:35 +01:00
Laurent Trinques
1b60f7c52a
Merge pull request #359 from pkess/linux_installer
German text for launcher and debian package code style
2025-02-17 06:36:55 +01:00
Magnus Hellströmer
9a96eb914d Updated qet_sv.qm 2025-02-16 20:59:02 +01:00
Magnus Hellströmer
bf8723015a Update swedish translation 2025-02-16 20:54:15 +01:00
Magnus Hellströmer
82d7bbda68 Added swedish language 2025-02-16 20:54:15 +01:00
Peter Kessen
0df3ecb5f7 Edit german translation 2025-02-16 19:57:56 +01:00
Peter Kessen
1e27cac8c5 Remove trailing whitespace 2025-02-16 19:57:07 +01:00
Laurent Trinques
16dea9f3de Update Polish translation, thanks Paweł 2025-02-16 17:49:15 +01:00
Laurent Trinques
20e852cbaf
Merge pull request #358 from plc-user/master
some more rotation, mirror and flip
2025-02-16 17:24:33 +01:00
plc-user
51225d5f59 element-editor: add rotation with smaller increments for "line", "polygon", "text" and "dynamic_text" with shortcut <Ctrl>+<Space> 2025-02-16 16:31:18 +01:00
plc-user
3fc5469aee element-editor: add mirror and flip for "dynamic_text" 2025-02-16 16:15:46 +01:00
plc-user
6fdc243552 fix indention - no code-change 2025-02-16 15:43:58 +01:00
plc-user
da109b1522 element-editor: add rotation-functions to "text" and "dynamic_text" 2025-02-16 15:42:33 +01:00
plc-user
2aeae1fe46 use Qt-functions to rotate lines and polygons 2025-02-16 15:28:15 +01:00
plc-user
e98ce4de1d add English comments 2025-02-16 10:02:19 +01:00
plc-user
da0951d5a0 fix typo in variable-name (mixture of French and English) 2025-02-15 20:36:21 +01:00
Laurent Trinques
0be9e2beae minor add qInfo-Text "SQLite version: " 2025-02-15 17:10:39 +01:00
Laurent Trinques
52946f9e3a
Merge pull request #357 from plc-user/master
BugFix: Flip and Mirror of terminals
2025-02-15 09:35:10 +01:00
plc-user
007ce79cee BugFix: Flip and Mirror of terminals 2025-02-15 09:13:56 +01:00
Laurent Trinques
5aee30edee
Merge pull request #356 from plc-user/master
element-editor: fix rotation and more
2025-02-15 08:21:44 +01:00
plc-user
b9a8dc0918 fix typo in translation 2025-02-14 20:57:30 +01:00
plc-user
bd3b39cea3 element-editor: fix rotation, add mirror, add flip for graphical primitives
Now that the problem with the translations of keyboard shortcuts has been resolved and rotation using the space bar works reliably in principle, I took a closer look at the rotation function itself in the element editor.

I noticed, for example, that arcs can be rotated at an angle of 15°. This doesn't really make sense, as the “arc” part doesn't have the “rotation” property. There is only width and height.
And somehow rotating arcs didn't work well: start- and span-angles weren't adjusted.

Lines and polygons can be rotated in 15° increments, which doesn't make much sense, if other parts that can only be rotated in 90° increments are selected at the same time.

To make a long story short:
I reworked the rotation functions of the graphical parts so that now all parts are rotated in 90° steps around the origin! This means that it is now possible to mark several parts and rotate them around the same point at the same time!

In addition, the functions for mirroring graphic parts at y-axis (shortcut "M") and flipping at x-axis (shortcut "F") have been implemented.

I have saved the text elements for later!
(or someone else)
2025-02-14 20:31:03 +01:00
plc-user
fc286cca22 fix one last hardcoded shortcut-translation 2025-02-14 19:52:39 +01:00
plc-user
4d5af028be menu: move "About QElectroTech" in Help-Menu to bottom
If the version number of QElectroTech is requested in the forum in case of error messages or anomalies, the Qt version used is very often stated because the entry “About QElectroTech” does not appear very prominently in the help menu: The entry “About Qt” is used much more frequently because it appears eye-catchingly as the lowest entry. However, specifying the Qt version is often not helpful for troubleshooting: We need the QET version!
That's why I'm moving the “About QElectroTech” entry to the bottom, so that it is easier to see and find!
2025-02-14 19:47:19 +01:00
Laurent Trinques
9afc97108b
Merge pull request #355 from plc-user/master
minor: mostly typos
2025-02-14 17:39:43 +01:00
plc-user
a4a3733670 typos, whitespace and brackets 2025-02-14 16:59:23 +01:00
plc-user
3471140b64 fix typo in fuction-name (looked like a mixture of French and English) 2025-02-14 16:47:39 +01:00
Laurent Trinques
43f0107eb1 Revert "Try Clazy fix-its"
Segfault on old Qt versions!
This reverts commit dba7caed3035585af4b301ed87bd4131dcac994c.
2025-02-14 16:17:58 +01:00
Laurent Trinques
dba7caed30 Try Clazy fix-its
clazy is a compiler plugin which allows clang to understand Qt
semantics. You get more than 50 Qt related compiler warnings, ranging
from unneeded memory allocations to misusage of API, including fix-its
for automatic refactoring.

https://invent.kde.org/sdk/clazy
2025-02-14 15:52:23 +01:00
Laurent Trinques
adcf77e34a Replacing modules includes <QtConcurrent> with QtConcurrentRun and
QtConcurrentMap

Signed-off-by: Laurent Trinques <scorpio@qelectrotech.org>
2025-02-14 14:07:41 +01:00
Laurent Trinques
59236170b2
Merge pull request #354 from plc-user/master
a few translated shortcuts were still there ... fixed!
2025-02-13 08:14:09 +01:00
plc-user
3d82aff4e7 FIX: shortcut for rotation in element-editor was hardcoded in UI 2025-02-12 15:35:45 +01:00
plc-user
516eb9eb45 fixed English comments 2025-02-12 14:02:30 +01:00
plc-user
0b80d1b5b9 a few translated shortcuts were still there ... fixed! 2025-02-12 13:41:39 +01:00
Laurent Trinques
073e4080fd
Merge pull request #353 from plc-user/master
FIX: some shortcuts do not work with language set to local
2025-02-11 18:23:32 +01:00
plc-user
b512aee2bf update language-files 2025-02-11 15:55:24 +01:00
plc-user
38f5547228 use "positive logic" for conditional compiling 2025-02-11 14:43:18 +01:00
plc-user
317c90c769 do not hardcode translations for shortcuts: let the system do it for you! 2025-02-11 14:36:15 +01:00
Laurent Trinques
f308ea6b93
Merge pull request #352 from plc-user/master
fix movement of element, when origin is outside of graphics
2025-02-11 12:54:37 +01:00
plc-user
4808b04a31 fix movement of element, when origin is outside of graphics
When saving an element it is checked, if the origin (0/0)
is inside the graphical parts. If outside, the element is
moved by integer values for x- and y-offset before saving.
Old calculation for offset could lead to "strange" new
values for positions.

Additionally: fix typos and English comments
2025-02-11 11:46:36 +01:00
Laurent Trinques
3a43fbfa61
Merge pull request #351 from plc-user/master
FIX copy-and-paste in element-editor: set paste-position to meaningful values
2025-02-11 06:41:40 +01:00
plc-user
29aee8e80c copy-and-paste: set paste-position to meaningful values 2025-02-10 18:33:49 +01:00
plc-user
717b257fa0 added English comments 2025-02-10 18:26:14 +01:00
plc-user
13f432571d comments: fixed typos and added English comments 2025-02-09 17:51:15 +01:00
Laurent Trinques
610f4d6dfa
Merge pull request #350 from plc-user/master
some cleaning for element-file
2025-02-09 13:32:59 +01:00
plc-user
a20d02f5f0 element-editor: remove leading and trailing whitespace from author-info 2025-02-09 12:43:35 +01:00
plc-user
1fc33aa1ba element-editor: limit decimal places for sizes and positions to two, when saving file 2025-02-09 12:33:24 +01:00
plc-user
706eba6612 fix typos and whitespace 2025-02-09 12:25:09 +01:00
Laurent Trinques
f675ce3452 git submodule update --remote elements 2025-02-08 10:56:36 +01:00
Laurent Trinques
3ae47a714d
Merge pull request #348 from plc-user/master
fix: properties in project-file
2025-02-08 10:33:37 +01:00
plc-user
58aae63616 sorted translations \“imported elements\” in sourcecode and added some for Qt6 2025-02-08 07:45:48 +01:00
plc-user
b8e4fca09f fix: remove empty elementInformation, but keep empty properties 2025-02-08 07:39:21 +01:00
Laurent Trinques
075289797a
Merge pull request #347 from plc-user/master
translation: update German and English
2025-02-08 07:11:13 +01:00
plc-user
f26733f34e translation: update German and English 2025-02-07 20:47:16 +01:00
Laurent Trinques
ba9fea3fd1
Merge pull request #346 from plc-user/master
export: set maximum width / height according limitations in QPainter
2025-02-07 15:16:40 +01:00
plc-user
bbbf77597a export: set maximum width / height according limitations in QPainter 2025-02-07 11:34:05 +01:00
Laurent Trinques
1cf156c47a
Merge pull request #345 from plc-user/master
export: set maximum width / height according specifications of export-type
2025-02-06 16:11:36 +01:00
plc-user
924d1c1b05 use "static const" - variables instead of multiple times values in source-code
use multiplication-sign "×" instead of asterisk "*" between widht and height
2025-02-06 15:16:19 +01:00
plc-user
33570ffceb export: set maximum width / height according specifications of export-type 2025-02-06 12:58:32 +01:00
Laurent Trinques
40b7aa999f git submodule update --remote elements 2025-02-06 07:18:42 +01:00
Laurent Trinques
c9ba7bee6c ExportDialog increase spinBox limit 10 000px to 100 000px
See: https://qelectrotech.org/forum/viewtopic.php?pid=21002#p21002
2025-02-06 07:12:56 +01:00
Laurent Trinques
7466793e71
Merge pull request #344 from plc-user/master
some clean-up for element-file and in code
2025-02-05 19:26:24 +01:00
plc-user
408481a023 some clean-up for "elementInformations" in element-file
- for some time now and for whatever reason, element-editor
  sometimes adds element-information without content –> do not
  save info-lines without any content
- sort element-information alphabetically by name in element-file
- use trimmed strings for element-information to remove leading
  and trailing whitestpace
2025-02-05 13:11:37 +01:00
plc-user
b0324bd6e8 fix typo 2025-02-05 12:58:49 +01:00
plc-user
812ac83ab6 NamesList: move while-loop into "else"-clause, to be more precise and added english text to comments 2025-02-05 12:57:50 +01:00
Laurent Trinques
d1c6fb7e3c
Merge pull request #343 from plc-user/master
minor: typos, comments, whitespace, translation
2025-02-04 18:15:26 +01:00
plc-user
9dad6963cb minor: typos, comments, whitespace, translation 2025-02-04 13:48:35 +01:00
Laurent Trinques
28df44d1ba
Merge pull request #342 from plc-user/master
Sort names in element-file by language-code
2025-02-04 12:56:03 +01:00
plc-user
25a81f24fa NamesList: Use ‘Qmap’ instead of ‘Qhash’
to automatically sort the names of an element by
language code before saving the element-file.
Added English comment in header-file.
2025-02-03 13:23:32 +01:00
plc-user
7a39e69a32 element-name: if no name is set, set to "en" / "NoName" (also adjusted comment) 2025-02-03 13:03:55 +01:00
Laurent Trinques
af33719995
Merge pull request #341 from plc-user/master
more precise Log-Text for search of "qet_tb_generator"
2025-02-02 15:48:48 +01:00
Laurent Trinques
4c12b3c679
Flatpak upgrade tkinter git to update to python 3.11 2025-02-02 15:16:53 +01:00
plc-user
e1dc978f97 more precise Log-Text for search of "qet_tb_generator" to avoid misunderstandings 2025-02-02 14:48:38 +01:00
Laurent Trinques
1b2d8061a5
Merge pull request #340 from plc-user/master
machine_info: add entry for QETApp::configDir() also for win
2025-02-02 13:34:42 +01:00
plc-user
b0f0a56a88 machine_info: add entry for QETApp::configDir() also for win
We use QETApp::configDir() to save configuration-files (*.json)
for creating BOM, nomenclature, etc. during runtime.
So it's interesting for win-users, too, which configDir is used.
2025-02-02 12:49:59 +01:00
Laurent Trinques
d6d38141c9
Merge pull request #339 from plc-user/master
remove dead code (local variables that were never used)
2025-02-02 12:24:19 +01:00
plc-user
331cecc05c remove dead code (local variables that were never used) 2025-02-02 12:16:28 +01:00
Laurent Trinques
de0fa1fa20
Merge pull request #338 from plc-user/master
minor changes
2025-02-01 12:49:43 +01:00
plc-user
1698e062ab remove dead code (local variables that were never used) 2025-02-01 08:52:07 +01:00
plc-user
3051c225bb minor: typos, witespace, comments 2025-02-01 08:49:12 +01:00
Laurent Trinques
ffef9aaea5
Merge pull request #337 from Bisku/de_translation
Update of qet_de
2025-01-31 15:52:37 +01:00
Bisku
9fc270c8a8 Aktualisierung 2025-01-30
Aktualisierung auf aktuelle Version
2025-01-31 14:41:10 +01:00
Laurent Trinques
2c8797415c
Merge pull request #335 from plc-user/master
rewrite code for executing “qet_tb_generator” plugin
2025-01-30 10:20:24 +01:00
plc-user
8162da1515 reorder search-paths and added currentPath() 2025-01-30 08:30:11 +01:00
plc-user
3cadc9275e improve readability 2025-01-30 07:25:30 +01:00
plc-user
a459029f0d simplify code even more... 2025-01-30 00:15:09 +01:00
plc-user
9dda9f890f close the process in any case 2025-01-29 22:27:56 +01:00
plc-user
9be2ed604e moved "#endif" to always close process and adjusted qInfo-Text 2025-01-29 22:15:36 +01:00
plc-user
a450680f6e rewrite code for executing “qet_tb_generator” plugin
Now it's better readable and maintainable up to the moment
we have our own internal Terminal-Manager for productive use.
Additionally added the storage location “dataDir()/binary”,
so that the new structure for the separation of
configuration and data can be properly kept
2025-01-29 21:57:38 +01:00
Laurent Trinques
22e6188bb6
Merge pull request #333 from plc-user/master
corrected a few places where QETApp::documentDir() should also be used
2025-01-29 14:38:25 +01:00
Laurent Trinques
9d83d3180a
Merge pull request #334 from zultron/zultron/2025-01-29_Fix_snap_qet_tb_generator
build-aux/snap/snapcraft.yaml:  python3.8 -> 3.10
2025-01-29 13:31:46 +01:00
John Morris
09c87cf811 build-aux/snap/snapcraft.yaml: python3.8 -> 3.10
Fix traceback when selecting "Project" menu "Launch the terminal block
creation plugin" item:

    Traceback (most recent call last):
      File "/snap/qelectrotech/1973/bin/qet_tb_generator", line 33, in <module>
        sys.exit(load_entry_point('qet-tb-generator==1.3.1', 'console_scripts', 'qet_tb_generator')())
      File "/snap/qelectrotech/1973/bin/qet_tb_generator", line 25, in importlib_load_entry_point
        return next(matches).load()
      File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 171, in load
        module = import_module(match.group('module'))
      File "/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
        return _bootstrap._gcd_import(name[level:], package, level)
      File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
      File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
      File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
      File "<frozen importlib._bootstrap_external>", line 883, in exec_module
      File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
      File "/snap/qelectrotech/1973/lib/python3.10/site-packages/src/main.py", line 98, in <module>
        import src.PySimpleGUI as sg
      File "/snap/qelectrotech/1973/lib/python3.10/site-packages/src/PySimpleGUI.py", line 95, in <module>
        import tkinter as tk
    ModuleNotFoundError: No module named 'tkinter'
2025-01-29 00:22:17 -06:00
plc-user
bdee8e3e36 set default search-path of non-standard locations of collections and titleblocks (common, company and user) also to QETApp::documentsDir() 2025-01-28 19:01:32 +01:00
plc-user
30a6221e45 remove unused function 2025-01-28 18:56:16 +01:00
plc-user
9f8287206b fix: "dxf2elmt" and "QET_ElementScaler" also read imported files from QETApp::documentDir() by default 2025-01-28 18:44:19 +01:00
Laurent Trinques
bb770ae4f1
Merge pull request #332 from plc-user/master
add commandline-parameter "--data-dir"
2025-01-28 15:04:47 +01:00
plc-user
d971da5ac7 add commandline-parameter "--data-dir" 2025-01-27 21:48:36 +01:00
Laurent Trinques
e9d2c13630
Merge pull request #331 from plc-user/master
machine_info: fix element-count and make static text a bit shorter
2025-01-27 17:58:22 +01:00
plc-user
c01549f315 machine_info: write configured directories to log\n(may have been changed with commandline-parameters) 2025-01-27 17:38:06 +01:00
plc-user
39e287f60d machine_info: fix element-count and make static text a bit shorter 2025-01-27 17:04:26 +01:00
Laurent Trinques
11e3f91029
Merge pull request #330 from plc-user/master
formatting / whitespace - unify declarations
2025-01-26 14:45:36 +01:00
Laurent Trinques
1ac324242a Polish 2025-01-26 14:44:47 +01:00
plc-user
940ae0c34a formatting / whitespace - unify declarations 2025-01-26 14:29:52 +01:00
Laurent Trinques
7a19756f13 Polish 2025-01-26 14:27:02 +01:00
Laurent Trinques
3b24bd25c7
Merge pull request #329 from plc-user/master
Set default-location for projects to documents-dir.
2025-01-26 12:43:00 +01:00
Laurent Trinques
a73452bf6d Polish 2025-01-26 12:31:10 +01:00
Laurent Trinques
24165ee8ee Machine info ; try to Count *elmt Files in alls collections
(include subfolders)
2025-01-26 12:16:46 +01:00
plc-user
4c7cc9a110 adjust comments 2025-01-26 11:55:52 +01:00
plc-user
79f894a327 Set default-location for projects to documents-dir.
All export files that are derived from the project (BOM,
nomenclature, etc.) are saved in the same directory by default.
In this context, the standard directories have been grouped
together in qetapp.cpp / qetapp.h so that only one place needs
to be searched for in case of any adjustments.
2025-01-26 11:32:46 +01:00
Laurent Trinques
f26e936ea9 Polish 2025-01-26 10:48:50 +01:00
Laurent Trinques
1ddfe1d433 Polish 2025-01-26 08:43:07 +01:00
Laurent Trinques
194edbd799 Machine info : try to fix FTFS under Windows 2025-01-25 20:29:11 +01:00
Laurent Trinques
162c402102 Minor 2025-01-25 20:09:31 +01:00
Laurent Trinques
c6427cbfc1 Fix previuois commit 2025-01-25 19:54:41 +01:00
Laurent Trinques
c4b6939ed6 machine_info.cpp: Minor 2025-01-25 19:37:39 +01:00
Laurent Trinques
2436daa16f machine_info.cpp: Minor 2025-01-25 19:03:33 +01:00
Laurent Trinques
4050e8351e machine_info.cpp: Minor 2025-01-25 14:23:51 +01:00
Laurent Trinques
d6f119742d machine_info.cpp: Minor 2025-01-25 14:15:30 +01:00
Laurent Trinques
3e4f3def3e machine_info.cpp: add more informations about OS language and country 2025-01-25 14:00:57 +01:00
Laurent Trinques
4aff7d1a1d
Merge pull request #328 from plc-user/master
machine_info.cpp: add explaining text for directory-list
2025-01-25 07:01:18 +01:00
plc-user
d451bd4df5 machine_info.cpp: add explaining text for directory-list 2025-01-24 21:19:45 +01:00
Laurent Trinques
2cc5de6f7c
Merge pull request #327 from plc-user/master
set config- and data-dir to system-specific paths
2025-01-24 13:48:11 +01:00
plc-user
661530030a
Update machine_info.cpp
second try to resolve PR-conflict
2025-01-24 13:28:52 +01:00
plc-user
620aa665f2
Update machine_info.cpp
try to resolve PR-conflict
2025-01-24 13:25:57 +01:00
Laurent Trinques
8f23a3d94d Improve logs in machine info 2025-01-24 11:49:53 +01:00
Laurent Trinques
c343df3fc9 Minor 2025-01-24 11:12:36 +01:00
plc-user
d7ac2af4d6 use QETApp::dataDir() instead of QStamdardPaths 2025-01-24 08:35:03 +01:00
plc-user
ec7ba05ec1 adjust info-text 2025-01-24 07:19:36 +01:00
plc-user
600cba6a8f update comment 2025-01-24 07:10:36 +01:00
plc-user
4221bb84fb create "AppDataLocation" if not present 2025-01-24 07:02:57 +01:00
plc-user
b6d29fbbf0 update comment 2025-01-24 06:56:04 +01:00
plc-user
635af67100 "writableLocation" is a QString 2025-01-23 20:20:17 +01:00
plc-user
ba9cd71816 set config- and data-dir to system-specific paths 2025-01-23 18:47:10 +01:00
Laurent Trinques
b19fbd2522 Minor 2025-01-23 17:25:36 +01:00
Laurent Trinques
dc403e5e8f Machine info: add new informations about config 2025-01-23 16:34:48 +01:00
Laurent Trinques
be96da650c Maichine info: add new QStandardPaths 2025-01-23 12:35:03 +01:00
Laurent Trinques
cf9b07aeb5 Update qet_cs.ts binary 2025-01-16 08:22:17 +01:00
Laurent Trinques
6aa2c3c7be
Merge pull request #326 from pafri/patch-1
Update qet_cs.ts
2025-01-16 08:19:59 +01:00
pafri
17788dc432
Update qet_cs.ts
I've updated the translation of the Czech localization file. Please commit it.

Greetings.
2025-01-15 19:49:47 +01:00
Laurent Trinques
9bfde721bf Update pugixml to v1.15 2025-01-12 16:39:33 +01:00
Laurent Trinques
9964eee202
Merge pull request #324 from plc-user/master
update German translation
2025-01-09 11:49:53 +01:00
Laurent Trinques
03d31986b7 Update README.md 2025-01-09 05:23:56 +01:00
plc-user
33ce130296 update German translation 2025-01-08 16:17:52 +01:00
Laurent Trinques
e21536d184 git submodule update --remote elements 2025-01-05 14:09:04 +01:00
Laurent Trinques
ffba440c6e Rename (be) translation to Belgium-Flemish nl_BE 2025-01-05 13:55:48 +01:00
Laurent Trinques
ad997605ec Rename (be) translation to Belgium-Flemish nl_BE 2025-01-05 13:17:59 +01:00
Laurent Trinques
e2eace06d3
Merge pull request #323 from plc-user/master
fix copyright-year
2025-01-05 07:30:10 +01:00
plc-user
ed8728c45a fix copyright-year 2025-01-04 17:25:20 +01:00
Laurent Trinques
77bfe84a4c One year 2025-01-04 13:37:40 +01:00
Laurent Trinques
e053acb065 Add binary pt_BR translation 2025-01-03 06:50:24 +01:00
Laurent Trinques
b5d57086bc
Merge pull request #322 from gleissonjoaquim3/master
PT-BR language update
2025-01-03 06:05:12 +01:00
gleissonjoaquim3
b456bedaa3 lang/qet_pt_BR.ts
PT-BR language update
2025-01-03 01:33:13 -03:00
Laurent Trinques
db18095cfb
Merge pull request #319 from ChuckNr11/master
Change Sorting of ElementInfo ComboBox
2025-01-01 09:01:48 +01:00
Achim
3438ba9ab3 composite text of report element corrected
In the ElementEditor, incorrect variables were displayed for
CompositeText in ReportElements.  This is corrected here
2024-12-31 21:58:42 +01:00
Laurent Trinques
1078496bb1
Merge pull request #320 from plc-user/master
Fix: Only scroll diagram-view, when moved text leaves visible area
2024-12-31 16:04:26 +01:00
plc-user
711353bb58 Fix whitespace 2024-12-31 16:01:47 +01:00
plc-user
dd7955e50e Fix: Only scroll diagram-view, when moved text leaves visible area 2024-12-31 15:52:17 +01:00
Achim
7a617e72bd a few small corrections 2024-12-31 08:40:56 +01:00
Achim
e73aa3b84d ComboBox change sorting
alphabetical sorting in the ComboBox changed according to the order in
the elementInfoKeys list
2024-12-31 08:40:03 +01:00
Achim
8e0c3f4252 german language file adapted 2024-12-31 08:32:41 +01:00
Laurent Trinques
27474b0822 Refresh translation binary 2024-12-27 15:00:44 +01:00
Laurent Trinques
d6dcc85157
Update qet_be.ts 2024-12-27 14:59:06 +01:00
Laurent Trinques
b2dc6ba738 Add be-nl translation, thanks Ronny 2024-12-27 14:16:31 +01:00
Laurent Trinques
31ed09f185 Revert "Try to fix https://github.com/qelectrotech/qelectrotech-source-mirror/"
This reverts commit 3992c60c45adfbbbecca119e1e505e9d3f0bc0d7.
2024-12-22 16:17:32 +01:00
Laurent Trinques
3992c60c45 Try to fix https://github.com/qelectrotech/qelectrotech-source-mirror/
pull/314
2024-12-22 14:25:30 +01:00
Laurent Trinques
fef351df8b Typo 2024-12-22 08:44:19 +01:00
Laurent Trinques
fa322af060
Merge pull request #317 from qelectrotech/revert-314-master
Revert "ElementEditor elmt_info_cb sorting changed"
2024-12-21 13:22:10 +01:00
Laurent Trinques
34cc26a325
Revert "ElementEditor elmt_info_cb sorting changed" 2024-12-21 12:59:43 +01:00
Laurent Trinques
ba14c6112e
Merge pull request #316 from plc-user/master
Fix typo and some whitespace
2024-12-19 16:22:45 +01:00
Laurent Trinques
cb8256bd48 Add de binary translation, thanks ChuckNr11 for update translation 2024-12-19 10:52:13 +01:00
Laurent Trinques
3dd512b587
Merge pull request #314 from ChuckNr11/master
ElementEditor elmt_info_cb sorting changed
2024-12-19 10:41:58 +01:00
Laurent Trinques
31c0267cd5
Merge pull request #315 from plc-user/master
Fix missing company-titleblocks in properties-dialog
2024-12-19 09:58:37 +01:00
plc-user
88b2955b00 Fix typo and some whitespace 2024-12-18 16:48:11 +01:00
plc-user
46378ca2a7 Fix missing company-titleblocks in properties-dialog 2024-12-18 15:18:34 +01:00
Achim
c7481011e8 german language file adapted 2024-12-16 16:01:37 +01:00
Achim
15d9708c46 a few small corrections 2024-12-16 16:00:50 +01:00
Achim
3b32daf15d ComboBox change sorting
alphabetical sorting in the ComboBox changed according to the order in
the elementInfoKeys list
2024-12-16 15:55:16 +01:00
ChuckNr11
0a658d5d61
Merge branch 'qelectrotech:master' into master 2024-12-15 22:17:14 +01:00
Laurent Trinques
a140c5ad39
Update CMakeLists.txt 2024-12-15 15:05:23 +01:00
Laurent Trinques
4894284520 Fix segfault due to calling method of uninitialized object, thanks
ladmanj

https://github.com/qelectrotech/qelectrotech-source-mirror/issues/311
2024-12-15 14:41:34 +01:00
Laurent Trinques
efc8745bc7
Update packaging_script_AppImage.sh 2024-12-15 09:35:26 +01:00
Laurent Trinques
406af16e94
Update org.qelectrotech.QElectroTech.json 2024-12-15 09:32:16 +01:00
Laurent Trinques
e3e48d3966
Fix snapcraft.yaml 2024-12-14 16:09:07 +01:00
Laurent Trinques
0e646aed0b
Update translations_stat.pl 2024-12-14 14:25:35 +01:00
Laurent Trinques
52d56c18a2
Try to fix icon on Wayland 2024-12-14 13:31:42 +01:00
Laurent Trinques
d3f132adc6
Try to fix icon on Wayland 2024-12-14 13:28:17 +01:00
Achim
7b50f10749 ElementEditor elmt_info_cb sorting changed
alphabetical sorting in the ComboBox changed according to the order in
the elementInfoKeys list
2024-12-08 19:36:22 +01:00
Laurent Trinques
64bb2308d8 git submodule update --remote elements 2024-12-07 17:05:23 +01:00
Laurent Trinques
dd3cee5d8e
Merge pull request #313 from plc-user/master
fix typos and whitespace
2024-11-24 08:15:23 +01:00
plc-user
6dcb6ebcb7 fix typos and whitespace 2024-11-23 21:17:39 +01:00
Laurent Trinques
a9f5e2945b
Update qetmainwindow.cpp 2024-11-23 16:01:39 +01:00
Laurent Trinques
732d317e81
Update qetmainwindow.cpp
Fix download url
2024-11-23 13:17:57 +01:00
Laurent Trinques
2b77964881 git submodule update --remote elements 2024-11-17 12:00:00 +01:00
Laurent Trinques
5702ed3d04
Merge pull request #312 from Arusekk/dark-mode-collections
Force light mode in collections like projects
2024-11-17 11:24:07 +01:00
Arkadiusz Kozdra
a2c1c5515a Force light mode in collections like projects 2024-11-16 10:03:29 +01:00
Laurent Trinques
8b66709ea3 Update en, fr translations 2024-11-03 14:59:37 +01:00
Laurent Trinques
e6d995c190 Update *ts files 2024-11-03 14:42:35 +01:00
Laurent Trinques
c1706cb055 Add new variables to elementInfoKeys
aux1, aux2, aux3, aux4
See:
https://qelectrotech.org/forum/viewtopic.php?pid=20558#p20558
2024-11-03 14:40:24 +01:00
Laurent Trinques
fe3ffd890b
Update snapcraft.yaml 2024-10-31 11:15:50 +01:00
Laurent Trinques
8b5a4cea0d Update translations *ts files 2024-10-18 16:37:29 +02:00
Laurent Trinques
ca48684b39 Update Polish translation, thanks Pawel 2024-10-13 14:28:27 +02:00
Laurent Trinques
c4fd1efb4f Minor 2024-10-13 10:02:49 +02:00
Laurent Trinques
fc0dcb6ab0 Improve message box 2024-10-13 09:55:24 +02:00
Laurent Trinques
e02ad585a9 Minor 2024-10-10 11:42:37 +02:00
Laurent Trinques
75cd943dbd Update *TS files 2024-10-10 11:06:28 +02:00
Laurent Trinques
e6d3121a32 Uniformise MessageBox
Add QObjet for translate box message
2024-10-10 10:57:09 +02:00
Laurent Trinques
429726f463
Merge pull request #310 from plc-user/master
About QET: improvements in usability
2024-10-08 16:30:40 +02:00
plc-user
b9c9d0e31f About-Dialog - Log: Scroll to most recent log-entry 2024-10-08 12:48:02 +02:00
plc-user
7918cbb7ab remove unneeded #include 2024-10-08 12:21:45 +02:00
plc-user
1454a8d4e7 About-Dialog - Log: Show most recent log file by default 2024-10-08 12:10:10 +02:00
Laurent Trinques
35018ba314
Merge pull request #308 from plc-user/master
use MessageBox to inform user about additional info when importing scaled element
2024-10-06 16:35:14 +02:00
plc-user
3bf4c852c9 use MessageBox to inform user about additional info when importing scaled element 2024-10-06 16:15:08 +02:00
Laurent Trinques
a118c33f80 add messageBox to inform user when dxf2elmt can't convert DXF file 2024-10-06 14:30:31 +02:00
Laurent Trinques
326387895a
Update qetdiagrameditor.cpp 2024-10-06 06:29:24 +02:00
Laurent Trinques
566e7f7004
Update qetdiagrameditor.cpp 2024-10-06 06:18:48 +02:00
Laurent Trinques
625e673385
Update qetdiagrameditor.cpp 2024-10-05 14:34:20 +02:00
Laurent Trinques
1863329ca0
Typo 2024-10-05 13:47:08 +02:00
Laurent Trinques
e83424459c Try to fix false positive message box warning when launching process-
>startDetached("qet_tb_generator")
Launch program "qet_tb_generator" by QET only when an project was open
2024-10-05 13:41:20 +02:00
Laurent Trinques
59253019ff
Update snapcraft.yaml 2024-09-30 06:13:24 +02:00
Laurent Trinques
c66b873631
Update qelectrotech-launch 2024-09-29 15:21:20 +02:00
Laurent Trinques
b2a999cec5
Update snapcraft.yaml 2024-09-29 14:38:39 +02:00
Laurent Trinques
f1cb63cf0c
Snap elementeditor: remove old plugin DXFtoQET 2024-09-29 14:37:25 +02:00
Laurent Trinques
4138b8998c qetelementeditor: remove old plugin DXFtoQET 2024-09-29 14:33:14 +02:00
Laurent Trinques
24929861ba Improve 2024-09-29 13:11:40 +02:00
Laurent Trinques
fcd2f68f68 dxftoelmt: add Print standard error and filepath to the log file 2024-09-29 12:54:47 +02:00
Laurent Trinques
f0b0af9a76 git submodule update --remote elements 2024-09-27 16:22:47 +02:00
Laurent Trinques
6a7f24a2af git submodule update --remote elements 2024-08-29 11:34:02 +02:00
Laurent Trinques
59e06a4087 Update Polish translation, thanks Pawel 2024-08-28 13:38:17 +02:00
Laurent Trinques
3738c79ec6
Merge pull request #304 from plc-user/master
make text for missing software "dxf2elmt" translatable
2024-08-21 09:09:43 +02:00
Laurent Trinques
4871aae59d
revert Try to improve Unable to run the app on OSX 2024-08-20 18:55:47 +02:00
plc-user
8649d21298 fix French translation 2024-08-20 16:46:10 +02:00
plc-user
de41f29e6b make text for missing software "dxf2elmt" translatable 2024-08-20 16:31:21 +02:00
Laurent Trinques
f1a8c00028 Update *TS files 2024-08-20 12:43:36 +02:00
Laurent Trinques
e4f5e8c68a
Merge pull request #303 from plc-user/master
QET_ElementScaler: fix error for Qt 5.9 and added mirroring
2024-08-20 12:38:01 +02:00
plc-user
1649e8d28b QET_ElementScaler: fix for "cancel" 2024-08-20 11:48:41 +02:00
plc-user
5e3ca46133 QET_ElementScaler: fix error for Qt 5.9 and added mirroring 2024-08-20 11:38:29 +02:00
Laurent Trinques
a162f158ad Update *Ts files 2024-08-20 00:51:31 +02:00
Laurent Trinques
6aebbfeaa7
Merge pull request #302 from plc-user/master
integrate "QET_ElementScaler" as external software
2024-08-20 00:34:07 +02:00
plc-user
5d725f6d55 fix typo 2024-08-19 09:48:11 +02:00
plc-user
85d10fc0e6 integrate "QET_ElementScaler" as external software 2024-08-19 09:19:28 +02:00
Laurent Trinques
1baf9db799
Typo 2024-08-07 12:42:39 +02:00
Laurent Trinques
32c0e04c56
Try to improve Unable to run the app on OSX
https://qelectrotech.org/bugtracker/view.php?id=290
2024-08-07 09:13:14 +02:00
Laurent Trinques
57b5819f07 Revert 2024-07-28 01:54:27 +02:00
Laurent Trinques
7c5e0135a6 Add to drag and drop the multiple selection in collections
See:https://qelectrotech.org/forum/viewtopic.php?pid=20125#p20125
2024-07-27 16:37:39 +02:00
Laurent Trinques
7d8734e192
Update README.md 2024-07-22 12:33:37 +02:00
Laurent Trinques
30184bdd06
Merge pull request #300 from plc-user/master
move code into else-clause to avoid possible crashes
2024-07-15 14:04:58 +02:00
plc-user
1062d217f0 move code into else-clause to avoid possible crashes 2024-07-15 00:01:20 +02:00
Laurent Trinques
6cad599664 git submodule update --remote elements 2024-07-06 08:19:19 +02:00
Laurent Trinques
cbd309ec5a
Fix :
Add element1_linked element2_linked informations to terminal-name
connected in qet-file
2024-06-30 15:02:42 +02:00
Laurent Trinques
23c4ba2a3e Fix segfault in previous commit 2024-06-21 17:48:57 +02:00
Laurent Trinques
dd03f0eece Add elements informations to terminal-name connected in qet-file 2024-06-21 15:28:57 +02:00
Laurent Trinques
491b8ce64c git submodule update --remote elements 2024-06-19 06:00:27 +02:00
Laurent Trinques
2d8dd2b480 git submodule update --remote elements 2024-06-17 06:41:57 +02:00
Laurent Trinques
fda314d585
Merge pull request #297 from plc-user/master
add terminal-names to connection in qet-file
2024-06-17 06:21:17 +02:00
plc-user
f9073ca5fb add terminal-names to connection in qet-file 2024-06-16 15:53:09 +02:00
Laurent Trinques
36da291be6
Merge pull request #296 from plc-user/master
fix: editing SpinBoxes with keyboard lose focus
2024-06-09 15:59:24 +02:00
plc-user
4da78939d0 fix: editing SpinBoxes with keyboard lose focus 2024-06-09 15:26:18 +02:00
Laurent Trinques
a942f42927 git submodule update --remote elements 2024-06-05 17:05:31 +02:00
Laurent Trinques
e9e2ea5b0e
Try to fix bug #307 2024-06-02 17:02:53 +02:00
Laurent Trinques
701265e393 Revert 2024-06-01 12:39:59 +02:00
Laurent Trinques
073763d9bf Try to fix bug #307 2024-06-01 12:27:26 +02:00
Laurent Trinques
ca7dc28ecf
Merge pull request #295 from joseyspain/master
Spanish lang update
2024-05-20 06:11:57 +02:00
Josey
a70cc75504 Spanish lang update
Hi, more spanish updates. Regards, Josey
2024-05-19 21:05:36 +02:00
Laurent Trinques
6cc297def1
Merge pull request #294 from joseyspain/master
More spanish translations.Josey
2024-05-14 07:33:23 +02:00
Josey
1baf9125dc More spanish translations.Josey
More spanish translations. Josey
2024-05-13 21:28:08 +02:00
Laurent Trinques
78bae2dc60
Merge pull request #293 from plc-user/master
update German and English translations
2024-05-13 06:11:58 +02:00
plc-user
d0a10ef9af modified accelerators in English translation to avoid doubles... 2024-05-12 12:00:09 +02:00
plc-user
c6bc23addc update German translations 2024-05-12 11:56:22 +02:00
Laurent Trinques
9a7da28fc5 Add spanish translation, thanks Josey 2024-05-12 07:49:17 +02:00
Laurent Trinques
dd7f295f5c Add spanish translation, thanks Josey 2024-05-11 19:16:18 +02:00
Laurent Trinques
774b604b50 Minor 2024-05-08 20:08:16 +02:00
Laurent Trinques
e36df6f7d2 git submodule update --remote elements 2024-05-08 19:36:53 +02:00
Laurent Trinques
9076d9da80 Update TS files 2024-05-08 19:35:15 +02:00
Laurent Trinques
c7d6312997 Try to fix bug #303 2024-05-08 19:18:48 +02:00
Laurent Trinques
5492cd3f71
Update org.qelectrotech.QElectroTech.json 2024-05-08 14:06:12 +02:00
Laurent Trinques
9b4bbfbf0d
Merge pull request #292 from plc-user/master
hide SVG background checkbox in print preferences
2024-05-06 20:25:37 +02:00
plc-user
b20456d0d6 hide SVG background checkbox in print preferences 2024-05-06 11:21:42 +02:00
Laurent Trinques
69338962bc
revert Update snapcraft.yaml 2024-05-05 20:46:37 +02:00
Laurent Trinques
78005f812a
Update snapcraft.yaml 2024-05-05 16:30:12 +02:00
Laurent Trinques
3479b98242
Update snapcraft.yaml 2024-05-05 16:02:41 +02:00
Laurent Trinques
f4f28b83bd git submodule update --remote elements 2024-05-05 05:56:25 +02:00
Laurent Trinques
4c8e7f4856 git submodule update --remote elements 2024-05-03 15:54:33 +02:00
Laurent Trinques
ba1123cf73
Merge pull request #291 from plc-user/master
fixed indentations of the remaining *.cpp/*.h files
2024-05-03 08:59:48 +02:00
plc-user
b3ac3c82af fixed indentations of the remaining *.cpp/*.h files 2024-05-02 08:39:27 +02:00
Laurent Trinques
e9448be986
Update README.md 2024-05-01 13:15:54 +02:00
Laurent Trinques
f72a2545bd
Update LICENSE 2024-05-01 13:15:06 +02:00
Laurent Trinques
206a48a15f
Merge pull request #289 from plc-user/master
correct more indentations / whitespace
2024-04-24 18:59:36 +02:00
plc-user
f33ea64b99 correct more indentations / whitespace (too many tabs) 2024-04-24 18:21:12 +02:00
plc-user
0d44933432 correct more indentations / whitespace 2024-04-24 18:02:00 +02:00
plc-user
fa68d545d0 correct more indentations / whitespace 2024-04-24 14:14:40 +02:00
Laurent Trinques
171f2eab4e git submodule update --remote elements 2024-04-21 12:45:50 +02:00
Laurent Trinques
ce86e18664 git submodule update --remote elements 2024-04-14 13:39:02 +02:00
Laurent Trinques
17030aaa80
Update packaging_script_Flatpak.sh 2024-04-11 15:57:13 +02:00
Laurent Trinques
09b1c0905e
Update packaging_script_AppImage.sh 2024-04-11 15:56:13 +02:00
Laurent Trinques
b453832d46
Update packaging_script_Debian_Ubuntu_Windows.sh 2024-04-11 15:54:48 +02:00
Laurent Trinques
109efa03d2
Update MacQetDeploy.sh 2024-04-11 15:53:19 +02:00
Laurent Trinques
99a8b5f46d
Update MacQetDeploy_arm64.sh 2024-04-11 15:51:51 +02:00
Laurent Trinques
d8b7fc3642
Merge pull request #288 from plc-user/master
update German and English translations
2024-04-10 15:32:49 +02:00
plc-user
5f7f72f292 update German and English translations 2024-04-10 15:21:48 +02:00
Laurent Trinques
7e6befdf0a
Merge pull request #286 from plc-user/master
some minor changes
2024-04-10 12:33:09 +02:00
plc-user
4c52c8c9d0 correct indentations / whitespace 2024-04-10 10:28:58 +02:00
plc-user
4da6465318 add Help in Project-Setting / AutoNum / elements 2024-04-09 12:49:44 +02:00
plc-user
4c7d42251c correct some indention / whitespace 2024-04-07 22:53:51 +02:00
plc-user
6dac8e2005 correct some indention / whitespace 2024-04-07 22:39:33 +02:00
plc-user
15b625021c fix warnings: "control reaches end of non-void function" 2024-04-07 15:17:04 +02:00
plc-user
f4c880dc9f fix indention to get rid of warnings: "if/else does not guard" 2024-04-07 14:46:40 +02:00
Laurent Trinques
f343395da0 Disable menu-entry for show grid, when no project is loaded 2024-04-07 11:13:39 +02:00
Laurent Trinques
6d8e9f51cd
Merge pull request #285 from plc-user/master
correct comments
2024-04-07 11:00:04 +02:00
plc-user
ef66350b30 correct comments 2024-04-07 10:55:28 +02:00
plc-user
f74616d2e4 correct comments 2024-04-07 10:42:37 +02:00
Laurent Trinques
8ce47848c2 Disable menu-entry for terminalBlock plugin, when no project is loaded 2024-04-05 12:59:55 +02:00
Laurent Trinques
d7b83140ab git submodule update --remote elements 2024-04-03 06:16:31 +02:00
Laurent Trinques
2263c798c7
Merge pull request #284 from plc-user/master
FIX SegFault: Disable menu-entry for DB-export when no project loaded
2024-04-02 12:24:36 +02:00
plc-user
cad7fa1ae7 FIX SegFault: Disable menu-entry for DB-export, when no project is loaded 2024-04-02 00:32:34 +02:00
Laurent Trinques
3a02be3f0e git submodule update --remote elements 2024-04-01 13:45:49 +02:00
Laurent Trinques
e73cf633ce 2023->2024 2024-03-29 10:09:48 +01:00
Laurent Trinques
21944b6739
Merge pull request #282 from plc-user/master
changed some remaining "pt_br" to "pt_BR"
2024-03-29 05:17:43 +01:00
plc-user
d54a8b9369 added sanity-check for 5-letter-language; adjusted comments 2024-03-28 19:40:56 +01:00
plc-user
3f796fea4b added translation to "pt_BR" 2024-03-28 17:57:12 +01:00
plc-user
73f7d44dcf changed some remaining "pt_br" to "pt_BR" 2024-03-28 17:43:15 +01:00
Laurent Trinques
c0390a4bd3 Try to fix bug #274 #278 2024-03-28 15:49:17 +01:00
Laurent Trinques
acb7a4cc4c Try to fix bug #274 #278 2024-03-28 15:45:29 +01:00
Laurent Trinques
28135a77db Try to fix bug #274 #278 2024-03-28 15:41:31 +01:00
Laurent Trinques
1b5df9733a git submodule update --remote elements 2024-03-28 15:39:52 +01:00
Laurent Trinques
c88d2b45cc Try to fix bug #274 #278
https://github.com/qelectrotech/qelectrotech-source-mirror/issues/274
2024-03-28 15:16:11 +01:00
Laurent Trinques
c4cae24ba7 Update *TS files 2024-03-28 13:24:06 +01:00
Laurent Trinques
6f22d5d37a
Merge pull request #281 from plc-user/master
add option "transparent background" in SVG-export
2024-03-28 12:49:27 +01:00
plc-user
a7a072b977 corrected English translation 2024-03-28 11:23:37 +01:00
plc-user
90fa934976 corrected German and English translations 2024-03-28 10:35:33 +01:00
plc-user
4cfe658ff0 corrected English translations 2024-03-28 10:30:26 +01:00
plc-user
b55623bfc4 added German and English translations (CheckBox SVG-background) 2024-03-28 10:19:37 +01:00
plc-user
ec3952237f simplify setting of alpha-value for SVG-background 2024-03-28 09:32:55 +01:00
plc-user
2043fc2700 fix: add alpha-channel for SVG-background 2024-03-27 20:20:37 +01:00
plc-user
4de379d884 fix: no hardcoded colors for SVG-background 2024-03-27 20:13:35 +01:00
plc-user
2e379a3024 fix: specified colors for filled and transparent SVG 2024-03-27 19:23:19 +01:00
plc-user
21d293a928 fix: add CheckBox-value "SVG-transparency" to constructor 2024-03-27 15:30:02 +01:00
plc-user
a8aa772321 fix: save setting of CheckBox "SVG-transparency" 2024-03-27 15:15:53 +01:00
plc-user
cc20c218d8 add option "transparent background" in SVG-export 2024-03-27 14:50:26 +01:00
Laurent Trinques
a2beabd559 Update *TS files 2024-03-16 16:46:35 +01:00
Laurent Trinques
0109f3bc23 Minor: When the user right-clicks on the collection tree and
selects the collection property, the collection name,
file path and number of elements will be added
to the qInfo log file.
2024-03-16 16:15:23 +01:00
Laurent Trinques
e4b6b2b180
Merge pull request #280 from plc-user/master
Fix sizes
2024-03-14 09:31:58 +01:00
plc-user
06a6e5e5f4 fix font-size of graphical elements "input" 2024-03-14 08:55:59 +01:00
plc-user
5df77291fe fix size of SVG-export 2024-03-14 08:51:53 +01:00
Laurent Trinques
8da2f980cd git submodule update --remote elements 2024-03-11 09:29:57 +01:00
Laurent Trinques
8aaa596ff2 git submodule update --remote elements 2024-03-09 17:46:43 +01:00
Laurent Trinques
3c8d612742 The Elements Collection progress bar adds the number value of all the
elements counted.
2024-02-23 12:39:23 +01:00
Laurent Trinques
667e5eccf4 New Element Wizard add Company Collection in build Step 1 tree_view 2024-02-20 13:24:25 +01:00
joshua
ff3b497da2 Element editor : minor fix
In the part list widget, the terminal name is empty if terminal haven't
got name.
Now "terminal" is always displayed and if the terminal have a name the
name is appended to "terminal".
Example :
if the terminal name is 24 then the the part list widget show "terminal
: 24"
2024-02-15 22:04:11 +01:00
Laurent Trinques
7fe4765bff Update NL translations, thanks Dik 2023-12-25 17:24:10 +01:00
Laurent Trinques
c956e60ad0 Remove wrong translation files 2023-12-22 11:05:57 +01:00
Laurent Trinques
f44abb12d7 git submodule update --remote elements
revert PR 8 & 9
2023-12-21 15:48:36 +01:00
Laurent Trinques
bd3eacd1d6 git submodule update --remote elements 2023-12-21 13:04:43 +01:00
Laurent Trinques
3e0545f6b5 Update NL translations, thanks Dik 2023-12-21 07:36:33 +01:00
Laurent Trinques
c0466c0d45 git submodule update --remote elements 2023-12-20 13:08:14 +01:00
Laurent Trinques
f62b0fc812 Update French translations 2023-12-19 10:25:17 +01:00
Laurent Trinques
a3dc317246
Merge pull request #277 from plc-user/master
added folder "company-titleblocks" (incl. language-files)
2023-12-16 11:58:40 +01:00
plc-user
f12b11bee3 added folder "company-titleblocks" \(incl. language-files\) 2023-12-16 09:32:44 +01:00
Laurent Trinques
a4495d50d1
Merge pull request #276 from plc-user/master
update translations: de, en, nl
2023-12-13 13:31:20 +01:00
plc-user
e0b0caaf14 update translations: de, en, nl 2023-12-13 12:11:13 +01:00
Laurent Trinques
ae9e2eb678 Minor Fix En translation 2023-12-13 09:57:19 +01:00
Laurent Trinques
9a2bee851c
Merge pull request #275 from plc-user/master
fix: set default "company-element-dir"
2023-12-12 09:25:18 +01:00
plc-user
3d8ad98ef2 fix: set default "company-element-dir" 2023-12-12 09:03:48 +01:00
Laurent Trinques
439463ab98 git submodule update --remote elements 2023-12-11 09:58:11 +01:00
Laurent Trinques
f7114fb0bb Update *TS files 2023-12-11 09:54:31 +01:00
Laurent Trinques
5190c0e929
Merge pull request #272 from plc-user/master
added "company-collection" as second user-collection
2023-12-11 09:43:26 +01:00
Laurent Trinques
e6aeaf6799
Merge pull request #273 from De-Backer/master
Fix Cmake build
2023-12-11 09:05:43 +01:00
Simon De Backer
d35b1623a4 Fix Cmake build
When creating new files.
Add the new files to: "cmake/qet_compilation_vars.cmake".

So that Cmake stays up to date.

thank you.
2023-12-10 22:58:31 +01:00
plc-user
2471547f70 reverted unwanted change 2023-12-10 20:18:17 +01:00
plc-user
4ca76b9993 fix: path-setting for company-collection 2023-12-10 18:00:06 +01:00
plc-user
74d022328e reverted some unwanted changes 2023-12-09 13:50:03 +01:00
plc-user
72092300ed added icons for "company-collection" 2023-12-09 12:02:52 +01:00
plc-user
f519499a66 added a second user-collection 2023-12-09 12:02:04 +01:00
Laurent Trinques
457aeb6883
Merge pull request #269 from plc-user/master
corrected german texts for "line-style"
2023-12-02 22:17:05 +01:00
plc-user
92b1e6c728 corrected german texts for "line-style" 2023-12-01 11:53:40 +01:00
Laurent Trinques
3d6ab1b050 Minor 2023-11-20 22:24:36 +01:00
Laurent Trinques
76798341b4 git submodule update --remote elements 2023-11-20 10:19:07 +01:00
Laurent Trinques
b6485353f1
Update publish-edge-snap.yml 2023-11-17 13:53:57 +01:00
Laurent Trinques
ffb2d9c63c git submodule update --remote elements 2023-11-15 16:48:24 +01:00
Laurent Trinques
55f7a2cb85 git submodule update --remote elements 2023-11-15 10:26:46 +01:00
Laurent Trinques
2ae3d3d5ae
Update snapcraft.yaml 2023-11-13 10:33:16 +01:00
Laurent Trinques
4d50136146
Update packaging_script_AppImage.sh 2023-11-10 15:00:45 +01:00
Laurent Trinques
8b64343c91
Update packaging_script_AppImage.sh 2023-11-10 14:31:27 +01:00
Laurent Trinques
5e763bc8d2
Update packaging_script_AppImage.sh 2023-11-10 14:29:21 +01:00
Laurent Trinques
7447a7fd44
Update README.md 2023-11-09 20:47:54 +01:00
Laurent Trinques
eeb6107ec7
Update README.md 2023-11-09 20:35:11 +01:00
Laurent Trinques
4d60836851
Update README.md 2023-11-09 20:34:45 +01:00
Laurent Trinques
9f2dbfa39a Update *TS files 2023-11-09 13:57:35 +01:00
Laurent Trinques
a9f6583189 Fix URL 2023-11-09 13:46:45 +01:00
Laurent Trinques
9f8abed4b8 git submodule update --remote elements 2023-11-08 14:11:36 +01:00
Laurent Trinques
29ebc6000b Fix Cmake files 2023-11-08 13:38:55 +01:00
Laurent Trinques
663068e688
Update publish-edge-snap.yml 2023-11-07 13:11:31 +01:00
Laurent Trinques
b7fc8834a2 Fix bug 293: Automatic conductor numbering does not work 2023-11-07 08:04:16 +01:00
Laurent Trinques
902a976cc3 Change weighting of second conductor color
See: https://qelectrotech.org/bugtracker/view.php?id=292
On old project you replace in text editor
dash-size="10" by dash-size="5"
2023-11-05 16:09:48 +01:00
Laurent Trinques
489bfe1a7f Delete very old 32 bits NSIS 2 script 2023-10-28 14:32:57 +02:00
Laurent Trinques
9fceb6f000
Update QET64.nsi
Fix old URL in help links
2023-10-28 14:28:43 +02:00
Laurent Trinques
1a4fcbd274
Update qelectrotech.pro 2023-10-21 00:33:16 +02:00
Laurent Trinques
2c67b831bb
Update qelectrotech.pro 2023-10-21 00:30:38 +02:00
Laurent Trinques
ae31b8270c
Update .gitmodules 2023-10-20 19:30:50 +02:00
Laurent Trinques
75d2e7c148
Update qelectrotech.pro
Try to detect OSX arch
2023-10-20 19:22:17 +02:00
joshua
fbcab7c770 Fix : new conductor have text without variable replaced
For a new conductor with the text set from the default conductor text
defined in the folio properties, and this text contain variables, in
this case the variables are not replaced.
This commit fix it.
2023-10-19 21:59:05 +02:00
Laurent Trinques
083b1d8500 git submodule update --remote https://github.com/qelectrotech/qelectrotech-elements 2023-10-19 16:38:13 +02:00
Laurent Trinques
0a4c6e7d00 Minor 2023-10-19 16:13:44 +02:00
Laurent Trinques
a8df33d1fd Add submodule qelectrotech-elements 2023-10-19 16:03:22 +02:00
Laurent Trinques
8579e117ee
Update README.md 2023-10-19 10:02:30 +02:00
joshua
471f87690c Remove unused signal 2023-10-17 23:12:05 +02:00
joshua
27dcd5ef00 Improve last commit
Remove setter function : void BorderTitleBlock::setTitle(const QString
&title)
Remove singal diagramTitleChanged from BorderTitleBlock and use instead
the signal informationChanged.
2023-10-17 22:46:04 +02:00
joshua
75746be0d8 remove unnecessary setters 2023-10-17 22:13:30 +02:00
joshua
8955ca2c82 Improve commit 73c0848fcd 2023-10-17 21:50:37 +02:00
joshua
107c59d680 diagram.cpp : remove unused #include 2023-10-16 22:31:47 +02:00
joshua
73c0848fcd Fix : conductor don't display well user defined variable as conductor text
see : https://qelectrotech.org/forum/viewtopic.php?pid=18835#p18835
2023-10-16 22:24:18 +02:00
Laurent Trinques
4ce67bb532
Update packaging_script_Flatpak.sh 2023-10-16 18:04:17 +02:00
Laurent Trinques
b29c8b8a1d
Update packaging_script_Debian_Ubuntu_Windows.sh 2023-10-16 18:03:47 +02:00
Laurent Trinques
da82fff011
Update packaging_script_AppImage.sh 2023-10-16 18:03:19 +02:00
Laurent Trinques
6224c1160e
Update MacQetDeploy_arm64.sh 2023-10-16 18:02:54 +02:00
Laurent Trinques
5955ff3d83
Update MacQetDeploy.sh 2023-10-16 17:57:38 +02:00
Laurent Trinques
5856d3e22a
Update MacQetDeploy_arm64.sh 2023-10-16 17:33:38 +02:00
Laurent Trinques
1eca1f7d74
Update MacQetDeploy.sh 2023-10-16 17:32:58 +02:00
Laurent Trinques
809575e2b4
Update packaging_script_Debian_Ubuntu_Windows.sh 2023-10-16 17:30:43 +02:00
Laurent Trinques
c43a40a455
Update packaging_script_AppImage.sh 2023-10-16 17:29:45 +02:00
Laurent Trinques
9c68414165 Fix FTBFS 2023-10-16 17:17:48 +02:00
Laurent Trinques
be94f39087 Fix FTBFS 2023-10-16 17:03:00 +02:00
Laurent Trinques
eb2e45a66d Init submodule's
using git submodule instead of copy paste code from other repos
start pugixml form https://github.com/zeux/pugixml.git
start SingleApplication from https://github.com/itay-grudev/SingleApplication.git
2023-10-16 16:48:04 +02:00
Laurent Trinques
9840c18ed1
Update ELEMENTS.LICENSE 2023-10-16 16:12:37 +02:00
Laurent Trinques
b5a6c9d189
Update ELEMENTS.LICENSE 2023-10-16 16:11:43 +02:00
Laurent Trinques
3febbcfd8c
Update LICENSE 2023-10-16 16:10:56 +02:00
Laurent Trinques
8f3d031383
Update README.md 2023-10-16 16:08:55 +02:00
Laurent Trinques
251f5aee5c
Update org.qelectrotech.QElectroTech.json 2023-10-16 09:32:10 +02:00
Laurent Trinques
92e2f18d3c
Update org.qelectrotech.QElectroTech.json 2023-10-16 09:12:48 +02:00
Laurent Trinques
9d2088c5e5 Update SingleApplication to v3.5.1 version 2023-10-15 14:47:30 +02:00
Laurent Trinques
c8ad8f2ba4 Update pugixml to 1.14 version 2023-10-15 14:44:08 +02:00
Laurent Trinques
7a222dc207
Update MacQetDeploy.sh 2023-10-13 19:33:18 +02:00
Laurent Trinques
233897550b
Update MacQetDeploy_arm64.sh 2023-10-13 19:26:57 +02:00
Laurent Trinques
60833cb0d6
Update MacQetDeploy_arm64.sh
Typo
2023-10-13 19:25:32 +02:00
Laurent Trinques
6803ac42be
Update MacQetDeploy_arm64.sh
Force MacOSX12.3.sdk
2023-10-13 19:24:28 +02:00
Laurent Trinques
13b9ae55b9
Update MacQetDeploy_arm64.sh 2023-10-13 11:20:17 +02:00
Laurent Trinques
71db1a1db5
Update MacQetDeploy.sh 2023-10-13 11:16:42 +02:00
Laurent Trinques
905a2aa570
Update MacQetDeploy.sh 2023-10-13 10:48:42 +02:00
Laurent Trinques
976877a59e
Merge pull request #268 from Murmele/TooManyParts
Too many parts
2023-10-13 09:39:24 +02:00
Laurent Trinques
4d5a235887
Update snapcraft.yaml 2023-10-13 09:13:47 +02:00
Martin Marmsoler
8bc4053d35 fix compilation 2023-10-12 21:37:04 +02:00
Martin Marmsoler
e51ddbaa42 Give the user a possibility to set the maximum number of parts during import on an dxf file. Because sometimes the dxf file can contain more than 200 elements and the user is deleting some elements afterwards 2023-10-12 20:46:09 +02:00
Laurent Trinques
0cfde21758
Update MacQetDeploy.sh 2023-10-12 12:52:50 +02:00
Laurent Trinques
52ced12ab1
Update MacQetDeploy_arm64.sh 2023-10-12 12:49:08 +02:00
Laurent Trinques
dbe8f503dd
Update packaging_script_Debian_Ubuntu_Windows.sh 2023-10-12 12:46:14 +02:00
Laurent Trinques
1f8c34491e
Update packaging_script_Flatpak.sh 2023-10-12 12:43:50 +02:00
Laurent Trinques
0780f6627f
Update Info.plist 2023-10-01 06:45:31 +02:00
Laurent Trinques
f161fecb02
Update Info.plist 2023-09-30 15:23:46 +02:00
Laurent Trinques
05b8392812
Fix chinese unicode character map, thanks Eric 2023-09-27 09:52:53 +02:00
Laurent Trinques
6be82ed4e9 Update en & fr translation 2023-09-26 14:16:29 +02:00
Laurent Trinques
bcbfdf10ae Update *TS files 2023-09-26 13:58:47 +02:00
Laurent Trinques
7543cc4122 Updated Czech translation of GUI, thanks Pavel 2023-09-26 08:35:37 +02:00
Laurent Trinques
e7ad6c4f3d
Update README.md 2023-09-20 20:30:41 +02:00
Laurent Trinques
52a314b116
Update README.md 2023-09-20 20:29:13 +02:00
Laurent Trinques
0f1b1c9b5e
Update Doxyfile 2023-09-20 19:30:14 +02:00
Laurent Trinques
103ad993c0
Merge pull request #267 from qelectrotech/terminal_strip
Merge Terminal strip to master
2023-09-20 08:29:23 +02:00
joshua
258bfd7957 terminal strip Layout editor add help preview button 2023-09-20 08:25:58 +02:00
joshua
b422d9c6c5 Demo terminal strip : add 4 level terminal strip 2023-09-20 08:24:12 +02:00
Laurent Trinques
d508ecb26b
Update README.md 2023-09-19 22:10:52 +02:00
Laurent Trinques
fbe07c129f
Update README.md 2023-09-19 22:07:39 +02:00
Laurent Trinques
0a7964209a
Merge pull request #266 from qelectrotech/terminal_strip
Terminal strip
2023-09-19 15:30:06 +02:00
joshua
12b7c7c47c Terminal strip layout editor : add preview of terminal strip layout 2023-09-19 15:23:29 +02:00
Laurent Trinques
6811388fc2
Update README.md 2023-09-13 14:08:23 +02:00
Laurent Trinques
a53b1b0462
Update README.md 2023-09-13 14:07:43 +02:00
Laurent Trinques
0b5237e90d
Update README.md 2023-09-13 14:06:26 +02:00
Laurent Trinques
c6bb1ae4ad
Update README.md 2023-09-13 14:04:17 +02:00
Laurent Trinques
7829669b07
Update snapcraft.yaml
change Environment variables 
SNAPCRAFT_*→ CRAFT_*
2023-09-06 18:35:42 +02:00
Laurent Trinques
02d31874ae
Update snapcraft.yaml 2023-09-06 17:49:52 +02:00
Laurent Trinques
525ce6124d
Update snapcraft.yaml
replace 'snapcraftctl' with 'craftctl' to 
migrate from core20 to core22
2023-09-06 17:34:07 +02:00
Laurent Trinques
f2ef554290
Update snapcraft.yaml
change to kf5-5-108-qt-5-15-10-core22-sdk
2023-09-06 16:28:57 +02:00
Laurent Trinques
92604d5d65
Update publish-edge-snap.yml 2023-09-06 12:46:24 +02:00
Laurent Trinques
e2f5b007a9
Update publish-edge-snap.yml 2023-09-06 12:26:29 +02:00
Laurent Trinques
16afd275d7
Update publish-edge-snap.yml 2023-09-06 09:34:50 +02:00
Laurent Trinques
1d159f8772
Update publish-edge-snap.yml 2023-09-05 17:23:50 +02:00
Laurent Trinques
f25e72c069
Update publish-edge-snap.yml 2023-09-05 17:20:56 +02:00
Laurent Trinques
c0f29bbfe5
Update publish-edge-snap.yml 2023-09-05 15:37:21 +02:00
Laurent Trinques
660707bf28
Update snapcraft.yaml 2023-09-05 15:06:47 +02:00
Laurent Trinques
6423dfe3cc
Update snapcraft.yaml 2023-09-05 14:43:11 +02:00
Laurent Trinques
1f75953648
Update snapcraft.yaml 2023-09-05 14:17:41 +02:00
Laurent Trinques
920274acc1
Update snapcraft.yaml 2023-09-05 14:15:44 +02:00
Laurent Trinques
9ba24337f9
Update snapcraft.yaml 2023-09-05 14:12:46 +02:00
Laurent Trinques
55297efab9
Update snapcraft.yaml 2023-09-05 14:10:08 +02:00
Laurent Trinques
fe6814c65f
Update snapcraft.yaml 2023-09-05 14:05:00 +02:00
Laurent Trinques
5289fc7527
Update snapcraft.yaml 2023-09-05 14:03:01 +02:00
Laurent Trinques
341bfa5d10
Update snapcraft.yaml 2023-09-05 13:38:13 +02:00
Laurent Trinques
8433fbeec2
Update snapcraft.yaml 2023-09-05 13:30:07 +02:00
Laurent Trinques
219d17840b
Update snapcraft.yaml 2023-09-05 12:59:02 +02:00
Laurent Trinques
2154461b1d
Update snapcraft.yaml 2023-09-05 11:53:55 +02:00
Laurent Trinques
e8c876c88e
Update snapcraft.yaml 2023-09-05 10:51:50 +02:00
Laurent Trinques
e6abff81bb
Update snapcraft.yaml 2023-09-05 10:34:04 +02:00
Laurent Trinques
6ec41f7ceb
Update snapcraft.yaml 2023-09-05 10:27:43 +02:00
Laurent Trinques
4b28b1b38a
Update publish-edge-snap.yml
Try to fix Error: The process '/usr/bin/sg' failed with exit code 2
2023-09-05 10:07:33 +02:00
Laurent Trinques
18301b6ce4
Merge pull request #264 from kamikazzyyyy/new-elements
Added new symbols
2023-09-05 09:48:15 +02:00
Baptiste HADJAB
6920b2febd Added new symbols
New symbols:
phoenix_contact
johnson_controls
sofrel
2023-09-05 08:59:34 +02:00
Laurent Trinques
0e233d6783 Update chine data QChar 2023-08-28 06:15:57 +02:00
Laurent Trinques
888c25ec02 Add Chinese switch 2023-08-27 12:36:08 +02:00
Laurent Trinques
b9cd8288fc Update Chinese translation, thanks Eric Wang 2023-08-23 10:04:20 +02:00
joshua
8ca1e0487e Add demo terminal strip class
Not available for user now.
2023-06-28 21:56:03 +02:00
plc-user
171ee5d2ae fixed and scaled Siemens front-views 2023-06-19 06:08:19 +02:00
plc-user
cafa58df73 fixed and scaled MDT front-views 2023-06-19 06:08:19 +02:00
plc-user
137d02ae43 scaled General Electric front-views 2023-06-19 06:08:19 +02:00
plc-user
856172db91 scaled and corrected Hager front-views 2023-06-19 06:08:19 +02:00
plc-user
02ad9349a7 scaled ABB front-views 2023-06-19 06:08:19 +02:00
plc-user
5240b30f81 re-sorted elements 2023-06-19 06:08:19 +02:00
plc-user
668a9848e8 re-sorted elements 2023-06-19 06:08:19 +02:00
plc-user
eb4dc48563 removed empty folder 2023-06-19 06:08:19 +02:00
Laurent Trinques
8241041c1a Add new example project 2023-06-19 06:06:11 +02:00
plc-user
c5ffff76ee removed empty directories 2023-06-14 09:07:57 +02:00
plc-user
411d8d73f7 fixed some terminal-positions to whole numbers (many left\!) 2023-06-14 09:07:57 +02:00
plc-user
7a3989e065 corrections, new terminals and new sub-dir "discontinued" 2023-06-13 09:00:13 +02:00
Laurent Trinques
08e8409ce0 Add qet_it.qm 2023-05-22 05:45:40 +02:00
clabacchio
753abff183 Fixed some italian translations 2023-05-22 05:44:38 +02:00
joshua
48f9ef7632 Add AbstractTerminalStrip class to be used by TerminalStripDrawer class 2023-05-15 22:22:12 +02:00
Laurent Trinques
4e6ea06d0d Resore qetshapeitem::polygon contextMenuEvent
reverted by commit: 0a8376c189b4deff24d26dd26ddb3ceb1c9c8a4c
see:
https://qelectrotech.org/bugtracker/view.php?id=220
and
https://qelectrotech.org/forum/viewtopic.php?pid=18204#p18204
2023-05-13 18:12:28 +02:00
Laurent Trinques
1748280b80 Try to fix Github action to build snap 2023-05-10 16:54:02 +02:00
Laurent Trinques
2a1d3ae1f1 Try to fix Github action to build snap 2023-05-10 10:20:38 +02:00
Laurent Trinques
3cd124f348 Node.js 12 actions are deprecated. update the following actions to use Node.js 16 2023-05-10 10:09:59 +02:00
Laurent Trinques
1cc6a42fd8 Add new weidmuller elements, thanks KevinarCZ 2023-05-09 09:26:19 +02:00
Laurent Trinques
de89997c4e Improve changeover contact view in list mode 2023-04-28 16:43:14 +02:00
Laurent Trinques
c989437982 Add new GCE elements 2023-04-25 10:55:19 +02:00
joshua
247b98da41 Fix minor bug : conductor text is not updated when folio id is used
See https://qelectrotech.org/forum/viewtopic.php?pid=18157#p18157
2023-04-17 22:09:18 +02:00
Laurent Trinques
31b648c2a0 MacQetDeploy_arm64.sh script add staple to the app 2023-04-11 16:59:41 +02:00
Laurent Trinques
a7590558b9 Add new arduino sensors, thanks KevinarCZ 2023-04-02 14:19:32 +02:00
Laurent
5cbb444c0a macOS fix: add Move diagram item with the keyboard arrow 2023-03-29 13:10:50 +02:00
Laurent
6919369a92 MacQetDeploy_arm64.sh add Enable hardened runtime flag to fix notarization
Add process to Upload a macOS app to be notarized and validate before upload to QET download servers
2023-03-21 14:18:33 +01:00
Laurent Trinques
6d178b324c MacQetDeploy_arm64.sh add examples in bundle 2023-03-20 14:54:15 +01:00
laurent
ea08c588db Add new MacOS arm64 build script 2023-03-20 13:37:03 +01:00
joshua
752fe032e7 Draw strong line for better sepration between terminal 2023-03-19 19:19:53 +01:00
Laurent Trinques
9e04432597 Minor 2023-03-14 10:44:07 +01:00
Laurent Trinques
a67add6c0c Add new arduino sensors, thanks KevinarCZ 2023-03-14 10:37:18 +01:00
plc-user
a6be1c8004 translations and corrected elements 2023-03-12 16:28:20 +01:00
plc-user
3f550cbbb6 translations and corrected elements 2023-03-12 16:28:20 +01:00
plc-user
9d88abeac2 translations and corrected elements 2023-03-12 16:28:19 +01:00
plc-user
c60f04da2f corrected filename and translations 2023-03-12 16:28:19 +01:00
plc-user
1d1776441d German translations and corrected directory-name 2023-03-12 16:28:19 +01:00
plc-user
fec9def35b some German translations and Element-Corrections 2023-03-12 13:42:18 +01:00
joshua
45b8cb34f3 Fix minor gui wrong behavior 2023-03-10 20:19:12 +01:00
THGSCST
0edc3a083f PT-BR Language small fixes 2023-03-03 06:47:46 +01:00
THGSCST
b0324c6654 PT-BR Titleblocks
Added pt_br attribute to titleblocks templates
2023-03-03 06:47:46 +01:00
THGSCST
55263b5b8d PT-BR Language update
Correction of spelling errors, inclusion of missing texts and adequacy of Brazilian technical terms.
2023-03-03 06:47:46 +01:00
joshua
03094e1328 Fix wrong display in widget used to link folio report 2023-03-01 19:33:26 +01:00
Laurent Trinques
32e9ee9f36 Try to fix FTBS on not c++17 system 2023-02-27 10:42:13 +01:00
Laurent Trinques
047462f226 Fix macOS Deprecated synonym for Q_OS_DARWIN 2023-02-25 14:28:02 +01:00
joshua
ec3ac92b5e Fix minor bug
When two shapes item have line and filling color and the dock widget
used for edit the current selection is visible, switching selection
between the two shapes, the last selected shape filling color change
and become the filling color of the previous shape.
2023-02-24 19:08:10 +01:00
Laurent Trinques
78644a3524 macOS update python PATH to launch qet_tb_generator to python 3.11 2023-02-22 15:40:38 +01:00
joshua
470e4a059b Add widget to edit terminal strip item layout
The widget is available in the project properties editor.
WIP
2023-02-21 21:44:28 +01:00
Laurent Trinques
c53f5fbc66 Add save as shortcut in qetdiagrameditor 2023-02-16 06:10:17 +01:00
Laurent Trinques
8857b1c731 Update hungarian translation, thanks Gabor 2023-02-12 22:25:00 +01:00
Paweł Śmiech
25e93bde56 Update polish translation 2023-02-06 16:42:56 +01:00
Laurent Trinques
6e60842d69 Improve numbering of the elements symbols for pneumatic, thanks Vbxler 2023-02-05 20:27:46 +01:00
Laurent Trinques
3d3ebc99fd Update * TS files, only add simplified Chinese code is zh-cn 2023-02-02 06:34:29 +01:00
joshua
ec5cda10db Minor : improve first and last segment position of conducteur 2023-01-31 23:13:05 +01:00
dlee99
8298f56b7e modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2023-01-30 22:30:58 +01:00
Laurent Trinques
08b0bde0d7 Add Siemens 6es5090-8ma01.elmt, thanks LievenC 2023-01-30 13:57:51 +01:00
Laurent Trinques
7023b7033f Improve 20 logic elements, thanks Vbxier 2023-01-28 14:38:41 +01:00
joshua
092b18cefd Fix wrong calculation of the bounding rect of an arc 2023-01-27 19:39:53 +01:00
Laurent Trinques
45e3e92022 Update translations binary files 2023-01-25 15:43:07 +01:00
Laurent Trinques
bfa349406d Refresh packaging_script_AppImage.sh scripts 2023-01-25 13:31:42 +01:00
Laurent Trinques
921f9109f8 Refresh packaging_script_Flatpak.sh 2023-01-25 12:57:12 +01:00
Laurent Trinques
7db9430b3c Refresh MacQetDeploy.sh scripts 2023-01-25 12:27:25 +01:00
Laurent Trinques
ede9e7f063 Minor clean in packaging_script_Debian_Ubuntu_Windows.sh scripts 2023-01-25 12:03:12 +01:00
Laurent Trinques
0f06f90516 Refresh packaging_script_Debian_Ubuntu_Windows.sh example scripts 2023-01-25 11:56:50 +01:00
dlee99
e18c7117c5 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2023-01-24 22:53:18 +01:00
Laurent Trinques
845bd38d88 Refresh splash image size 2023-01-24 17:59:47 +01:00
Laurent Trinques
c287182d4b MacQetDeploy.sh change the method for version package naming 2023-01-24 17:38:07 +01:00
Laurent Trinques
ae493f16c6 Update splash image 2023-01-24 07:28:32 +01:00
Remi Collet
880bd8f7bd Only display git revision when available 2023-01-23 16:39:03 +01:00
plc-user
15282292c9 fixed hotspots and decimals of logic-elements 2023-01-22 05:24:06 +01:00
plc-user
9a80760c71 fixed typo again 2023-01-22 05:24:06 +01:00
plc-user
a833da45b5 simplified element / corrected terminal-positions 2023-01-22 05:24:06 +01:00
plc-user
14d7ceca1a added some German phrases 2023-01-22 05:24:06 +01:00
plc-user
c03a079b89 added German part to "INSTALL" 2023-01-22 05:24:06 +01:00
plc-user
4870b070f6 added German part to Elements-Licence 2023-01-22 05:24:06 +01:00
plc-user
1671b4ca58 corrected line-numbers to original 2023-01-22 05:24:06 +01:00
plc-user
d45b84d242 some translations and whitespace-fixing 2023-01-22 05:24:06 +01:00
Laurent Trinques
be43afaf78 Update *TS file 2023-01-21 17:15:42 +01:00
Laurent Trinques
77920280c7 Add Git Revision in aboutqetdialog 2023-01-21 14:46:34 +01:00
joshua
a0970b37b9 Improve and simplify the use of versions 2023-01-19 20:18:21 +01:00
plc-user
ad4e263198 German translations (including binary file) 2023-01-14 17:48:53 +01:00
plc-user
3f27b0d007 some more German translations
left some "unfinished": maybe we'll find even better translations in the future
2023-01-14 11:18:29 +01:00
plc-user
6bbf9d30b2 small modifications and translations 2023-01-14 11:18:29 +01:00
dlee99
86487b392b modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2023-01-13 23:50:12 +01:00
Laurent Trinques
cfc5bbc6bb Force Plc-user patch 2023-01-13 18:28:58 +01:00
plc-user
53eaa2a81d more German translations 2023-01-13 18:25:34 +01:00
plc-user
9f1164a174 some German translations 2023-01-13 18:25:34 +01:00
Remi Collet
fece536b55 avoid false warning for project created by qet >= 0.100 2023-01-13 13:42:50 +01:00
Laurent Trinques
51a4cd3982 Update *TS files 2023-01-13 10:56:58 +01:00
Laurent Trinques
9f7754c3bc Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2023-01-13 10:48:24 +01:00
Laurent Trinques
28878ed53c Fix previous translations 2023-01-13 10:47:52 +01:00
Laurent Trinques
43cd9f98cb Update *TS files and add EN + FR translations 2023-01-13 09:44:31 +01:00
Laurent Trinques
289175b775 Minor 2023-01-13 09:32:05 +01:00
Laurent Trinques
45ec061cf1 Improves the warning message box when the version of the project to load
differs from the version used.
Added information about the version of the launched project and the
version currently in use.
2023-01-13 09:28:05 +01:00
Remi Collet
1be93fa581 fix comment 2023-01-12 18:24:58 +01:00
Remi Collet
812a262b63 move decl close to usage 2023-01-12 18:24:58 +01:00
Remi Collet
038d2d7033 use QVersionNumber and switch to "list of int" standard 2023-01-12 18:24:58 +01:00
Remi Collet
19d867f6a4 fix segfault on load cancelled 2023-01-12 16:56:02 +01:00
Laurent Trinques
2180805637 Update README.md 2023-01-09 12:32:32 +01:00
joshua
d3223c8ca4 Merge branch 'master' into terminal_strip
* master:
  Fix crash
  Change displayed version on master
  avoid WARNING: mime_xml.path is not defined
  Update changelog
2023-01-08 16:30:59 +01:00
joshua
b1f6b1823a Fix crash 2023-01-08 16:20:13 +01:00
Laurent Trinques
1e2bdc203b Change displayed version on master 2023-01-06 15:28:32 +01:00
Remi Collet
f75f6d3f3f avoid WARNING: mime_xml.path is not defined 2023-01-06 14:07:35 +01:00
joshua
f07e4319d3 Fix ftbfs 2023-01-05 19:20:41 +01:00
Laurent Trinques
d5f0a7932a Update changelog 2023-01-05 10:17:25 +01:00
joshua
4da7f6cd13 TerminalStripLayoutPattern is now shared
TerminalStripLayoutPattern class is now a shared pointer between all
terminal strip item.
QETProject have now a new class : ProjectPropertiesHandler
the goal of this class is to manage every kind of properties used in the
project, this class will be strongly used in future.
2023-01-04 22:40:18 +01:00
joshua
c6739b5bec Fix ftbfs on macOS 2023-01-03 22:30:13 +01:00
Laurent Trinques
cc7e185d59 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2023-01-03 01:47:09 +01:00
Laurent Trinques
60ceab8a32 Add unicode HEX codes from a string in Ukranian: "Імпортовані
елементи"
Refresh namesListForIntegrationCategory
2023-01-02 20:13:42 +01:00
joshua
539e0a7a49 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
2023-01-02 19:40:08 +01:00
Laurent Trinques
9afef79629 Update Copyright date 2023-01-01 17:05:57 +01:00
Laurent Trinques
62fcdec958 Add Qubino elements, thanks KevinarCZ 2022-12-30 12:23:42 +01:00
Laurent Trinques
2ace2ca104 macOS restore sqlite3 database export 2022-12-30 07:20:50 +01:00
Laurent Trinques
b0c3c90f3c Try to fix sqlite3 database export on macOS
Now I use macports with Digikam scripts
See:
https://invent.kde.org/graphics/digikam/-/tree/master/project/bundles/macports
2022-12-30 07:12:02 +01:00
Laurent Trinques
8c35559480 Update *TS files 2022-12-27 17:40:34 +01:00
Laurent Trinques
66614072a6 Typo 2022-12-27 17:36:59 +01:00
Laurent Trinques
bd4c7cf2ff Update *TS files 2022-12-26 11:56:18 +01:00
Laurent Trinques
4a568c4e89 Typo 2022-12-26 11:47:55 +01:00
Laurent Trinques
caf5dc5dd4 Add new Annex Projects 2022-12-26 11:36:44 +01:00
Laurent Trinques
eeadbde8d2 Add new Translators in aboutqetdialog.cpp 2022-12-26 09:06:16 +01:00
artgg7300
85892b1c54 the new Hungarian lang files 2022-12-25 11:30:03 +01:00
joshua
f54bea713e Terminal strip item can saved / loaded to .qet file 2022-12-21 19:18:49 +01:00
Laurent Trinques
949db14699 Update *TS files 2022-12-21 14:21:04 +01:00
Laurent Trinques
0753bac62f Add Ukrainian switch language 2022-12-19 13:04:19 +01:00
Laurent Trinques
808598f759 Update Ukrainian translation, thanks Yaroslav 2022-12-19 06:09:14 +01:00
plc-user
7377cf394c simplify graphics, add terminal-names 2022-12-16 08:27:44 +01:00
plc-user
555c243905 add Controller 2022-12-16 08:27:44 +01:00
dlee99
7b6f357870 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-12-14 22:34:39 +01:00
Laurent Trinques
b9f28c1567 Update *TS files 2022-12-14 19:06:07 +01:00
luz paz
6a4b250213 Fix source typo 'Hidding' 2022-12-07 12:10:34 +01:00
luz paz
4caf5e0211 Fix source typo 'cross_min_heigth' 2022-12-07 12:10:34 +01:00
luz paz
8242e4cfd7 Fix source typo 'minimumRowHeigth' 2022-12-07 12:10:34 +01:00
luz paz
a1f9d05f1c Fix source typo 'Rigth' 2022-12-07 12:10:34 +01:00
luz paz
2032ba76ed Fix various typos in source documentation and comments (cont.)
Found via `codespell`
2022-12-06 07:56:45 +01:00
luz paz
1994235bc5 Fix various typos in source documentation and comments (cont.)
Found via `codespell`
2022-12-04 20:46:32 +01:00
luz paz
a76e5446aa Fix various typos in source documentation and comments
Found via `codespell`
2022-12-04 13:30:01 +01:00
joshua
f41b5a4ed4 See previous commit...
Je suis une tête de linotte
2022-12-02 19:39:56 +01:00
joshua
1f99a40f1b Move terminal strip drawer class in is own file 2022-12-02 19:35:17 +01:00
joshua
d23a5bbdc7 Fix wrong use of QStringLiteral and QLatin1String 2022-12-02 18:26:56 +01:00
joshua
81640015e5 Double click a TerminalStripItem open the editor 2022-12-02 18:12:47 +01:00
aitolos
1eed13c617 Greek Lang update 2022-11-30 19:58:01 +02:00
aitolos
6869d20813 Greek Language Update 2022-11-29 20:46:19 +02:00
Ole Carlsen
c17492183f Danish translation updated 2022-11-24 17:54:18 +01:00
joshua
e3d1467352 Remove minimum height of project properties dialog 2022-11-23 21:58:08 +01:00
dlee99
b626130071 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-11-18 20:20:59 +01:00
Laurent Trinques
7f4bad712e In ISO 639-1, the Ukrainian language is "UK".
"UA" is the country code in ISO 3166-1.
2022-11-18 09:05:50 +01:00
joshua
300440454e Fix crash introduced in commit 5a057b1c2090cdb0ccd74fcb16705580fd9dfda1 2022-11-16 19:06:56 +01:00
Laurent Trinques
05416a5fdc Add TS file for Ukrainian language 2022-11-16 08:26:35 +01:00
Laurent Trinques
d6bcde5f8d Update pugixml to version 1.13 2022-11-15 18:22:00 +01:00
joshua
e1cb55f218 Better use of QObject inheritence 2022-11-14 22:42:27 +01:00
joshua
a18cd2461f Minor change about checkable QAction of QetDiagramEditor 2022-11-14 21:51:14 +01:00
joshua
aca3b8ad1e Minor : corrects a minor aesthetic defect when unbridge terminals 2022-11-14 21:10:38 +01:00
joshua
937afea351 Minor : check if pointer is valid 2022-11-14 20:45:16 +01:00
Laurent Trinques
3341d65a89 Workaround to fix crash when moving element by arrows keys
@driver_item item moved by mouse and don't be moved by Element mover
Disable position x, y in statusBar when moving elements by arrows keys
2022-11-12 12:14:27 +01:00
Laurent Trinques
c397bb6c1d Update translations *TS files 2022-11-11 13:06:25 +01:00
Laurent Trinques
2f72c60f64 Add shorcut for moving up/down folio by 10
add new entries for moving up/down folio by 100 and shorcut
2022-11-11 12:56:22 +01:00
joshua
9e1ef8c42f Revamp code
-Move MoveElementsCommand class from diagramcommands file to
movegraphicsitemcommand file.
-Rename the to class MoveGraphicsItemCommand.
-Minor code change to make it more modern.
2022-11-08 22:06:50 +01:00
joshua
7fede2277f Add and move terminal strip item are now managed by undo command 2022-11-08 19:20:32 +01:00
joshua
5a057b1c20 Minor
More modern c++
2022-11-08 18:17:55 +01:00
joshua
57929e6e38 Minor.
ElementsMover class :
Rename some member variable and add some indentation.
2022-11-05 13:36:46 +01:00
joshua
ae8c20bb04 Minor 2022-11-05 13:28:39 +01:00
Laurent Trinques
ad97559b7c Try to fix FTBFS on Debian Bullseye 2022-11-04 21:34:24 +01:00
Laurent Trinques
e3cc89b546 Try to fix FTBFS on Debian Bullseye 2022-11-04 21:26:08 +01:00
Laurent Trinques
0f215c2902 Try to fix FTBFS on Debian Bullseye 2022-11-04 21:12:19 +01:00
joshua
0ae0ce04cd Show x:y pos when drag element in the status bar 2022-11-04 20:25:49 +01:00
plc-user
850cc5d0f2 added some (non-electric) accessories 2022-11-01 22:57:24 +01:00
plc-user
914ae348c6 added PoE-Injectors 2022-11-01 22:57:24 +01:00
plc-user
bb47a1852e added Weidmüller-Couplers 2022-11-01 22:57:24 +01:00
plc-user
28329c3f1b simplify some Hager-Thumbnails 2022-11-01 22:57:24 +01:00
joshua
21de926367 TerminalStripItem : Draw terminal bridge 2022-10-23 19:30:58 +02:00
OlesyaGerasimenko
71297a0e45 Update Russian translation 2022-10-21 05:35:24 +02:00
plc-user
0e0b680131 added RCBO 1P+N (thanks Vbxler) and Hager-RCBO 2022-10-20 05:30:36 +02:00
plc-user
554dc388a6 new PLC-controllers 2022-10-19 09:23:31 +02:00
plc-user
33c22c72f8 fix graphic-errors and descriptions 2022-10-19 09:23:31 +02:00
plc-user
d4658e64b1 fix formatting and number of decimals 2022-10-18 08:41:05 +02:00
plc-user
9633c32c2c some new elements 2022-10-18 08:41:04 +02:00
Laurent Trinques
6f52be4145 Addd new contrôleurs TM262 of schneider, thanks Galexis 2022-10-14 11:52:15 +02:00
joshua
e26efb6c3a Fix wrong size of new element wizard on windows
See https://qelectrotech.org/bugtracker/view.php?id=264
2022-10-12 21:54:44 +02:00
Laurent Trinques
04f2094466 little modify at hungarian lang file -> publish binary update 2022-10-01 18:04:36 +02:00
plc-user
346900ecbd fix elements that could not be loaded 2022-10-01 06:33:16 +02:00
artgg7300
d80669c253 add new sew movimot mm...d drive element 2022-09-30 13:09:16 +02:00
artgg7300
922f96d79c little modify at hungarian lang file 2022-09-29 12:12:45 +02:00
joshua
0d90defcfe Remove unused include 2022-09-28 21:54:02 +02:00
joshua
ea1ede9cb3 Remove unnecessary assert
Just call :
void DynamicTextFieldEditor::disconnectConnections()
instead of use an assert if there is an active connection.
2022-09-28 21:53:30 +02:00
joshua
ffc2a7a7d7 Fix warning 2022-09-26 21:48:08 +02:00
joshua
3e75bedef0 Fix crash
https://qelectrotech.org/forum/viewtopic.php?pid=16647#p16647
2022-09-26 21:40:47 +02:00
artgg7300
05bd6b43f2 add new Allen Bradley element 2022-09-20 06:15:12 +02:00
artgg7300
718a6a6872 add new Allen Bradley element 2022-09-20 06:12:21 +02:00
artgg7300
42746aa710 delete duplicated Allen Bradley element 2022-09-19 06:25:06 +02:00
artgg7300
662ec3496b delete old Allen Bradley element 2022-09-19 06:18:25 +02:00
artgg7300
cec479aefb add new Allen Bradley element 2022-09-19 06:10:08 +02:00
artgg7300
43821bea0f add new Allen Bradley element 2022-09-19 05:59:57 +02:00
joshua
ff80453f2c Terminal strip item can be added to diagram
Initial commit about graphics item of a terminal strip, Work in
progress.
2022-08-27 21:24:25 +02:00
artgg7300
8775d1e1bd add two new Allen Bradley elements 2022-08-18 12:13:31 +02:00
artgg7300
c6f45c5862 hungarian lang files 2022-08-18 11:59:53 +02:00
dlee99
d7e1813ff3 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-08-13 16:44:36 +02:00
joshua
d6e8a1c133 Element editor : improve deletion speed 2022-08-13 13:06:46 +02:00
joshua
eee1c7fff7 Element editor : Improve responsiveness when several shapes are selected. 2022-08-13 12:40:59 +02:00
David Varley
af5d5e0aa3 Allow for open polygons (ie polylines) when saving as dxf 2022-08-13 11:57:29 +10:00
Laurent Trinques
e9931511de Update EATOn elements, thanks dmsque 2022-08-09 02:32:23 +02:00
Laurent Trinques
acf1e713fc Fix position of label XREF in 'Other' option for slave device contact
type
2022-08-08 10:39:04 +02:00
Laurent Trinques
21524ee528 Add symbol and improve 'Other' option for slave device contact type. 2022-08-06 18:42:05 +02:00
Laurent Trinques
f0919d5fa6 Minor fix in ABB element directory 2022-08-04 09:14:35 +02:00
Laurent Trinques
695e4d95aa Refresh en translation 2022-08-04 09:05:32 +02:00
joshua
02769fe881 Improve opening time of dxf 2022-08-03 13:54:39 +02:00
joshua
e57ba72d7c Fix crash 2022-08-03 12:37:32 +02:00
Ole Carlsen
1b3599e673 Danish translation updated 2022-08-01 20:28:58 +02:00
Laurent Trinques
d0d6b299e4 update polish translation, thanks Paweł 2022-07-31 14:54:17 +02:00
Laurent Trinques
56b7458951 Workaround to fix launch dxf2elmt binary from QET element editor menu on macOS 2022-07-27 18:04:48 +02:00
joshua
74a187e659 Minor 2022-07-27 14:52:50 +02:00
joshua
8b62318588 Return an empty QByteArray if something goes wrong with dxf2elmt 2022-07-27 14:52:00 +02:00
joshua
31466a65ba Fix fail to build from sources
Fix ftbfs for :
ubuntu 18.04 bionic beaver
ubuntu 20.04 focal fossa
debian 11 bullseye
2022-07-27 14:15:32 +02:00
Laurent Trinques
a7160ba9b7 Fix dxf2Elmt Binary name on macOS 2022-07-26 20:18:54 +02:00
Laurent Trinques
cacbce6cec Update *TS file and FR & EN translation 2022-07-26 18:19:27 +02:00
joshua
6fd5209364 Merge branch 'dxf2elmt'
* dxf2elmt:
  Element editor : improve code
  Element editor : improve code
  Import dxf is managed by undo command
  Add import dxf feature
2022-07-26 17:04:22 +02:00
joshua
57695bbbea Element editor : improve code
Better use of signal partsAdded and partsRemoved
2022-07-26 17:03:18 +02:00
joshua
5a497cd6b5 Element editor : improve code
Better use of signal partsAdded and partsRemoved
2022-07-26 16:17:47 +02:00
joshua
cae7cbdbd8 Import dxf is managed by undo command 2022-07-24 20:58:00 +02:00
Laurent Trinques
b65ff83805 Update en translation 2022-07-24 18:17:26 +02:00
Laurent Trinques
c1f2b345e4 Update Fr translation 2022-07-24 16:50:50 +02:00
Peter Kessen
f9600f5dbb Fix german translations 2022-07-24 10:51:12 +02:00
joshua
6e81451b46 Add import dxf feature
Use dxf2elmt to import dxf.
See https://github.com/antonioaja/dxf2elmt
2022-07-23 21:54:23 +02:00
Laurent Trinques
2a7848e1ca Update *TS files 2022-07-21 19:17:09 +02:00
Lars Biskupek
c22abdd2f8 Update of German language files 2022-07-18 18:35:22 +02:00
Laurent Trinques
9e2d4abd01 Add Nidec Leroy-Somer Digitax HD M750 servo drive, thanks Matteo 2022-07-16 16:44:14 +02:00
Laurent Trinques
acd151c9ca Improve last commit 2022-07-16 13:36:05 +02:00
Laurent Trinques
ab724377c0 Fixed a bug with many slaves of type Other, whose XREFs overlap in list
mode
2022-07-16 12:58:35 +02:00
joshua
d9a0b03e23 Minor : add QGIUtility namespace 2022-07-15 20:48:06 +02:00
Laurent Trinques
4c5d27e9af Minor 2022-07-08 21:34:10 +02:00
Laurent Trinques
8af850df44 Add the architecture of the CPU that Qt was compiled for in widget aboutqetdialog and in the logs 2022-07-08 20:50:45 +02:00
Pino Toscano
8a1f509b62 flatpak: refresh 0001-build-Fix-the-installation-paths.patch
Needed after the recent build system changes to MIME-related paths.
2022-07-05 18:16:51 +02:00
Pino Toscano
cf479bc113 Drop old mimelnk MIME types
Those desktop MIME types were needed only with KDE up to 3.x, as it
used to have its own desktop-based MIME type system. KDE 3 is EOL for
many years now, and there are already XDG MIME types.
2022-07-05 18:16:51 +02:00
Pino Toscano
08e206deeb Drop XML files autogenerated from qelectrotech.xml
These files are the bare XML definitions, and they are automatically
generated by update-mime-database (part of shared-mime-info) on update
(e.g. by distro hooks) or manually. Keeping them in the sources, and
installing them, is definitely not correct, as qelectrotech.xml is
their canonical definition.

Hence, drop them from the sources, together with references to them.
2022-07-05 18:16:51 +02:00
joshua
ba1e8381f2 Merge branch 'terminal_strip'
* terminal_strip:
  Improve execution time of some actions.
  Minor : fix little gui defect
  Improve opening time of terminal strip editor window
  Display conductor number
2022-07-04 21:45:18 +02:00
Laurent Trinques
d082c9c9a6 Minor refresh element abe7-h16210-11.elmt 2022-07-04 10:24:07 +02:00
Laurent Trinques
84631b238c Add new symbol Telefast 2022-07-02 18:42:15 +02:00
artgg7300
aa50224b00 add new element AB 1734-ep24dc 2022-07-01 06:42:46 +02:00
Laurent Trinques
d44486f468 Add new eaton_moeller easy elements, thanks dmsque 2022-06-28 18:21:57 +02:00
joshua
2a307a74da Improve execution time of some actions.
Improve the execution time when we add, change or remove
several terminals to/from terminal strip.
2022-06-23 21:36:24 +02:00
Tadeáš Pilař
1a2fea84ff Add 'Other' option for slave device contact type
This option alows for displaying XRef without contact drawing.
This is useful for spliting one physical part into multiple
logical elements when the slave element is not a switch.
2022-06-23 05:41:33 +02:00
Laurent Trinques
f603b229db Add new ABB drives, thanks dmsque 2022-06-23 05:34:08 +02:00
joshua
fa753449ad Minor : fix little gui defect
At opening of terminal strip editor window, click on free terminal
in the tree dock don't show up the free terminal table.
2022-06-22 18:56:22 +02:00
joshua
fe19b270f9 Improve opening time of terminal strip editor window
Need serious refactoring of codes who use the method
Element::actualLabel() and also actualLabel itself.
This part of code is crappy.
2022-06-22 17:34:05 +02:00
Laurent Trinques
5c96c6d773 Add new Delta As_series elements, thanks dmsque 2022-06-18 04:05:19 +02:00
Maximilian Federle
637d0bf6de publish edge snap: Adapt to snapcraft 7 2022-06-15 16:32:43 +02:00
Laurent Trinques
d917c697b0 Add new symbols 2022-06-15 14:28:40 +02:00
Laurent Trinques
1be21782fd Add new symbols 2022-06-15 14:18:48 +02:00
joshua
2e15372aab Display conductor number 2022-06-14 19:30:45 +02:00
plc-user
5c6b9f1829 changed more elements to "thumbnails" 2022-06-14 14:13:15 +02:00
plc-user
9c55378f49 added some parts of series 2003 2022-06-14 14:13:15 +02:00
plc-user
e367436358 Bugfix for "Weidmüller"-Part 2022-06-14 14:13:15 +02:00
joshua
c9ebdace04 Update some code.
Update some part of class LinkSingleElementWidget with more modern
c++ and recent change of Qet.
2022-06-13 21:06:00 +02:00
joshua
3e6e38e566 Continue revamp of elementprovider 2022-06-13 20:46:22 +02:00
joshua
c83d4e5aea Refactoring.
Refactor elementProvider class  : Use the ElementData::Types instead of
deprecated Element::kind
2022-06-13 20:27:06 +02:00
Laurent Trinques
0e9d09c62e Minor revamp last commit: Add Shelly elments... 2022-06-12 10:35:10 +02:00
Laurent Trinques
fe66caf5ac Add Shelly elments, thanks TheKilroy with add these on
qelectrotech-element-contrib
2022-06-10 12:21:50 +02:00
plc-user
c58d61594b added some parts from manufacturer "Weidmüller" 2022-06-06 13:49:03 +02:00
plc-user
3cd3535c18 changed Front-Views to "thumbnails" and added some parts "2003" 2022-06-06 13:49:03 +02:00
joshua
97ecd26749 Use QLatin1String and QStringLiteral for better performance
In class ElementData.
2022-06-01 22:45:59 +02:00
joshua
2e70d2e599 Nomenclature now use properly the element type 'thumbnail'
Use function provided by ElementData to check element type and
master type instead of use plain text (code is more strong)
2022-06-01 22:29:12 +02:00
joshua
3dd0986c4f Fix some warning and write more modern c++ 2022-05-25 23:40:08 +02:00
joshua
899caeabe9 Fix wrong behavior when edit the element information
In the diagram editor, when we edit the element information in the side
panel, each time we tip something in the text field the cursor always go
to the end if the "label" information is empty.
2022-05-25 23:16:13 +02:00
joshua
a2b73ea2bc Definitely fix the rotation problem :)
Only use space for every rotation
2022-05-25 21:47:31 +02:00
Laurent Trinques
bf32219154 Fix previous workaround
Now the shortcut for the rotate action is key_space and use key_R to
rotate terminal on the fly before placing it in the drawing.
2022-05-25 17:39:49 +02:00
Laurent Trinques
6a669f1399 Fix previous workaround
Because strange behaviour with Qt::key_space if used for keyPressEvent
and also in shortcut.
Now the shortcut for the rotate action is ctrl + R and key_space to
rotate terminal on the fly before placing it in the drawing.
2022-05-25 13:47:22 +02:00
joshua
4ab1ed7fc9 Fix previous workaround
The rotate action shortcut was 'space' before this commit and so the
keyPressEvent with space key was never propagated because always grabbed
by the rotate action.
Now the shortcut for the rotate action is ctrl + space.
Note that even if rotate exist in element editor, this doesn't work well
because the rotation is not well managed by the save/load from elmt
file.
2022-05-22 21:05:54 +02:00
Laurent Trinques
89d03e5503 Element editor : Workaround for Qt::Key_Space event not working
Use of ALT key as a replacement to rotate terminal on the fly before
placing it in the drawing.
Fix bug #262
https://qelectrotech.org/bugtracker/view.php?id=262
2022-05-21 23:28:44 +02:00
Laurent Trinques
9a6e1d2a61 Editor commands: change the rotation with the space key on the keyboard
from 90° to 15° for more precision for part lines, polygons, texts, arcs
and circles.
2022-05-20 10:18:37 +02:00
Laurent Trinques
fad6983cf1 Element::Thumbnail fix for BOM pages 2022-05-16 09:30:32 +02:00
Laurent Trinques
daeec311b2 Element::Thumbnail WIP 2022-05-16 08:59:25 +02:00
Laurent Trinques
db8c76c184 Element::Thumbnail WIP 2022-05-15 14:29:01 +02:00
Laurent Trinques
2ec7e6aa45 In 99_assembly_plan directory change link_type="simple" by link_type="thumbnail" 2022-05-15 06:28:20 +02:00
joshua
021aea1d8b Add the new element type : thumbnail
This type must be used for element who goal is to display a
thumbnail/front view of an element, notably used for cabinet contents
view and placement.
2022-05-13 20:02:29 +02:00
Laurent Trinques
1f4dfdba3f Add QPrinter::HighResolution 2022-05-05 13:37:24 +02:00
joshua
f0694f0daf Merge branch 'terminal_strip'
* terminal_strip:
  Remove terminal strip widget
  Several terminals can be removed or moved from strip in one shot
2022-05-04 18:48:46 +02:00
joshua
baf412614c Remove terminal strip widget
Since this commit, the terminals can't be moved from the tree widget,
instead we need to use the "move in" widget to move one or several
selected terminals in the table view.
2022-05-04 18:38:45 +02:00
Laurent Trinques
e1865fec62 Update Ewon elements, thanks Vbxler 2022-04-28 13:31:31 +02:00
Laurent Trinques
1e255af3be Update SingleApplication and pugixml to latest upstream release 2022-04-27 13:52:41 +02:00
Laurent Trinques
1c99cb5c2d Add Qt::AA_UseHighDpiPixmaps 2022-04-27 09:14:13 +02:00
Laurent Trinques
4ca21a3bff Add new ewon elements, thanks Vbxler 2022-04-26 13:26:07 +02:00
Laurent Trinques
189d92f2a9 Minor 2022-04-26 08:15:20 +02:00
Laurent Trinques
34a7e0f3fe Minor : machineinfo change RAM informations MB to GB 2022-04-26 07:54:41 +02:00
joshua
17290ae3b3 Try to fix fail to build for old Qt version 2022-04-25 18:24:43 +02:00
Laurent Trinques
8b65d240db Add new example found on www 2022-04-23 13:37:36 +02:00
joshua
bce6a43427 Several terminals can be removed or moved from strip in one shot 2022-04-10 13:52:45 +02:00
joshua
1c52cd71a9 Merge branch 'terminal_strip'
* terminal_strip:
  Minor fix : wrong variable name
2022-04-09 16:35:02 +02:00
joshua
898edb6c12 Minor fix : wrong variable name 2022-04-09 16:34:30 +02:00
joshua
de3fa988b1 Fix some clazy warning 2022-04-09 13:07:47 +02:00
joshua
b42aec7bdf Minor
Block database signal when a project is currently being deleted.
Among other things, this avoid the multiple show of the dialog "table
limitation".
2022-04-09 12:46:07 +02:00
joshua
ea46a92f3f Merge branch 'terminal_strip'
* terminal_strip:
  Several real terminal can be added to terminal strip in one shot
  Minor : avoid unnecessary multiple function call
  The free terminal properties can be edited by batch.
  Change made inside the free terminal table can be applied
  Hide/show apply/reset buttons according to current displayed widget
  Edited data of terminal strip can be applied
  Change terminal strip editor class
  Add free terminal editor widget
  Add toolbar and buttons
  Start to move terminal strip editor from QDialog to QMainWindow
  Add table widget and item model for free terminal
  Revamp code
  Improve undo command when add/move/remove terminal in/from/to terminal strip
  Revamp code.
  Revamp code, make it more simple
  Remove the real terminal uuid, and use instead the uuid of the terminal element itself
  RealTerminal is created by the TerminalElement itself
  Change relationship betwen classes RealTerminal PhysicalTerminald and TerminalElement
  QTreeWidget "terminal explorer" : improve item text
  minor : remove unused code
2022-04-09 11:54:58 +02:00
joshua
6197d0215a Several real terminal can be added to terminal strip in one shot
User can select several real terminals in the free terminal editor
and add it with one operation on a terminal strip.
2022-04-08 20:48:32 +02:00
Laurent Trinques
6fd342e265 Fix typo 2022-04-07 17:01:23 +02:00
Laurent Trinques
395d968ab5 Minor 2022-04-07 16:48:37 +02:00
Laurent Trinques
e41b7f7d6c Machine_info add disk and partition informations 2022-04-07 16:33:20 +02:00
Laurent Trinques
fabf0109ff Remove element surpresseur_mono_hyd.elmt 2022-04-02 19:58:29 +02:00
Laurent Trinques
cabfdc0a54 Add reworked pneumatic symbols, thanks Vbxler 2022-04-02 19:52:17 +02:00
joshua
6f4122f65c Fix a funny bug
When we create a summary table and uncheck the option "adjust the size
of the table to the folio" an infinity of new diagram are added to the
project.
2022-04-01 20:41:07 +02:00
joshua
ce21a812c0 Fix bug 244
I was thinking that the commit 5a51f6bace3115bb597ba472eb8938566c9d0fcf
fix the bug 244, but not they only fix this bug :
https://qelectrotech.org/forum/viewtopic.php?pid=16022#p16022

This commit really fix the bug 244
2022-04-01 20:04:17 +02:00
joshua
5a51f6bace Fix crash
See bug N°244
https://qelectrotech.org/bugtracker/view.php?id=244
2022-03-31 19:05:45 +02:00
joshua
a38d97896d Minor : avoid unnecessary multiple function call
TerminalStripTreeDockWidget::on_m_tree_view_currentItemChanged
call setCurrentStrip only when current strip changed, and not every time
when user click in another item on the tree view.
2022-03-30 20:30:57 +02:00
joshua
c4b0c1435c The free terminal properties can be edited by batch. 2022-03-25 19:49:31 +01:00
joshua
a4445c411d Change made inside the free terminal table can be applied 2022-03-25 19:25:46 +01:00
joshua
e92bd36f9b Hide/show apply/reset buttons according to current displayed widget 2022-03-25 19:00:09 +01:00
Laurent Trinques
61ff8884e0 Minor 2022-03-24 06:25:28 +01:00
Laurent Trinques
b8af2e9d1d Minor : add informations in aboutqetdialog widget 2022-03-24 06:13:03 +01:00
joshua
8084fa8f29 Edited data of terminal strip can be applied 2022-03-23 21:18:22 +01:00
plc-user
1066e55262 rework and new elements (Hager) 2022-03-21 05:19:01 +01:00
joshua
edfb23be23 Change terminal strip editor class
Change parent class from QDialog to QWidget.
Terminal strip editor is now embedded in TerminalStripEditorWindow.
2022-03-20 18:25:25 +01:00
plc-user
516a1a7826 more cleanup, rework and new elements 2022-03-19 15:18:29 +01:00
plc-user
be1d87c5d4 cleanup, rework and new elements 2022-03-17 08:38:38 +01:00
joshua
b48ba939de Add free terminal editor widget 2022-03-16 22:44:08 +01:00
joshua
b1ad16d482 Add toolbar and buttons
Add 'add terminal strip' button.
Add 'remove terminal strip' button
Add 'reload' button
2022-03-16 18:58:36 +01:00
joshua
ceb54fbc6a Start to move terminal strip editor from QDialog to QMainWindow 2022-03-14 17:56:18 +01:00
plc-user
e42bcb5ec9 bugfix, rework and new elements 2022-03-12 22:01:25 +01:00
joshua
9cbc3a2265 Add table widget and item model for free terminal
WIP, the change made in the table widget can't be applied.
2022-03-12 19:07:49 +01:00
plc-user
e93990a6e4 rework of some Elements and some new Terminals 2022-02-26 15:50:07 +01:00
Laurent Trinques
bb1a0767a3 Change &amp; by undferscore in qet_labels.xml 2022-02-24 13:33:06 +01:00
Laurent Trinques
0b7afe4781 Flatpak & AppImage : restore Sqlite3 for database export 2022-02-21 13:45:55 +01:00
plc-user
9a3de1f780 rework of some Elements an some new ones 2022-02-21 13:36:09 +01:00
joshua
0ff099fb52 Revamp code
Change the way to know who is the physical terminal of a real terminal
when we got only the real terminal.
2022-02-20 13:13:29 +01:00
joshua
05a2e4b37b Improve undo command when add/move/remove terminal in/from/to terminal strip 2022-02-19 12:34:38 +01:00
Laurent Trinques
830a70ac94 Add Linux pc.gpu.RAM informations,
but need glxinfo dependency
2022-02-17 19:01:56 +01:00
Laurent Trinques
e63a8c8482 Minor 2022-02-16 13:57:04 +01:00
Laurent Trinques
855162bb03 Improve QElapsedTimer in seconds to compute time used for reload element collection 2022-02-16 12:34:04 +01:00
Ole Carlsen
d2c15cf57b Update Danish translation 2022-02-14 19:37:51 +01:00
artgg7300
02ce65b3a9 little mod on element 2022-02-14 05:20:11 +01:00
pavelfric
0bf1f89c13 Updated Czech translations of elements. 2022-02-13 11:28:37 +01:00
joshua
74c3ab1b82 Fix can't resize QetGraphicsTableItem
User can't grab the handler item.
2022-02-10 19:13:59 +01:00
joshua
062ae6e9eb Fix intensive call of updateUi when move a QetGraphicsTableItem 2022-02-10 19:11:06 +01:00
joshua
dcc5a4dd0b Revamp code.
Remove a QVector member variable and use instead a function who
return the same vector, but created on the fly
2022-02-09 19:15:45 +01:00
joshua
ba638f52e5 Revamp code, make it more simple 2022-02-09 18:57:27 +01:00
joshua
ffd904749e Remove the real terminal uuid, and use instead the uuid of the terminal element itself 2022-02-09 18:13:35 +01:00
joshua
c037d3ea0a RealTerminal is created by the TerminalElement itself 2022-02-09 18:08:20 +01:00
artgg7300
087c8980f0 little modif on element 2022-02-09 06:07:42 +01:00
joshua
70f50ff362 Change relationship betwen classes RealTerminal PhysicalTerminald and TerminalElement 2022-02-08 19:24:16 +01:00
artgg7300
904e805935 add new elements and remove a old 2022-02-08 06:27:36 +01:00
artgg7300
04d478882e add new element Dahlander motor 2022-02-06 17:34:01 +01:00
joshua
35cd790c8f Fix crash 2022-02-06 16:36:00 +01:00
joshua
1a26133a78 Add a QElapsedTimer to compute time used for reload element collection 2022-02-06 15:50:25 +01:00
joshua
a028b774bf QTreeWidget "terminal explorer" : improve item text
In the QTreeWidget "terminal explorer", when the physical terminal is
composed by several real terminal, the text of the QTreeWidgetItem
display the label of each real terminal.
2022-02-06 15:05:24 +01:00
Laurent Trinques
72b7bc210f Minor 2022-02-06 14:03:49 +01:00
Laurent Trinques
5fe2efca1a Minor 2022-02-05 15:36:44 +01:00
Laurent Trinques
3ce09775ac Minor 2022-02-05 13:12:11 +01:00
joshua
3a53c2d53b minor : remove unused code 2022-02-05 12:02:59 +01:00
joshua
7ba27ec9d9 Fix very weird bug
see
https://linuxfr.org/forums/programmation-c/posts/erreur-de-compilation-aucun-fichier-ou-dossier-de-ce-type
2022-02-05 11:40:47 +01:00
Laurent Trinques
d74dcdea6c Minor 2022-02-04 16:16:34 +01:00
joshua
9cb86a7e54 Fix fail to build for older version of Qt 2022-02-01 11:29:06 +01:00
joshua
826991e6d6 Improve how real terminals are grouped 2022-02-01 11:13:23 +01:00
joshua
53157afd12 Minor : rebuild terminal vector everywhere is needed 2022-02-01 10:30:42 +01:00
joshua
a165a3cb28 When undo an ungroup terminal command, the terminal keep the same level. 2022-02-01 09:53:06 +01:00
joshua
1d20018a26 Merge branch 'terminal_strip'
* terminal_strip:
  Terminal strip bridge are now save in .qet file
Minor : don't push an undo command when change bridge color by the
same color
2022-01-31 18:17:27 +01:00
joshua
c02238cab8 Terminal strip bridge are now save in .qet file 2022-01-31 18:11:21 +01:00
joshua
35a40f1aba Fix fail to build from sources for some Qt version 2022-01-31 17:25:10 +01:00
Laurent Trinques
6e55a630b4 Rename Folder names containing the '&' character cause the PHP file _exist() function to fail. 2022-01-30 11:24:11 +01:00
Laurent Trinques
9a17c8f72c Rename Folder names containing the '&' character cause the PHP file _exist() function to fail. 2022-01-30 11:21:59 +01:00
Laurent Trinques
04c17ac5ac Rename Folder names containing the '&' character cause the PHP file _exist() function to fail. 2022-01-30 10:50:21 +01:00
Laurent Trinques
686bd8dff1 Rename Folder names containing the '&' character cause the PHP file _exist() function to fail. 2022-01-30 10:36:18 +01:00
joshua
bd635b8e43 Minor : don't push an undo command when change bridge color by the same color 2022-01-28 18:37:40 +01:00
joshua
0bd0476cb1 Merge branch 'terminal_strip'
* terminal_strip:
  Fix fail to build from sources
  Minor improvement about undo/redo for bridge creation
  Minor Fix : undo command for unbridge strip don't work
  Minor : add undo text
2022-01-28 18:09:20 +01:00
joshua
d562ca8a39 Fix fail to build from sources 2022-01-28 18:08:16 +01:00
joshua
a31bd6eb0d Minor improvement about undo/redo for bridge creation
When a new bridge is created, an undo command is created for that.
When undo the action and redo it, all terminals are bridged to a new
bridge instead of the first one, who continue to exist but is now
empty and 'lost' because he will never be reused.
In addition of that, if a more recent undo command (we call it undo2)
use this bridge,
there is a unknown behavior, because the status of the bridge is not the
same as when the undo2  was created.
2022-01-27 20:00:46 +01:00
joshua
d114b097bf Minor Fix : undo command for unbridge strip don't work 2022-01-27 19:45:33 +01:00
joshua
993eb58d46 Minor : add undo text 2022-01-27 19:07:49 +01:00
joshua
7aa048740b Merge branch 'terminal_strip'
* terminal_strip:
  TerminalStripBridge color can be edited.
  Use QSharedPointer instead of QWeakPointer + remove unused include
  Change struct TerminalStripBridge to class
  Revamp terminalStrip feature code
  Revamp PhysicalTerminal class
  Revamp RealTerminal class...... again
  Improve bridge edition
  Improve code readability
  Fix copy constructo warning
  Make code less spaghetti
  Draw bridge pixmap in the tableview (wip)
  REmove unused method : levelCellCount
  Remove isXrefCell method...
  Add terminal bridge feature
2022-01-27 19:02:43 +01:00
Maximilian Federle
306f4c7b54 projectview: Only append .qet if not snap or flatpak 2022-01-27 12:02:08 +01:00
Laurent Trinques
4334c8ec8c Add new symbols, thanks Vbxler 2022-01-26 11:47:16 +01:00
dlee99
7aabdd1781 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-01-21 21:55:02 +01:00
artgg7300
bb48c4607a translated hungarian files 2022-01-20 10:49:33 +01:00
dlee99
0600b85e8a modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-01-19 22:30:42 +01:00
Maximilian Federle
688d9fe4c1 projectview: Re-enable appending qet suffix if not running as flatpak
It was removed in b121dad for all platforms.
Only disable appending the suffix for the flatpak platform
by testing for the FLATPAK_ID environment variable.
2022-01-19 20:29:34 +01:00
joshua
683095173e TerminalStripBridge color can be edited. 2022-01-18 11:24:07 +01:00
dlee99
0d70ed53a9 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2022-01-15 21:45:46 +01:00
joshua
7d33b48b3a Merge branch 'master' into terminal_strip
* master:
  BugFix : default element collection path is wrong
  snap: Remove framework snap prompt
  Update translation and add cn chinese ts files
  Danish translation updated
  Danish translation
  Danish translation
  Add new thumbnail element
  Flatpak add --share=network
Flatpak : add --socket=cups see :
https://github.com/flathub/org.libreoffice.LibreOffice/issues/90
  Graphics item handler is bigger when overred
  Add toolbar widget for edit size of handler in diagram editor.
  Fix Multiple translation in elements
  Fix Multiple translation in elements
  Fix segfault.
  new Analog-In - Module
  cleanup and upgraded elements
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  Add Russian translation, thanks "А.Разживин"
  little modification in hungarian language
  Fixed typo
2022-01-14 19:47:28 +01:00
joshua
d7e2ef283a BugFix : default element collection path is wrong 2022-01-14 19:04:53 +01:00
Maximilian Federle
782eaff4d2 snap: Remove framework snap prompt
Now that https://github.com/snapcore/snapcraft/pull/3596 has been
released in snapcraft 6.0.1, drop the prompt that tells users to
disconnect the old framework snap.

Also drop --enable-experimental-extensions from CI  because kde-neon
has been declared stable for core20.
2022-01-14 18:12:45 +01:00
Laurent Trinques
9bd2ea22f3 Update translation and add cn chinese ts files 2022-01-11 10:03:22 +01:00
Ole Carlsen
ee4ce5db4e Danish translation updated 2022-01-09 18:45:25 +01:00
Ole Carlsen
b90d06aa5c Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2022-01-09 16:29:35 +01:00
Ole Carlsen
ba47a11282 Danish translation 2022-01-09 16:28:30 +01:00
Ole Carlsen
4041073c96 Danish translation 2022-01-09 16:24:53 +01:00
joshua
8830204c0c Add new thumbnail element 2022-01-07 16:41:04 +01:00
Laurent Trinques
d932f8ea01 Flatpak add --share=network 2022-01-05 11:16:22 +01:00
Laurent Trinques
8cfa852077 Flatpak : add --socket=cups see :
https://github.com/flathub/org.libreoffice.LibreOffice/issues/90
2022-01-05 07:24:56 +01:00
joshua
1a75eb19d0 Graphics item handler is bigger when overred 2022-01-04 18:41:46 +01:00
joshua
ae9faa2192 Add toolbar widget for edit size of handler in diagram editor.
Add a combo box in the tool bar of diagram editor
to quickly change the size of the graphics handler item.

The sarto commit :D

NOTE
only available for diagram editor, element editor will
come later.
2022-01-03 21:01:25 +01:00
Laurent Trinques
e087270b6d Fix Multiple translation in elements 2021-12-31 13:29:17 +01:00
Laurent Trinques
b8263b03bc Fix Multiple translation in elements 2021-12-31 13:23:03 +01:00
joshua
778837a770 Fix segfault.
Fix bug 249.
https://qelectrotech.org/bugtracker/view.php?id=249
2021-12-28 15:25:35 +01:00
joshua
09694ddec9 Use QSharedPointer instead of QWeakPointer + remove unused include 2021-12-26 18:48:11 +01:00
joshua
1572fafabe Change struct TerminalStripBridge to class
And move it in a new file
2021-12-26 18:43:17 +01:00
joshua
5709f469fc Revamp terminalStrip feature code
Move RealTerminal class in a new file
Move PhysicalTerminal class in a new file.
Remove the use of QWeakPointer and use instead QSharedPointer
in a big part of the revamp.
2021-12-26 17:26:00 +01:00
joshua
2ea9f8a2c6 Revamp PhysicalTerminal class 2021-12-23 22:17:37 +01:00
joshua
a2e5989f3b Revamp RealTerminal class...... again
I don't know what I want, I'm crazy :D.
Next commit will also revamp PhysicalTerminal
and TerminalStripBridge class, code will be more clear and
easy to understand.
2021-12-23 18:37:17 +01:00
plc-user
e556abbab3 new Analog-In - Module 2021-12-23 09:06:00 +01:00
plc-user
337dd7c13b cleanup and upgraded elements 2021-12-23 09:05:59 +01:00
dlee99
34a3325ba9 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-12-22 21:04:59 +01:00
joshua
02b385e0b7 Improve bridge edition 2021-12-22 19:21:54 +01:00
joshua
e2454faa36 Improve code readability 2021-12-19 21:05:48 +01:00
joshua
57e80e7b5e Fix copy constructo warning 2021-12-19 20:03:26 +01:00
joshua
6505330b5f Make code less spaghetti
Not finished yet.
2021-12-19 14:55:02 +01:00
Laurent Trinques
56685d0f30 Add Russian translation, thanks "А.Разживин" 2021-12-17 16:29:26 +01:00
artgg7300
ee7a752a52 little modification in hungarian language 2021-12-16 15:51:32 +01:00
Jop Huttenhuis
7084f5bcf0 Fixed typo
Fixed a typo which caused a wrong summary table header.
2021-12-12 18:08:55 +01:00
joshua
cd914c8726 Merge branch 'master' into terminal_strip
* master: (21 commits)
  Minor: remove spaces in filenames
  minor: remove capital letters
  Add new symbols Fibaro, thanks Bertus
  Update Hungarian translation, thanks Gubányi
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  Add preprocessor to check Qt version
  Update *TS files
  Add possibility to user to choose hdpi round policy
  Minor improvement for function QETApp::customElementsDir() and QETApp::commonElementsDir()
  Add new GCE symbol
  Flatpak: update qet_tb_generator to version 1.3.1
  Add new symbol nodemcu_v3, thanks Bertus
  Add new symbols
  ci: Build edge snaps on GitHub & release to store
  snap: Port to core20
  Flatpak update qet_tb_generator to 1.3.0 version
  Fix typo in URL
  SNAP change Github source to https://github.com/raulroda/qet_tb_generator-plugin
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  upgraded elements and renamed company
  ...
2021-12-11 21:27:34 +01:00
joshua
beee4a06c8 Draw bridge pixmap in the tableview (wip) 2021-12-11 21:25:40 +01:00
Laurent Trinques
98960f5b2b Minor: remove spaces in filenames 2021-12-07 14:35:29 +01:00
Laurent Trinques
2bdecd3bd2 minor: remove capital letters 2021-12-07 14:32:34 +01:00
Laurent Trinques
c22f3c84bb Add new symbols Fibaro, thanks Bertus 2021-12-07 14:31:05 +01:00
Laurent Trinques
959dee7889 Update Hungarian translation, thanks Gubányi 2021-12-06 19:11:13 +01:00
dlee99
dd82a705d6 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-12-04 22:05:11 +01:00
joshua
c744356b0f Add preprocessor to check Qt version
Use to check if Qt is 5.14 for using
QGuiApplication::setHighDpiScaleFactorRoundingPolicy
2021-12-04 19:12:11 +01:00
Laurent Trinques
1073ebeebc Update *TS files 2021-12-04 15:18:39 +01:00
joshua
b94ec0938b Add possibility to user to choose hdpi round policy
Add combo box in general configuration dialog to let user
choose the round policy to use with hdpi screen.
2021-12-04 14:38:41 +01:00
joshua
eed1223c1d Minor improvement for function QETApp::customElementsDir() and QETApp::commonElementsDir()
the path is set the first time the function is called.
Each other call will immediately return the previously setted path
instead of check again what path to return.
2021-12-04 12:22:47 +01:00
joshua
291e163ee2 REmove unused method : levelCellCount 2021-12-02 18:55:56 +01:00
joshua
6e68e6047a Remove isXrefCell method...
and use instead columnTypeForIndex method
2021-12-02 18:54:45 +01:00
joshua
ce8bd7fae3 Add terminal bridge feature 2021-12-01 21:27:04 +01:00
Laurent Trinques
94f66553ac Add new GCE symbol 2021-11-29 04:59:58 +01:00
Laurent Trinques
c7579db674 Flatpak: update qet_tb_generator to version 1.3.1 2021-11-28 13:56:31 +01:00
Laurent Trinques
478c7771b7 Add new symbol nodemcu_v3, thanks Bertus 2021-11-28 00:01:35 +01:00
Laurent Trinques
b46bf67c58 Add new symbols 2021-11-27 07:20:05 +01:00
Maximilian Federle
8c09399804 ci: Build edge snaps on GitHub & release to store 2021-11-20 16:57:45 +01:00
Maximilian Federle
5055e93114 snap: Port to core20 2021-11-20 16:57:45 +01:00
Laurent Trinques
c70eb65259 Flatpak update qet_tb_generator to 1.3.0 version 2021-11-16 13:36:13 +01:00
Laurent Trinques
ebeeb04aa4 Fix typo in URL 2021-11-16 13:31:52 +01:00
Laurent Trinques
f0413ce9a5 SNAP change Github source to https://github.com/raulroda/qet_tb_generator-plugin 2021-11-16 13:30:02 +01:00
dlee99
21bb3f8426 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-11-09 22:14:23 +01:00
plc-user
acf7478c8b upgraded elements and renamed company 2021-11-07 15:50:20 +01:00
Laurent Trinques
f08811aca0 Add Loxome symbols 2021-11-07 10:16:30 +01:00
dlee99
ea26f0b04e modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-11-04 19:39:04 +01:00
Laurent Trinques
9485e3360b Update *TS files 2021-11-04 09:39:59 +01:00
joshua
3e5713a512 Fix FTBFS for ubuntu bionic beaver 2021-11-01 13:36:41 +01:00
joshua
58a3e72abe Fix FTBFS for ubuntu Bionic Beaver 2021-11-01 12:41:43 +01:00
joshua
2252feca16 Fix some FTBS for older version of Qt and std c++ 2021-11-01 11:53:16 +01:00
joshua
985988ee53 Remove the use of c++17 if initializer 2021-10-29 20:57:11 +02:00
joshua
1cc162867f Fix fail to build for QT version lesser than 5.14 2021-10-29 19:37:02 +02:00
joshua
91ac46df83 Fix wrong use of static method QUuid::fromString() 2021-10-29 18:53:36 +02:00
joshua
f01b15d00a Merge branch 'master' into terminal_strip
* master:
  Danish translation updated
  translated hungarian files
  Update of German Language File, thanks Lars
2021-10-27 20:56:19 +02:00
joshua
3fdba11c73 Add buttons to quickly edit the type, function and led of several terminal at once. 2021-10-27 20:54:34 +02:00
Ole Carlsen
7afa1b8a59 Danish translation updated 2021-10-25 19:31:37 +02:00
artgg7300
6f197c2bb7 translated hungarian files 2021-10-22 20:04:22 +02:00
Laurent Trinques
5b788c177b Update of German Language File, thanks Lars 2021-10-22 06:41:57 +02:00
joshua
204b53cd00 Merge branch 'master' into terminal_strip
* master: (55 commits)
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  Update *TS files
  Fix some misprint
  new and upgraded elements
  fix typo
  add terminals to thermo-couples
  upgraded elements and descriptions
  upgraded / added elements and descriptions
  updated descriptions
  more elements and descriptions
  fix typos
  update element-descriptions
  update elements / more element-descriptions
  fix designations / update descriptions
  fix designations / update descriptions
  update element-descriptions
  fix typo
  update element-descriptions
  update / add elements
  update element-descriptions
  ...
2021-10-20 21:32:45 +02:00
dlee99
a646359d51 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-10-19 22:55:30 +02:00
Laurent Trinques
91f034272c Update *TS files 2021-10-19 06:17:19 +02:00
joshua
aefae7b73b Fix some misprint
When print on printer with low resolution, some lines are not printed
because to thin.
Thin line of elements : set width to 0.5 instead of 0 and set cosmetic
option to false.
Folio border and titleblock : set width to 1 and set cosmetic option to
false.
2021-10-16 10:15:45 +02:00
joshua
107d7ff806 Level of real terminal can be edited
The level of each real terminal who compose a physical terminal can be
edited. Several real terminal can be edited in one shot.
2021-10-12 19:25:35 +02:00
joshua
8b1f2fb0d9 Change the way how multi-level terminals are sorted 2021-10-10 10:58:38 +02:00
joshua
7c6fca2aac Ungroup terminal is now managed by undo stack 2021-10-09 14:45:54 +02:00
joshua
c6e3e385ff Clear code 2021-10-09 12:08:18 +02:00
joshua
089f260d9b Group terminals together is now managed by undo stack 2021-10-09 11:58:10 +02:00
plc-user
09e345ee4a new and upgraded elements 2021-10-06 06:14:55 +02:00
joshua
828424cae8 Level terminals can be disassembled 2021-10-04 21:26:51 +02:00
joshua
dca643f7aa Multi-level terminal can be created. 2021-10-03 13:22:21 +02:00
plc-user
cc327cb761 fix typo 2021-10-01 14:56:15 +02:00
plc-user
c03f2b605f add terminals to thermo-couples 2021-10-01 14:56:15 +02:00
plc-user
7ce23598e4 upgraded elements and descriptions 2021-10-01 14:56:15 +02:00
plc-user
3097a59c68 upgraded / added elements and descriptions 2021-10-01 14:56:15 +02:00
plc-user
53178cf17a updated descriptions 2021-09-30 04:29:56 +02:00
plc-user
6d02cd1779 more elements and descriptions 2021-09-30 04:29:56 +02:00
plc-user
1839e988f6 fix typos 2021-09-29 09:45:24 +02:00
plc-user
543c706e0c update element-descriptions 2021-09-29 09:45:24 +02:00
plc-user
5af8665e24 update elements / more element-descriptions 2021-09-29 09:45:24 +02:00
plc-user
86595f4114 fix designations / update descriptions 2021-09-26 07:09:50 +02:00
plc-user
f8cc42e3a7 fix designations / update descriptions 2021-09-25 05:53:10 +02:00
plc-user
085f56d192 update element-descriptions 2021-09-25 05:53:10 +02:00
plc-user
b580c2bb73 fix typo 2021-09-25 05:53:10 +02:00
plc-user
c6e168bb20 update element-descriptions 2021-09-25 05:53:10 +02:00
plc-user
a2a0c166d9 update / add elements 2021-09-25 05:53:10 +02:00
plc-user
96d6e21e2f update element-descriptions 2021-09-24 18:16:59 +02:00
plc-user
4093d1fa27 update translations and elements / added elements 2021-09-24 18:16:59 +02:00
Peter Keresztes Schmidt
de80d10f5e Build fix for non-C++17 compatible systems
std::variant/std::visit was only introduced with C++17. Remove its usage.
We don't even need it in these cases since QColor has an implicit constructor accepting Qt::GlobalColor.

Follow-up for b69c7b10277257fcd2b4b993e303049f41061a6f
2021-09-23 21:50:37 +02:00
joshua
1699ad9dd8 Add a push button to automatically reorder the terminal strip 2021-09-22 23:02:33 +02:00
Peter Keresztes Schmidt
e9a5fded5c DiagramContextWidget: Fix verification of keys 2021-09-22 21:54:00 +02:00
Peter Keresztes Schmidt
a8d42b0f9a Add MSVC support to MachineInfo 2021-09-22 21:53:21 +02:00
Peter Keresztes Schmidt
b69c7b1027 Refactor deeply nested statements
Compilation using MSVC fails with a C1061 error since MSVC has a hard limit on block nesting.
Refactor the code in question to use map lookups instead.
2021-09-22 21:53:21 +02:00
Olivier
7b0a581008 Correct a writing mistake in a name 2021-09-21 04:00:57 +02:00
Olivier
4f1a6d55e5 Redraw some switches and organize the folder a bit 2021-09-21 04:00:57 +02:00
Olivier
1048cef845 IEC 60617: Modification of group names 2021-09-21 04:00:57 +02:00
Olivier
dccbf92964 IEC 60617: Adding English names of elements 2021-09-21 04:00:57 +02:00
Olivier
626bf4ce9c IEC 60617: Manual changes in element names 2021-09-21 04:00:57 +02:00
Olivier
1f22a5a0a8 IEC 60617: Correction of a file name 2021-09-21 04:00:57 +02:00
Olivier
ce4729e1c0 IEC 60617: Correction of wrong file names 2021-09-21 04:00:57 +02:00
Olivier
d99b035aa6 IEC 60617: Rename two elements that had wrong names 2021-09-21 04:00:57 +02:00
Olivier
ad77482235 IEC 60617: Rename files that had wrong names. 2021-09-21 04:00:57 +02:00
Olivier
b02ed7fe51 IEC 60617: Correct two elements 2021-09-21 04:00:57 +02:00
Olivier
58efc14633 IEC 60617: Rename files that had wrong names. 2021-09-21 04:00:57 +02:00
Olivier
b03deb8e3e IEC 60617: Manual adjustment of "qet_directory" files 2021-09-21 04:00:57 +02:00
Olivier
580bb07685 IEC 60617: Addition of English in "qet_directory" files. 2021-09-21 04:00:57 +02:00
Olivier
818e5ef484 IEC 60617: manual change for some "qet_directory" files. 2021-09-21 04:00:57 +02:00
Olivier
bd6920e049 Correction of the family names in IEC 60617 2021-09-21 04:00:57 +02:00
joshua
377f8b1521 Overridden properties of terminal elements are now saved/loaded from project
The overridden properties of terminal elements made in the terminal
strip dialog are now saved and loaded from/to the project file.
2021-09-20 18:34:48 +02:00
joshua
67dbc798aa Minor 2021-09-20 18:21:23 +02:00
plc-user
6d17f3d0ad declare terminals as such / more element-descriptions 2021-09-20 14:50:18 +02:00
plc-user
5fc5a33543 some more element-descriptions 2021-09-18 10:13:56 +02:00
plc-user
337a2a45b4 added element-descriptions and elements 2021-09-18 10:13:56 +02:00
plc-user
8cb2fcc09c more element-descriptions / new elements 2021-09-17 10:02:37 +02:00
plc-user
8547940ab2 more element-descriptions 2021-09-16 14:05:46 +02:00
plc-user
f52ed8cf51 upgrade descriptions, new elements 2021-09-16 14:05:46 +02:00
Adrien Allain
ccfb46b354 Implemented QET coding style (replaced 4 space with tab) 2021-09-14 09:35:14 +02:00
Adrien Allain
c640d96bca * Added the m_rotate_action to qetelementeditor.ui * Adding QAction to qetelementeditor.cpp and connecting it to new slot RotateElementsCommand defined in editorcommands.cpp
* Some types of elements need to specialize the setRotation method in order to behave correctly :
- PartTerminal needs to call setOrientation
- PartLine, PartRectangle and PartPolygon need a different rotation center.
2021-09-14 09:35:14 +02:00
joshua
37e74b397e Use RealTerminalData struct instead of TerminalStripIndex class 2021-09-12 12:49:12 +02:00
plc-user
9135099dbf cleanup, upgrade descriptions, new elements 2021-09-12 12:13:18 +02:00
plc-user
76d68f5025 upgraded some descriptions 2021-09-12 12:13:18 +02:00
plc-user
710067969e upgraded some elements 2021-09-12 12:13:18 +02:00
plc-user
ddc171cfa2 removed some un-necessary line-breaks 2021-09-12 12:13:18 +02:00
plc-user
896ffb9c72 upgrade some elements 2021-09-12 12:13:18 +02:00
plc-user
db8529c536 moved DIN-rails to separate directory; new elements 2021-09-12 12:13:18 +02:00
plc-user
fcab77420d added/fixed translations and added elements 2021-09-12 12:13:18 +02:00
joshua
8c554e875d Use QLatin1String 2021-09-10 23:43:36 +02:00
joshua
5ef073b6c1 Merge branch 'terminal_strip' into merge_confli_master_terminal_strip
* terminal_strip:
  User can edit the label of terminal inside the terminal strip editor
  Code refactoring
  Double click on Xref cell show the terminal in the diagram
  terminal function can be edited, edted value is applied to element
  Table widget : led and type is editable
  Minor gui change
  Remove position section of terminalStripModel
2021-09-10 23:31:26 +02:00
joshua
895417c98c Revert "Revert "Add terminalStripModel class""
This reverts commit 4615e6d06005ca7c6d12da28ad0c32fb5e3475af.
2021-09-10 23:30:49 +02:00
joshua
374805d6ab Revert "Revert "Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet into terminal_strip""
This reverts commit bb26954bd498cacf31a06a568cc4f9dc93deff6f.
2021-09-10 23:30:20 +02:00
joshua
b08c2bd90b User can edit the label of terminal inside the terminal strip editor 2021-09-10 21:01:03 +02:00
plc-user
543447aa31 added element-descriptions 2021-09-08 13:23:16 +02:00
plc-user
4622df84e3 added element-descriptions 2021-09-08 13:23:16 +02:00
plc-user
9e3cca101d added translations 2021-09-08 13:23:16 +02:00
plc-user
5627295002 added element-descriptions and some elements 2021-09-08 13:23:16 +02:00
joshua
a765fe24be Bug fix : in some condition element are not loaded when open a project
If an element are overwrite by a modified element and the terminals of
the modified element are moved, the old element is not loaded because
some terminal are not found.
This commit remove the checking of not found terminal because it's
useless now.
2021-09-07 22:23:43 +02:00
sdeffaux
07e38236d2 add and update symbols 2021-09-07 12:54:37 +02:00
sdeffaux
6e03e022e1 Add and update symbols 2021-09-07 12:54:37 +02:00
sdeffaux
883bee496c Update symbols 2021-09-07 12:54:37 +02:00
pavelfric
9e5267aeb9 Updated Czech translation. 2021-09-06 10:02:51 +02:00
plc-user
ec367e847b added translations 2021-09-02 14:19:44 +02:00
plc-user
77d38d80ea adjusted terminals and text / added elements 2021-09-02 14:19:44 +02:00
plc-user
915e553a2f added translations / simplified graphics 2021-09-02 14:19:44 +02:00
plc-user
318c49897c removed duplicate elements 2021-09-02 14:19:44 +02:00
plc-user
87f8b1f154 fix typo in filename 2021-08-31 15:16:39 +02:00
plc-user
d6fd14dd5f fixed fonts / added schematics for MID-Counters 2021-08-31 15:16:39 +02:00
plc-user
f4464ab5a3 added RF-modules and front-views of MID-Counters 2021-08-27 05:36:08 +02:00
plc-user
38e957f078 add translations 2021-08-25 13:59:55 +02:00
plc-user
62b23aa530 fix typos, add translations, add elements 2021-08-25 13:59:55 +02:00
joshua
4dd2dc259f Code refactoring 2021-08-23 20:44:53 +02:00
joshua
f3811d3035 Add annex project 2021-08-20 17:41:08 +02:00
joshua
5288cd8c8b Add tab "annex project" to about qelectrotech dialog
The goal is to list annex project of QElectroTech.
2021-08-20 17:31:37 +02:00
Laurent Trinques
d1974349e0 Restore Wago 2206_terminals symbols 2021-08-19 10:20:11 +02:00
joshua
80601a415a Double click on Xref cell show the terminal in the diagram 2021-08-17 20:49:48 +02:00
sdeffaux
f3171dc0db Add symbols 2021-08-15 22:57:20 +02:00
sdeffaux
359a09f40a update symbols
ajout de symboles et traduction
2021-08-15 22:57:20 +02:00
plc-user
1899ef0336 further bugfixing and new elements 2021-08-13 08:47:36 +02:00
plc-user
0fa171470c some new elements 2021-08-13 08:47:36 +02:00
plc-user
7a08847522 BugFixing, Labelling & Beautification of some elements 2021-08-13 08:47:36 +02:00
Simon De Backer
a3dfc3efa6 Fix Cmake
See:
3220a58b969e1c999db9fd925cec0985d31b78ba ("Move file", 2021-05-14)
2021-07-27 20:45:13 +02:00
Laurent Trinques
e730800a98 Add new symbols, thanks Vbxler 2021-07-19 07:18:15 +02:00
dlee99
63c98225ef modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-07-18 23:02:27 +02:00
joshua
cc6f66ad11 terminal function can be edited, edted value is applied to element 2021-07-17 13:44:44 +02:00
dlee99
8ac9d0d9a8 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-07-16 21:18:48 +02:00
joshua
30dc34ebe1 Table widget : led and type is editable
But not applied yet to the terminal strip
2021-07-13 12:27:08 +02:00
joshua
efed7ab5c0 Minor gui change 2021-07-12 19:16:01 +02:00
dlee99
1e7dfb8f5a modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-07-11 00:12:44 +02:00
Laurent Trinques
6f736cb785 Add new ewon element, thanks Vbxler 2021-07-06 19:55:57 +02:00
joshua
52e884b793 Minor fix : slave Xref item is not updated when variable %F is used 2021-06-28 21:31:15 +02:00
joshua
5912a99c16 Minor fix : master XRef is not updated when variable %F is used 2021-06-28 21:24:28 +02:00
joshua
8f051fc612 Remove table useless qetgraphicstableitem when model is reseted
When the model of a qetgraphicstableitem is reseted (for exemple when
the sql query is modified) we check if there is useless tables (table
with 0 row displayed) and remove it.
2021-06-24 19:46:18 +02:00
joshua
bd96faa14f Fix crash
When a qetgraphicstable is deleted, the next and previous table is not
aware about the deletion and keep a dangled pointer of the deleted table
who cause a segfault.
2021-06-24 19:15:24 +02:00
joshua
f410fbf7e2 Remove position section of terminalStripModel 2021-06-07 21:56:27 +02:00
joshua
bb26954bd4 Revert "Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet into terminal_strip"
This reverts commit 364bce618cc8a2a77329261cc485a40f4825eac5, reversing
changes made to efb4a8dd71b9e19ac55c5ac8911f1f53e3b43c22.
2021-06-07 20:00:52 +02:00
joshua
4615e6d060 Revert "Add terminalStripModel class"
This reverts commit a1e18d2bbab70502df3d8ec87ad2d0a895878611.
2021-06-07 19:45:45 +02:00
joshua
a1e18d2bba Add terminalStripModel class 2021-06-07 19:26:41 +02:00
joshua
364bce618c Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet into terminal_strip 2021-06-07 19:25:30 +02:00
artgg7300
efb4a8dd71 translated hungarian element names 2021-06-05 07:43:06 +02:00
plc-user
f1e353b342 added some additional front-views (100mm->200px) 2021-06-04 21:43:38 +02:00
plc-user
78a48e48c1 changed scaling of front-views to 100mm->200px 2021-06-04 21:43:38 +02:00
Kevin Tee
b448c26d71 Fix typo.
Fix typo.
Also, can we add more screenshots?
2021-05-26 22:40:15 +02:00
Laurent Trinques
c7648fe2af Snap : try to add PySimpleGUI python-packages 2021-05-21 19:38:11 +02:00
joshua
6660caa70f Merge branch 'master' into terminal_strip 2021-05-21 19:18:16 +02:00
joshua
fdbfca9a8c Change ElementData enum
Change enum value 'ground' from enum 'function' to enum 'type'
2021-05-21 19:15:26 +02:00
Laurent Trinques
93b164d077 Update Flatpak, thanks kevinsmia1939 2021-05-20 16:10:01 +02:00
Laurent Trinques
8ed4e742f5 Minor 2021-05-18 08:09:36 +02:00
joshua
c1fdc1adaa Fix xrefproperties bug
Change only slave Xrefproperties is not applied due to overload operator
== who don't compare the formula string of slave.
2021-05-15 18:58:26 +02:00
joshua
789e195ace Fix include path from previous commit 2021-05-14 19:50:30 +02:00
joshua
3220a58b96 Move file 2021-05-14 19:37:36 +02:00
joshua
21c35bc744 Minor improvement at element picture creation
Call once the uuid() method of element location instead of four (and so
parse once time the xml) to store the uuid/picture and uuid/primitive to
hash.
2021-05-14 16:15:49 +02:00
joshua
fd9ab47041 Load project from xml is a little more faster
Like previous commit, in the method loadDiadrams() we call the method
diagramAdded(), in this method we call rebuildDiagramsMap()
updateAllTabsTitle() and these methods operate a loop for each existing
DiagramView.

Now loadDiagrams don't call diagramAdded (which must be used only when
user add a diagram during the use of QElectroTech) but make operations
itself and when all DiagramView are added, call rebuildDiagramsMap()
updateAllTabsTitle() only once.
2021-05-14 15:47:10 +02:00
joshua
71636ba874 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2021-05-14 13:39:33 +02:00
joshua
0aea48bdaa Open project is a litle more faster
In the methods readDiagramsXml we call addDiagram for each diagrams
loaded from xml, inside the addDiagram method we call the method
updateDiagramsFolioData() and to finish this method operate a loop for
each existing diagram.

Then when we load a project from xml of
10 folios, loop inside updateDiagramsFolioData() is called 55 time.
50 folios, loop inside updateDiagramsFolioData() is called 1275 time.
100 folios, loop inside updateDiagramsFolioData() is called 5050 time.

Now instead of call addDiagram, we add diagram directly inside the
methods readDiagramsXml and call the method updateDiagramsFolioData()
only once when all diagrams are loaded.
2021-05-14 13:38:59 +02:00
Ole Carlsen
dd51819403 Updated Danish Translation 2021-05-13 21:39:48 +02:00
joshua
ffabeb9caa Avoid excessive debug outputs
Avoid excessive debug outputs when terminal type doesn't exist (99.99%
of actual elements collections).
2021-05-13 20:48:56 +02:00
dlee99
bfc1df633e modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-05-12 21:06:49 +02:00
joshua
507c1b4f73 Minor gui behavior improvement 2021-05-11 18:46:12 +02:00
joshua
580ebe8b97 Terminal strip can now be edited and managed by undo command 2021-05-11 18:20:46 +02:00
joshua
e0579b3040 Add widgets to edit terminal strip data (WIP) 2021-05-11 18:20:46 +02:00
joshua
ded4ea555f Terminal element can be removed from a terminal strip 2021-05-11 18:20:46 +02:00
joshua
f07f4cb150 Fix drag and drop bug 2021-05-11 18:20:46 +02:00
joshua
dbb21373e1 Read terminal strip from xml 2021-05-11 18:20:46 +02:00
joshua
89f3ce1eb3 terminal strip can be saved to xml 2021-05-11 18:20:46 +02:00
joshua
36068abce7 Add a reload push button
Add a reload push button to quickly reload/update the gui according to
the current state of the terminal strip.
2021-05-11 18:20:46 +02:00
joshua
d551c8e6b9 Improve undo command when remove a terminal strip 2021-05-11 18:20:46 +02:00
joshua
2572e1c25d Display terminals owned by terminal strip in the tree view 2021-05-11 18:20:46 +02:00
joshua
b158984464 Set parent terminal strip of terminal element
Call the method :
void TerminalElement::setParentTerminalStrip(TerminalStrip *strip)
when a terminal element is added to a terminal strip.
2021-05-11 18:20:46 +02:00
joshua
256d42d030 Add and move terminal element to strip is managed by undo 2021-05-11 18:20:46 +02:00
joshua
171e95fb17 Enable drag and drop of terminal tree widget item 2021-05-11 18:20:46 +02:00
joshua
d3ad490b84 Initial comit to use drag and drop 2021-05-11 18:20:46 +02:00
joshua
df07f373d8 Terminal strip add/remove is managed by undo stack 2021-05-11 18:20:46 +02:00
joshua
5d17461c6e Add RemoveTerminalStripCommand class 2021-05-11 18:20:46 +02:00
joshua
2cf5ea11fd Fix : undo code is executed in redo function and vice versa
Need to sleep ?
2021-05-11 18:20:46 +02:00
joshua
573c0c236a Add undo command for add/remove a terminal strip 2021-05-11 18:20:46 +02:00
joshua
63429ab087 Terminal strip editor display the free terminal elements 2021-05-11 18:20:46 +02:00
joshua
00846c1418 Add "parent terminal" strip member to TerminalElement class 2021-05-11 18:20:46 +02:00
joshua
a3f776b7db Add 'comment' to terminal strip 2021-05-11 18:20:46 +02:00
joshua
91db58bb64 Add dialog to create terminal strip + display existing terminal strip 2021-05-11 18:20:46 +02:00
joshua
0a2ec297bf Minor 2021-05-11 18:20:46 +02:00
joshua
bbfe9ed377 Add terminal strip editor widget 2021-05-11 18:20:46 +02:00
joshua
39aee4ad07 Add terminal strip data class 2021-05-11 18:20:46 +02:00
joshua
49674e7d33 Add terminal strip class 2021-05-11 18:20:46 +02:00
joshua
12c0dbd8d1 Minor gui change 2021-05-11 18:20:19 +02:00
artgg7300
734e70ffb1 translated hungarian lang files 2021-05-11 06:11:43 +02:00
Laurent Trinques
480066cc6d Update *TS files 2021-05-09 12:46:47 +02:00
joshua
74dcf96e4b Element editor: make element text option "keep visual rotation" editable. 2021-05-08 22:14:15 +02:00
Laurent Trinques
222c86f550 Minor update README.md 2021-05-06 23:34:18 +02:00
Laurent Trinques
b255423245 Update README.md 2021-05-06 23:27:09 +02:00
joshua
09c0929040 Element editor gui fix
When select a primitive an unparented windows appear and can't be
deleted. Fix it.
2021-04-30 20:27:24 +02:00
Laurent Trinques
7312d06cc4 Minor 2021-04-30 11:52:44 +02:00
Laurent Trinques
5c75bc4194 OSX update qet_tb_generator PATH to python 3.9 2021-04-30 11:34:32 +02:00
Laurent Trinques
760a1f6c43 Try to improve HIGHDPI_SCALING 2021-04-21 09:38:48 +02:00
joshua
b6cfc8c755 Improve element collection loading time
According to Qt creator flame graph, call QSettings take lot of time.
When loading the element collection, each items of the collection get
the current language by calling the function QString
QETApp::langFromSetting().
This function instantiate a QSettings object each time and take a lot of
time.
Now the QSettings is instantiate only at the first call, and the value
is stored in memory, then all other call of the function don't
instantiate a QSettings, but just return the value in memory.
2021-04-18 20:03:13 +02:00
sdeffaux
820a01cb7d add symbol 2021-04-17 16:15:10 +02:00
sdeffaux
bfd7c1ea7c Update symbols and examples 2021-04-17 16:15:10 +02:00
Laurent Trinques
b8d9d38d31 Minor 2021-04-12 06:40:59 +02:00
Laurent Trinques
c05d76c633 Flatpak update org.qelectrotech.QElectroTech.json 2021-04-12 06:36:16 +02:00
joshua
5a8197b2b3 Element query widget : make code more readable 2021-04-11 14:08:21 +02:00
joshua
c1169f0e04 Element nomenclature sql query minor fix
Filter "is empty" don't work for any case :
We must to filter for NULL and empty string then replace the sql
sentence "value IS NULL" by "(value IS NULL OR value = '')"
2021-04-11 14:03:02 +02:00
joshua
794af49a3a Element nomenclature SQL query : minor fix
the filter "is not empty" in nomenclature don't work for every case.
Replace SQL sentence "IS NULL" by "!= ''" because an empty string is not
a NULL value string, but a NULL value string is like an empty string
2021-04-11 12:39:38 +02:00
Laurent Trinques
8ef0d0b2f0 Flatpak fix location patch 2021-04-09 16:22:41 +02:00
Laurent Trinques
3729bec350 Flatpak update flatpak/org.qelectrotech.QElectroTech.json 2021-04-09 16:15:26 +02:00
Laurent Trinques
157377e1c1 Faltpak update org.qelectrotech.QElectroTech.json
see :https://github.com/flathub/flathub/pull/2146
2021-04-09 16:01:14 +02:00
joshua
7cb47f3b9e Fix unwanted moving part in element editor.
Fix an unwanted behavior when the properties dock widget is displayed :

1 there is no selection
2 the dock widget width is set to minimum
3 select a part, the dock widget gain new widgets used to edit the
current selected part and the width of the dock grow so the width of the
QGraphicsView is reduced and cause a mouse move event.
When this case occur the part is moved but they should not.
2021-04-07 12:56:43 +02:00
joshua
9db15f91e7 Improve gui layout for low resolution screen 2021-04-07 12:34:56 +02:00
plc-user
c54ee9b66d Bug-Fixing on an element 2021-04-07 01:05:42 +02:00
Laurent Trinques
7a2c62d4d2 Minor: update readme.md files 2021-04-04 17:21:50 +02:00
joshua
7f5b446fc9 Use QStringLiteral and QLatin1String. 2021-04-02 19:16:32 +02:00
Laurent Trinques
bba1f07f57 Revert "Flatpak add --socket=cups for work with LAN printers"
This reverts commit d32c322e5a62ec4ebefb224af569185920bd4fef.
2021-03-31 16:16:41 +02:00
Laurent Trinques
d32c322e5a Flatpak add --socket=cups for work with LAN printers 2021-03-31 15:03:18 +02:00
joshua
8960981f09 Use QStringLiteral and QLatin1String. 2021-03-30 20:48:56 +02:00
joshua
f2f50084e0 Use QStringLiteral and QLatin1String.
According to the Qt documentation
(https://doc.qt.io/qt-5/qstring.html#QStringLiteral)
(https://woboq.com/blog/qstringliteral.html), use QStringLiteral and
QLatin1String is better on some conditions (faster).
This commit change the code related to the loading of a project (in
qetproject class), let see if loading time is improved.
2021-03-30 19:59:14 +02:00
Ole Carlsen
48be92cde5 Updated Danish translation 2021-03-29 20:18:26 +02:00
Kevin Tee
845431179d Update qelectrotech.appdata.xml
Add missing release tag.
I also suggest changing the license of this file.
This document suggest using permissive license, also it can be accept to Flathub.
https://freedesktop.org/software/appstream/docs/chap-Quickstart.html#qsr-app-contents

I suggest MIT, what do you think?
2021-03-29 05:50:47 +02:00
Kevin Tee
f6161af258 Update qelectrotech.appdata.xml
I forgot missing closing release tag.
2021-03-29 05:50:47 +02:00
Kevin Tee
8755a12698 Update qelectrotech.appdata.xml
I'm not sure about the date for this 2021-02-21
2021-03-28 18:52:41 +02:00
Kevin Tee
a361e16a8e Update qelectrotech.appdata.xml
add content rating, release date, and license according to SPDX.
2021-03-28 18:52:41 +02:00
Laurent Trinques
0f8f26e177 Refrersh splash 2021-03-23 00:58:56 +01:00
joshua
d53bb22509 Make MachineInfo a singleton class
Because on windows MachineInfo take a little time to init, we make it to
a singleton.
MachineInfo is build the first time in main.cpp.
Now all other places where we use MachineInfo (aboutqetdialog and
configdialog) gui don't hang anymore in waiting to MachineInfo finish to
build.
2021-03-22 19:20:07 +01:00
joshua
3d25beaea0 Rename class Machine_info to MachinInfo
Rename to follow the code style of QElectroTech
2021-03-22 19:01:46 +01:00
Laurent Trinques
1a3656f7be Add MINGW flag for cmake 2021-03-22 08:15:37 +01:00
Joshua Claveau
7de810bac4 little fix 2021-03-21 19:06:12 +01:00
Joshua Claveau
1b6cf7d5f3 Project properties dialog launch a little more faster (especially on windows)
Instead of build machine_info class which take time, only to get the max
width and height of screens, call  of methods
Machine_info::i_max_screen_width() and
Machine_info::i_max_screen_height() are now static and compute only
this.
The project properties dialog is now faster because don't wait the end
build of machine_info.
2021-03-21 19:01:54 +01:00
Joshua Claveau
6cf79e6e75 Qet start a little more faster (especially on windows)
Machine_Info class take time on windows even in powerful computer.
Run the machine_info in main.cpp in parallel into another thread.
2021-03-21 18:36:03 +01:00
artgg7300
8fdb9ba21a translated hungarian element names 2021-03-20 20:22:52 +01:00
Simon De Backer
a4adcf4865 Fix cmake user properties class
for commit 44db25e76b23c7446097468552aeccd3a2984b11
2021-03-18 21:22:39 +01:00
Gleb Popov
9300130aaf Add installation phase to CMake build system 2021-03-18 13:44:26 +01:00
Gleb Popov
d7dd32ff1a Fix CMake build when git revision can't be determined 2021-03-18 13:44:15 +01:00
Gleb Popov
564f38396f Add CMake option to allow using system pugixml library 2021-03-18 13:44:04 +01:00
Gleb Popov
ab5dd39556 Add CMake option to allow using system KF5 libraries 2021-03-18 13:43:50 +01:00
Gleisson Jesuino Joaquim Cardoso
b12a4525a2 Update PT_BR translation 2021-03-17 22:00:38 +01:00
Laurent Trinques
e0f2a66f3c Update Mongolian translation, thanks Nathalie 2021-03-17 09:59:12 +01:00
Laurent Trinques
20f5c3e443 Minor update README.md files 2021-03-15 23:44:26 +01:00
Paweł Śmiech
ea730a2fa1 Polish translation update 2021-03-14 21:03:08 +01:00
anvilex
28d98a1a30 Update qelectrotech.xml
1. Russian translation added.
2021-03-14 15:30:48 +01:00
anvilex
a75565e30d Update x-qet-titleblock.xml
1. Russian translation added.
2. German translation added.
2021-03-13 22:08:16 +01:00
anvilex
6ededf94bf Update x-qet-titleblock.desktop
1. Russian translation added.
2. Englisch translation improved.
3. German translation improved.
2021-03-13 22:07:21 +01:00
anvilex
9ca44f2557 Update qelectrotech.desktop
Russian translation added
2021-03-13 22:02:33 +01:00
anvilex
9aad769a37 Update qelectrotech.appdata.xml
1. German translation added.
2. Russian translation improved.
2021-03-13 22:01:36 +01:00
plc-user
1f0f44233e Update qet_directory 2021-03-13 22:00:24 +01:00
plc-user
5594197aab some Bug-Fixing of elements 2021-03-13 22:00:24 +01:00
plc-user
13b6b0c6c9 removed HTML-Tag &amp;#xd; from some element-informations 2021-03-13 12:19:47 +01:00
plc-user
b0e6ad46ac centered some elements on DIN-rail (allows rotating without changing Y-position) 2021-03-13 12:19:47 +01:00
Lars Biskupek
b417edaff8 Fixed grammer issues in German language file 2021-03-12 06:39:53 +01:00
anvilex
301fa629d8 Update qet_fr_ru.qph 2021-03-12 06:32:55 +01:00
joshua
44db25e76b Add user properties class
Add a specific class for user properties instead of embedded user
properties in properties interface.
2021-03-11 21:39:57 +01:00
joshua
d5df9703d0 Add new XML function 2021-03-11 20:20:07 +01:00
joshua
11b8ef927b Revert "Merge branch 'XMLPropertiesNew'"
**Break a lot of thing.**

This reverts commit 1db1800572aa9a636b0cc03cd70cb490e47f00ca, reversing
changes made to 4c563821e885535ec123a019b5aa545e729b6cfc.
2021-03-11 19:52:50 +01:00
joshua
83b69253dc Revert "fix compile error"
This reverts commit b1813111627275d4ec2eb06d226e745de54786f7.
2021-03-11 19:49:46 +01:00
joshua
b96eff00ef Revert "Fix for cmake"
This reverts commit 4051bbd30911dc106fbaa78a181771f2949e4c5d.
2021-03-11 19:49:32 +01:00
Laurent Trinques
4051bbd309 Fix for cmake 2021-03-11 07:59:54 +01:00
Martin Marmsoler
b181311162 fix compile error 2021-03-10 19:12:00 +01:00
joshua
1db1800572 Merge branch 'XMLPropertiesNew' 2021-03-09 19:09:31 +01:00
joshua
001e93bc6f Forgoten revert ToXml() 2021-03-09 18:43:03 +01:00
Martin Marmsoler
6e17996d37 fix problem that default conductor is not found 2021-03-08 20:48:23 +01:00
Simon De Backer
4c563821e8 [Qt6] ad QCloseEvent to Widgets 2021-03-07 20:23:07 +01:00
Simon De Backer
a4872bf686 [Qt6] mod QRegExp to QRegularExpression
note ad Core5Compat to Cmake
2021-03-07 20:21:39 +01:00
Simon De Backer
332d978043 [QT6] QtConcurrent its backwards now...function, object, args 2021-03-07 19:58:49 +01:00
Martin Marmsoler
755bcf640d fix conductor properties xml load 2021-03-07 14:07:47 +01:00
joshua
38a825865c Fix ftbfs on debian buster 2021-03-07 12:18:30 +01:00
Martin Marmsoler
5d3710c4b2 copy all toXML() from master commit 4b82c3a0c46e17fda42d71dc998c05e4d5c0d5f6 into the current branch, because the new concept will be used only for user properties 2021-03-07 10:09:45 +01:00
Martin Marmsoler
058824f29a move all static xml functions to qetxml 2021-03-06 20:01:31 +01:00
joshua
4b82c3a0c4 Fix crash
Fix crash for a special case (the first time since qet exist) when a
conductor have all segments to 0 in the .qet file.
See https://qelectrotech.org/forum/viewtopic.php?id=1964
2021-03-06 15:17:10 +01:00
Martin Marmsoler
ea793125a5 move m_change_connections to ElementItemEditor, so it must not be defined by every editor it self 2021-03-05 20:59:36 +01:00
Laurent Trinques
153aecbbf3 Flatpak change to --socket=fallback-x11 2021-03-05 18:17:25 +01:00
Martin
bc88f2ec2e reimplement Priv function, so the ElementEditor gets called automatically 2021-03-05 17:38:51 +01:00
Martin
6887c543da add possibilities to fill the userProperties 2021-03-05 07:56:35 +01:00
Martin Marmsoler
51ed21f9ef Merge commit 'b021ac3e1fb98a56810773c7c701e3329efb3148'
Conflicts:
	sources/qetgraphicsitem/element.h
2021-03-04 21:31:55 +01:00
Martin Marmsoler
221773ea8a fix some issues 2021-03-04 21:25:04 +01:00
Martin Marmsoler
9d4b90da1a Add userProperties 2021-03-04 19:18:28 +01:00
Thomas Gravekamp
b021ac3e1f Add Williams EM symbols 2021-03-03 21:53:25 +01:00
joshua
faf4235bed Terminal element info
Provide only useful information for terminal
2021-03-03 21:28:22 +01:00
Laurent Trinques
0a51e22b7d Update org.kde.Platform" to "runtime-version": "5.15" 2021-03-03 18:38:13 +01:00
Laurent Trinques
632fba5366 Add binary hungarian lang file 2021-03-03 14:28:01 +01:00
artgg7300
0ca883f114 translated hungarian lang file 2021-03-03 14:10:24 +01:00
Simon De Backer
170d856007 Fix Cmake
did not compile
2021-03-02 22:15:44 +01:00
joshua
0424eb9fba Mark deprecated method 2021-03-01 22:17:58 +01:00
Lars Biskupek
8210f06919 Update of German Language File qet_de 2021-03-01 20:41:40 +01:00
Ole Carlsen
468618adda Danish translation updated 2021-03-01 20:28:58 +01:00
pavelfric
8141a75738 Updated Czech translations of elements. 2021-03-01 10:40:11 +01:00
dlee99
8f201a6e5d modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-02-28 22:18:33 +01:00
Lars Biskupek
b8745c0a6b Update of German language file qet_de 2021-02-28 21:23:50 +01:00
Laurent Trinques
7c3bde9118 Update SingleApplication to upstream master 2021-02-28 18:05:18 +01:00
Martin Marmsoler
ed8c1dea9d Merge commit '28cd389695248b56a99a417bc10640bb3e99c298' 2021-02-28 17:33:43 +01:00
Laurent Trinques
28cd389695 Upgrade pugixml XML parser to 1.11 release
https://pugixml.org/docs/manual.html#v1.11
2021-02-28 17:12:53 +01:00
Laurent Trinques
56bb2a399b Refresh splash size 2021-02-28 05:56:59 +01:00
Laurent Trinques
dc726792d3 Update *TS files 2021-02-28 05:53:40 +01:00
joshua
d8707a4ef2 Add dialog to inform user when open a non compatible project 2021-02-27 14:01:33 +01:00
Martin Marmsoler
01d6cdb920 Merge commit '77710e1cc5e597d06196d2ee163198176032987a'
Conflicts:
	sources/conductorproperties.cpp
	sources/qetgraphicsitem/element.cpp
	sources/qetgraphicsitem/qetshapeitem.cpp
2021-02-27 07:49:24 +01:00
joshua
77710e1cc5 Remove compatibility of QetShapItem from version prior to svn 4075
Befor svn 4075 QetShapItem was saved as int in xml, after as a string.
Remove retro-compatibility (int to string) svn 4075 is older than 5
years.
2021-02-25 20:47:43 +01:00
joshua
1d2c00819d Element collection cache remove old code
Remove old code use to drop table when qet was using mtime instead of
uuid for check if an element was changed.
2021-02-25 20:31:14 +01:00
joshua
eee0469bd7 Remove retro compatibility of conductor text prior to qet 0.4
The property hide/show compatibility of conductor text is not maintained
for project made before qet 0.4
2021-02-25 20:21:18 +01:00
joshua
5118037cb5 Remove retro compatibility of element label prior to qet 0.5
Compatibility is not maintained anymore with the old project which
contain variable in the element information "label"
2021-02-25 19:42:14 +01:00
joshua
1f53c39290 Remove retro compatibility of element text item prior to qet 0.7
Compatibility is not maintained anymore with the old project which
contain old element text item.
2021-02-25 19:35:04 +01:00
Martin
f499507b2d fix load issue 2021-02-25 16:55:13 +01:00
joshua
b71aec9548 Fix wrong element type 2021-02-24 20:49:10 +01:00
joshua
c7798e1a80 Fix wrong element type 2021-02-24 20:41:47 +01:00
Martin
5430692359 remove not needed declaration, because the definition was already deleted. And so a linker error occured 2021-02-24 19:04:14 +01:00
Martin
02b7ead041 fix compile issues 2021-02-24 18:48:59 +01:00
Martin
ea364f9c4e merge 2021-02-23 17:35:55 +01:00
Laurent Trinques
f97edad75a DiagramView::mouseMoveEvent remove "DEV" in toolTip message mouse
postion
2021-02-23 00:51:50 +01:00
Laurent Trinques
454b2c8a0f Update splash to 0.9 version 2021-02-22 16:22:08 +01:00
Lars Biskupek
b2782bc460 Tab-stop definitions inserted where appropriate
Tab stop definitions inserted in some dialogs, so that the order of tab-stops-moves corresponds as closely as possible to the fields' position in the window.
2021-02-22 13:47:39 +01:00
Lars Biskupek
059f0eb1b6 Modifications to SaveFile-Dialog for "Save As PDF"
Fixed a typo that prevented existing PDF files from being displayed in SaveFileDialog for PDFs.

The way the file name for the PDF is generated has changed. If the project has already been saved, the PDF has the same file name (with .pdf of course); If not, the file name is generated from the project title (= same behavior as Save as - dialog for a .qet project file).
2021-02-22 13:47:39 +01:00
joshua
ce318ac667 Element : start use ElementData
Element now use ElementData for namelist and element information
2021-02-21 19:40:33 +01:00
joshua
be2067148e Element editor : add terminal properties editable 2021-02-21 19:40:33 +01:00
joshua
444f62a1f8 element data : add terminal type enum and terminal function enum 2021-02-21 19:40:33 +01:00
joshua
8f85cacb06 QetElementEditor : Use elementData class 2021-02-21 19:40:33 +01:00
joshua
ffe3d98279 Add element data class 2021-02-21 19:40:33 +01:00
joshua
dea926e4b4 Remove unnecessary method 2021-02-21 19:40:33 +01:00
joshua
a1779d1a7a Rewrite terminaleditor with ui file.
Write terminal editor with ui file.
The terminalData::type of a terminal can be edited with the terminal
editor.
2021-02-21 19:40:33 +01:00
joshua
252106178b Add enum Type to terminalData class 2021-02-21 19:40:32 +01:00
joshua
a00404bc9f clean terminal and terminaldata class 2021-02-21 19:40:32 +01:00
joshua
e2ebb445a8 Terminal : remove unused code 2021-02-21 19:40:32 +01:00
joshua
24ec94d73e QetElementEditor : rewrite gui with ui file 2021-02-21 19:40:32 +01:00
joshua
edb42caa16 Fix typo
Fixed a typo that resulted in existing PDF files not being displayed in
the dialog box "Save As PDF".
Thanks Bisku
2021-02-21 19:38:53 +01:00
Pawel Śmiech
c110acc0ac Polish translation updated
Signed-off-by: Pawel Śmiech <pawel@localhost.localdomain>
2021-02-21 13:46:41 +01:00
Laurent Trinques
3467c09c1e Change displayedVersion = "0.90-DEV" 2021-02-21 11:00:42 +01:00
Laurent Trinques
664537c178 Change displayedVersion 2021-02-21 10:15:38 +01:00
joshua
5f908fcd88 ElementCollectionWidgetWidget : Set search start when text to search have at least 3 letters.
The goal is to avoid gui freeze when search for 1 or 2 letters (in this
case qet search for every item and take a lot of time).
2021-02-21 09:44:38 +01:00
Laurent Trinques
ef58f34c14 Update Copyright date 2021-02-20 12:13:46 +01:00
artgg7300
34eb14a97e translated hungarian element names 2021-02-15 20:26:47 +01:00
joshua
30858f9a4d Minor fix :
Combobox "information of element" don't display the real information set
to the dynamic text field
2021-02-15 18:53:22 +01:00
Lars Biskupek
108513ef97 Update German Language file qet_de 2021-02-15 12:14:47 +01:00
Simon De Backer
81e6f217b4 Fix Cmake will not build
missing files in Cmake
From: 0c4f87bd76454264130607fcfcd18b785bc9b0b4
2021-02-14 06:52:05 +01:00
joshua
c592b7a7fd Fix crash
When use the function "invert selection" qet crash when a selected
conductor is being deselected.
2021-02-09 21:05:32 +01:00
Laurent Trinques
e3fab9508f Update pl translation, thanks Pawel 2021-02-08 05:45:18 +01:00
joshua
c13af5ace0 Clean some include 2021-02-07 20:44:17 +01:00
joshua
0c4f87bd76 Replace AddItemCommand class by AddGraphicsObjectCommand
The class is the same except the name and the use of QPointer to avoid
segfault with deleted QGraphicsObject.
2021-02-07 16:20:55 +01:00
joshua
ac23010559 Fix crash 2021-02-07 13:25:21 +01:00
joshua
b335a4af4f Fix bug 225
https://qelectrotech.org/bugtracker/view.php?id=225
2021-02-06 19:41:22 +01:00
joshua
2513961cd6 Revert "Update Copyright date"
This reverts commit d04bccc384aa8b9dc16e4432ac72ccb787b2508b.
2021-02-06 19:00:48 +01:00
Laurent Trinques
d04bccc384 Update Copyright date 2021-02-06 18:33:42 +01:00
Ole Carlsen
47ea5a3da9 Updated Danish Translation 2021-02-01 20:43:18 +01:00
joshua
e1b98ce5b5 Revert "QetElementEditor : rewrite gui with ui file"
This reverts commit e3db2bc898c1479566dd1202c196fb3890d9e797.
2021-02-01 19:52:15 +01:00
pavelfric
70947ac5b9 Updated Czech translations of elements. 2021-02-01 18:35:26 +01:00
pavelfric
b58898b6c8 Updated Czech translations of elements. 2021-02-01 18:10:47 +01:00
plc-user
6da28a1845 added MDT-elements (by a.funke) and some cleanup of elements 2021-02-01 02:51:35 +01:00
Lars Biskupek
4ade6f3227 MantisBT Issue #219 solved
Translation for "Formater en tant que liste de materiel" added.
2021-01-31 14:42:59 +01:00
Lars Biskupek
507841208d Updated German language file qet_de.qm 2021-01-31 07:53:15 +01:00
dlee99
762a9e3718 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2021-01-31 00:25:56 +01:00
joshua
b1a7f2e26c Minor : Text of folio report is now set as "label" 2021-01-30 19:44:18 +01:00
joshua
e3db2bc898 QetElementEditor : rewrite gui with ui file 2021-01-30 19:34:21 +01:00
artgg7300
85fa9245a4 translated hungarian element names 2021-01-30 18:33:13 +01:00
artgg7300
4df313cbeb translated hungarian lang files 2021-01-30 16:49:50 +01:00
Laurent Trinques
f62feaef94 Update *ts files 2021-01-30 15:20:57 +01:00
Laurent Trinques
ad340cf95a Minor 2021-01-30 15:16:43 +01:00
Laurent Trinques
692bf0ed72 Replace the flag of the Arab country 2021-01-30 15:05:56 +01:00
pavelfric
3aceb436be Updated Czech translations of elements. 2021-01-30 11:43:02 +01:00
pavelfric
330299e9df Updated Czech translations of elements. 2021-01-30 11:17:13 +01:00
Lars Biskupek
eefa4de8f8 Updated German translation qet_de.ts
Translation for 'Mongol' and 'Modifier les informations de plusieurs éléments' added.
2021-01-30 07:14:58 +01:00
pavelfric
1d28f29c07 Updated Czech translations of elements. 2021-01-29 20:15:31 +01:00
artgg7300
5abf93dd8d translated hungarian lang files 2021-01-29 19:48:49 +01:00
Laurent Trinques
07a6dd887e Update translations_stat.pl files 2021-01-29 18:27:18 +01:00
Laurent Trinques
4a63aca8cd Update translation en fr 2021-01-29 17:40:54 +01:00
Laurent Trinques
3c278bbbfb Update *ts files 2021-01-29 17:36:40 +01:00
Laurent Trinques
d333b6a188 Prepare to add new country Mongolian switch 2021-01-29 17:12:44 +01:00
Laurent Trinques
f235022c44 Update Mongolian translation, thanks Nathalie 2021-01-29 16:22:55 +01:00
artgg7300
750f60f571 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2021-01-28 20:10:21 +01:00
artgg7300
1558d0c00a translated hungarian element names 2021-01-28 20:07:22 +01:00
joshua
aa66eabe7c Fix bug 221
https://qelectrotech.org/bugtracker/view.php?id=221
2021-01-28 19:25:42 +01:00
joshua
20cd0366eb Update typo 2021-01-28 19:14:26 +01:00
pavelfric
ec63d7a1cb Updated Czech translations of elements. 2021-01-28 17:37:51 +01:00
plc-user
fdd617f9a5 added german translations for elements 2021-01-24 20:33:39 +01:00
plc-user
3e9c17030c added german translations for elements 2021-01-24 20:33:39 +01:00
artgg7300
8c07daaf8e translated hungarian element names 2021-01-24 07:31:06 +01:00
artgg7300
3cf178d056 translated hungarian element names 2021-01-24 06:58:26 +01:00
plc-user
842fa28390 corrected filenames and added german translations 2021-01-24 04:26:57 +01:00
plc-user
5041fa9ccc some german translations for elements 2021-01-24 04:26:57 +01:00
plc-user
2ce0205d94 some german translations in "qet_directory" 2021-01-24 04:26:57 +01:00
Simon De Backer
b64086fbcd Fix add project_title on save
see
https://qelectrotech.org/forum/viewtopic.php?pid=14160
2021-01-23 21:57:56 +01:00
artgg7300
4c075ed551 Translated hungarian element names 2021-01-23 06:42:22 +01:00
artgg7300
51087551c9 little modif for elements directory 2021-01-22 06:01:05 +01:00
joshua
bb82a616de Minor fix : widget lose focus each time user tip
Each time a QUndoCommand is pushed to a QUndoStack, the current focused
widget lose focus.
So each time user change a value in a widget (for exemple a QSpinBox)
the widget lose focus and user will have to click again in the widget to
gain focus and continue to edit.
The workaround is to call the method focus of the current widget each
time we push a undo command
2021-01-21 19:35:38 +01:00
pavelfric
da1fda6b03 Updated Czech translations of elements. 2021-01-20 22:40:13 +01:00
pavelfric
7d9926ccfc Updated Czech translations of elements. 2021-01-20 22:37:11 +01:00
pavelfric
dd4c016b46 Updated Czech translations of elements. 2021-01-20 22:25:53 +01:00
plc-user
c954f204ac some bugfixing and some new elements 2021-01-19 16:12:46 +01:00
artgg7300
743557b604 translated hungarian files little mod 2021-01-18 21:00:02 +01:00
pavelfric
4fc7c1abd9 Updated Czech translations of elements. 2021-01-18 19:38:02 +01:00
plc-user
48fa67fc3d renamed element-directories 2021-01-18 05:33:35 +01:00
artgg7300
7fe26b5d1c translated hungarian element names 2021-01-17 19:33:39 +01:00
pavelfric
f726397038 Updated Czech translations of elements. 2021-01-17 18:06:28 +01:00
pavelfric
c78685e95f Updated Czech translations of elements. 2021-01-17 18:01:21 +01:00
pavelfric
ef5b17be6e Updated Czech translations of elements. 2021-01-17 09:32:54 +01:00
pavelfric
47d5862ab0 Updated Czech translations of elements. 2021-01-17 08:57:18 +01:00
pavelfric
30b733febe Updated Czech translations of elements. 2021-01-16 23:37:21 +01:00
pavelfric
61d7eb966c Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2021-01-16 22:17:35 +01:00
pavelfric
838003a25c Updated Czech translations of elements. 2021-01-16 22:16:51 +01:00
gleissonjoaquim3
753de5445b Added PT_BR translations of qet_directory 2021-01-16 21:57:22 +01:00
pavelfric
37fed57470 Updated Czech translations of elements. 2021-01-16 10:29:05 +01:00
pavelfric
bc2e91a271 Updated Czech translations of elements. 2021-01-16 10:16:26 +01:00
pavelfric
46b262243f Updated Czech translations of elements. 2021-01-15 18:57:08 +01:00
pavelfric
9281230ed7 Updated Czech translations of elements. 2021-01-15 18:45:19 +01:00
artgg7300
8111508090 translated hungarian element names 2021-01-14 20:40:34 +01:00
artgg7300
0deb58a3ff translated hungarian element names 2021-01-14 18:01:16 +01:00
pavelfric
4c356cd67a Updated Czech translations of elements. 2021-01-14 10:03:26 +01:00
pavelfric
c6af279b36 Updated Czech translations of group name. 2021-01-13 21:55:56 +01:00
pavelfric
e0353d0657 Update of Czech translation.Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2021-01-13 21:33:55 +01:00
pavelfric
6fcb0fec08 Updated Czech translations of elements. 2021-01-13 21:25:24 +01:00
artgg7300
3c26b1dfdb updated hungarian element names 2021-01-13 20:36:44 +01:00
pavelfric
d783ec66f5 Updated Czech translations of elements. 2021-01-13 20:11:20 +01:00
artgg7300
02b51ee4fa second attempt to commit translated hungarian element names 2021-01-13 06:10:39 +01:00
pavelfric
cf4d0dd2eb Updated Czech translations of elements. 2021-01-12 19:23:21 +01:00
Laurent Trinques
e8c2c29617 Revert "translated element names on hungarian lang"
This reverts commit 5f7f00f7aed1e4bca3bad4265a88a29c7bbe7a78.
2021-01-12 10:31:14 +01:00
artgg7300
ee7004a7d1 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2021-01-11 21:45:34 +01:00
pavelfric
2c046975f3 Updated Czech translations of elements. 2021-01-11 21:39:27 +01:00
artgg7300
5f7f00f7ae translated element names on hungarian lang 2021-01-11 21:37:38 +01:00
pavelfric
577a7564dc Updated Czech translations of elements. 2021-01-10 20:21:45 +01:00
pavelfric
f54cd3ef7f Updated Czech translations of elements. 2021-01-10 18:24:57 +01:00
pavelfric
d7fdf188bf Updated Czech translations of elements. 2021-01-10 14:28:45 +01:00
Laurent Trinques
147137b24b Add new symbols, thanks gabor 2021-01-10 11:36:58 +01:00
joshua
4f455a5328 General configuration page : set 'appearance' as default tab 2021-01-08 18:26:55 +01:00
gleissonjoaquim3
a0b5feba08 Minor fixes in PT_BR translation 2021-01-08 05:55:34 +01:00
pavelfric
8c729b4732 Updated Czech translations of elements. 2021-01-07 21:29:20 +01:00
joshua
0a616088ea Dynamic text field editor : move kcolorbutton from ui file to cpp file
Kcolorbutton is not available in Qt6 for now.
We move it from the ui file to the cpp file for choose at compilation if
qet must use kcolorbutton or not.
2021-01-07 18:56:25 +01:00
pavelfric
58b7097748 Updated Czech translations of elements. 2021-01-06 20:35:44 +01:00
pavelfric
966a08f50f Updated Czech translations of elements. 2021-01-05 22:14:49 +01:00
Simon De Backer
2000b6cd2b Update Cmake and disable fail to compile if it uses deprecated APIs. 2021-01-04 20:38:57 +01:00
Simon De Backer
d3093f495b Revert "Mod DynamicTextFieldEditor"
This reverts commit f6d777e2f76b0136670923f5b79b3bd22f30ca6e.

it is preferable to keep the gui in the ui file
QT6 will have to wait.
2021-01-04 20:37:17 +01:00
pavelfric
55dfec41c3 Updated Czech translations of elements. 2021-01-04 18:25:24 +01:00
joshua
34baceb8da Fix bug 175
When use a "dark" Qt theme, some part of element are drawn white/gray
instead of black.
2021-01-03 23:30:48 +01:00
pavelfric
ade79b467a Updated Czech translations of elements. 2021-01-03 22:52:18 +01:00
plc-user
948915a47e further bug-fixing 2021-01-03 21:38:59 +01:00
plc-user
ba693420f3 some new elements 2021-01-03 15:22:54 +01:00
plc-user
63b43421a7 some bugfixing and optimizing of elements 2021-01-03 15:22:54 +01:00
joshua
0a8376c189 Fix bug 220
see https://qelectrotech.org/bugtracker/view.php?id=220
2021-01-02 20:11:47 +01:00
Simon De Backer
bf9123f9b5 Fix xml in Element (Catch from QElectroTech_Element_Updater)
I don't know how this could have happened, but it happened.
2021-01-01 15:28:41 +01:00
Laurent Trinques
20f9475a6e Update symbols 2021-01-01 14:42:46 +01:00
pavelfric
1badeceed4 Updated Czech translations of elements. 2021-01-01 13:41:50 +01:00
Laurent Trinques
344d898461 Add symbols 2021-01-01 13:13:44 +01:00
pavelfric
5730559ed0 Updated Czech elements translations. 2020-12-31 14:19:52 +01:00
plc-user
74342cb00d added manufacturer- and designation-info also to front-views 2020-12-22 09:53:32 +01:00
plc-user
c5fd14794f re-organized directory, added manufacturer- and designation-info and added some new elements 2020-12-22 09:53:32 +01:00
sdeffaux
401a5010be reorganized folder 2020-12-21 11:23:16 +01:00
sdeffaux
c8adffb696 Add symbols 2020-12-21 11:23:16 +01:00
Simon De Backer
0cc3099908 Mod TextEditor
the ui file is written in the TextEditor class
    Add switch for KF5 (QT6)
2020-12-18 17:39:00 +01:00
Simon De Backer
2e543dd1f7 Add create translation .ts file on Cmake 2020-12-18 17:05:41 +01:00
joshua
af3772b95a Element view : fix drag view 2020-12-17 23:39:35 +01:00
joshua
546db38683 Fix fail to build 2020-12-17 23:39:04 +01:00
Simon De Backer
404ae4fffc Add Cmake ui files in sdk 2020-12-17 21:43:23 +01:00
Simon De Backer
f6d777e2f7 Mod DynamicTextFieldEditor
the ui file is written in the Dynamic Text Field Editor class
Add switch for KF5 (QT6)
2020-12-17 21:42:18 +01:00
Simon De Backer
cb37c1c2fe Add switch for KF5 (QT6) and Mod Cmake
if we want to test QET on QT6, KF5 must be removed from the code,
this switch is for that,

this is for testing only
2020-12-16 23:06:08 +01:00
Simon De Backer
13db08ad56 Mod hoto_update_cmake_message 2020-12-15 21:30:25 +01:00
Simon De Backer
7fc9d06eef Fix Cmake translation files dir 2020-12-14 21:30:40 +01:00
Simon De Backer
842b39d68b Fix som Cmake PATH 2020-12-13 20:57:10 +01:00
Simon De Backer
8fb1cd0fa7 Add __FILE__ __LINE__ __FUNCTION__ to failed to load desired_language
qInstallMessageHandler(myMessageOutput);// for debugging
is only called later,so we have to get the info manually
2020-12-13 16:26:33 +01:00
Simon De Backer
2fc7f594cc Add Cmake files 2020-12-13 15:44:01 +01:00
Simon De Backer
c46caaf6e4 Fix Cmake dubbe
see cmake/define_definitions.cmake
2020-12-13 00:47:09 +01:00
Simon De Backer
c88d1ef6bb Refactoring Cmake
cleaning up the Cmake code
2020-12-13 00:40:43 +01:00
Simon De Backer
d2fb0d8ad1 Fix stop the run autotests of kcoreaddons
see
https://invent.kde.org/frameworks/kcoreaddons/-/blob/master/CMakeLists.txt#L98

issue:
CMake Error at /usr/share/ECM/modules/ECMAddTests.cmake:89 (add_executable):
  Cannot find source file:
see
https://qelectrotech.org/forum/viewtopic.php?pid=13929#p13929
2020-12-11 23:57:17 +01:00
Simon De Backer
0207390ced Revert "Remove all qm files"
This reverts commit c2acbc88ed06e6ff14bde199ffda1d2084de8112.

i will have to find another way for cmake
2020-12-11 23:43:15 +01:00
Simon De Backer
ce5cc25186 Fix stop the run autotests of kcoreaddons
see
https://invent.kde.org/frameworks/kcoreaddons/-/blob/master/CMakeLists.txt#L98

issue:
CMake Error at /usr/share/ECM/modules/ECMAddTests.cmake:89 (add_executable):
  Cannot find source file:
see
https://qelectrotech.org/forum/viewtopic.php?pid=13929#p13929
2020-12-11 22:41:30 +01:00
Simon De Backer
74b112a4bb Mod KF5 v5.76.0 => v5.70.0
see https://qelectrotech.org/forum/viewtopic.php?pid=13924#p13924
2020-12-11 18:05:21 +01:00
Simon De Backer
c2acbc88ed Remove all qm files
why:
they are created at compile time,
but the existing ones in src dir prevent the ones created in the buid dir
=> no qm files are shipped
2020-12-11 17:41:10 +01:00
Simon De Backer
6ec9a04fda Fix translation in Cmake 2020-12-11 17:29:05 +01:00
Simon De Backer
35ad994471 Mod more Cmake 2020-12-11 16:17:15 +01:00
Simon De Backer
83d802adf7 Mod Cmake first working build 2020-12-11 14:55:11 +01:00
Simon De Backer
aacbe57d51 Mod Pro file to close the gap with Cmake 2020-12-11 08:08:12 +01:00
Simon De Backer
62b71c0ba5 Fix more Cmake + Mod pragma message 2020-12-11 00:45:43 +01:00
Simon De Backer
eb49977c75 Fix som Cmake (add_definitions)
add_definitions(-DGIT_COMMIT_SHA=${GIT_COMMIT_SHA})
-DGIT_COMMIT_SHA=GIT_COMMIT_SHA
2020-12-11 00:16:49 +01:00
Simon De Backer
6da9c58458 Wip Fix preprocessor on Cmake 2020-12-10 21:19:45 +01:00
Simon De Backer
234f468f15 Fix GIT_COMMIT_SHA in Cmake 2020-12-10 21:18:42 +01:00
Simon De Backer
ed938c82cd Mod Cmake 2020-12-10 19:03:36 +01:00
Simon De Backer
6aa30d5f57 Add QPointF code did not build 2020-12-10 18:52:20 +01:00
Simon De Backer
d15443cf93 Wip Fix preprocessor on Cmake 2020-12-10 18:49:35 +01:00
Simon De Backer
3fe0adc66e QT6 QChar and int build error remove code for QT 6 or later!
this will have to be restored later.
2020-12-10 16:12:04 +01:00
Simon De Backer
d0c129478e Mod Cmake en preprocessor 2020-12-10 00:08:26 +01:00
Simon De Backer
4de9c1d922 Add Test google mock
for imitating QET on tests (a file, a netwerk link, ...)
2020-12-09 10:48:38 +01:00
Simon De Backer
d89d1088a3 Cmake for UI files auto link
this is one of the errors:
the ui files must be linked and changed to h files
so the h files found in the code by preprocessor
2020-12-09 10:40:12 +01:00
Simon De Backer
6556fbaf38 Add QT test to tests 2020-12-08 21:00:43 +01:00
Simon De Backer
c83388c1d5 Add Test files 2020-12-08 20:44:50 +01:00
Simon De Backer
10c4c3d528 Wip Fix preprocessor on Cmake 2020-12-08 19:57:35 +01:00
Simon De Backer
1871b7ad12 Add more Cmake 2020-12-08 15:20:48 +01:00
Simon De Backer
6cd6efaca9 Add Catch2 and Google Test on Cmake
ToDo:
- Add compiling QElectroTech on Cmake (help needed)
- more Tests?
   - Qt Test
   - Boost Test

to test
run qtcreator
File >  open => CMakeLists.txt
2020-12-08 12:18:20 +01:00
plc-user
b70775bc84 added elements to WAGO and corrected typo 2020-12-07 10:15:17 +01:00
Simon De Backer
cffec76018 Fix warning: implicit conversion from 'int' to 'float'
changes value from 2147483647 to 2147483648
/* The largest number rand will return (same as INT_MAX).  */
#define	RAND_MAX	2147483647

(static_cast<float>(quint32) / int * 8)
why cast an int to a float to then divide by an int?

just divide the int by an int.
2020-12-05 08:24:35 +01:00
Lars Biskupek
ebe22f1131 Update qet_de.ts
Translation string for "Tension / Protocole" set from unfinished to translated.
2020-12-05 03:56:55 +01:00
Lars Biskupek
f3888be8a6 Updated somne elements I created earlier 2020-12-05 03:56:55 +01:00
Simon De Backer
53aaa03967 fix QT DEPRECATED VERSION 5.15.2 and QT6
-QPrinter
2020-12-04 22:46:11 +01:00
Claveau Joshua
b22741732b Minor fix : folio-report information 'tension_protocol' isn't displayed
When a folio report have a text item witch must display the information
'tension protocol' the text is empty.
Replace the string 'tension/protocol' by 'tension_protocol' in
QETInformation namespace.
Move the static QStrings of the namespace QETInformation from
qetinformation.cpp to qetinformation.h to be use everywhere in the code.
2020-12-04 21:07:42 +01:00
Simon De Backer
77e6248ac9 fix QT DEPRECATED VERSION 5.15.2 and QT6
-QPrinter
2020-12-04 18:15:37 +01:00
Simon De Backer
ccd76f902d fix QT DEPRECATED VERSION 5.15.2
-Qt::MidButton
2020-12-04 18:13:48 +01:00
Lars Biskupek
945b690430 Update of German Language File 2020-12-03 18:02:15 +01:00
Claveau Joshua
0f86685ebe Remove duplicated elements 2020-12-02 20:04:01 +01:00
Claveau Joshua
862f311f5a Remove duplicated elements 2020-12-02 19:07:58 +01:00
Claveau Joshua
abc6b35d4c Remove duplicated elements 2020-12-02 18:57:08 +01:00
Claveau Joshua
ada563719b Minor fix 2020-12-02 18:47:28 +01:00
Laurent Trinques
ed455609d5 Add new symbols, thanks Mario 2020-12-02 14:27:27 +01:00
Laurent Trinques
2f004c271f Update displayed version to release candidate 2020-12-01 15:45:48 +01:00
gleissonjoaquim3
bafe7a39db Fixed spelling error on Translation PT_BR 2020-12-01 07:44:47 +01:00
gleissonjoaquim3
0b1e012a32 Updated translation PT_BR 2020-12-01 07:44:47 +01:00
Claveau Joshua
e0a03e7353 Remove duplicated elements 2020-11-29 12:49:04 +01:00
Claveau Joshua
68215d099c Remove duplicated elements 2020-11-29 12:37:56 +01:00
Claveau Joshua
3b472591b6 Remove duplicated elements 2020-11-29 11:59:20 +01:00
Claveau Joshua
d3cb7ef08c Remove duplicated elements 2020-11-29 11:51:16 +01:00
Claveau Joshua
049848737b Remove duplicated elements 2020-11-29 11:44:02 +01:00
Claveau Joshua
d3348e25be Remove duplicated elements 2020-11-29 11:06:06 +01:00
Claveau Joshua
764cdfea53 Remove duplicated elements 2020-11-29 11:00:04 +01:00
Claveau Joshua
b149e3e6ca Remove duplicated element 2020-11-29 10:55:36 +01:00
Claveau Joshua
7313cdfa9e Remove duplicated elements (hager)
All elements are duplicated and standardised
2020-11-29 10:47:58 +01:00
Claveau Joshua
fd92c1ce92 Remove duplicated elements. 2020-11-28 17:20:33 +01:00
Ole Carlsen
0ac96eecfc Danish update color scheme 2020-11-22 14:29:20 +01:00
Lars Biskupek
d02b88488a German translation updated
Two new strings in qet_de.ts translated.
qet_de.qm generated.
2020-11-22 13:39:49 +01:00
Ole Carlsen
87956d8d42 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-11-22 12:22:52 +01:00
Ole Carlsen
ab1027eb5d Danish translation 2020-11-22 12:20:58 +01:00
Claveau Joshua
aa858ba32d project database : minor 2020-11-22 12:16:17 +01:00
Claveau Joshua
a303a38d0d ProjectDatabase improvement
Use transaction / commit when several elements was changed instead of
update one by one each element.
2020-11-22 11:31:43 +01:00
artgg7300
51bae7cdf1 translated hungarian files 2020-11-22 07:58:18 +01:00
dlee99
05dad2c8d8 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-11-21 20:08:57 +01:00
Laurent Trinques
b457b98b22 Update *TS file 2020-11-21 11:35:08 +01:00
Claveau Joshua
8fec6dabef Dynamic element text item new feature
Add feature keep visual rotation.
When parent is rotated, the text rotation is changed to keep the same
visual rotation.
2020-11-20 20:52:19 +01:00
plc-user
f7e12e5e87 modified / added german translations and added some Elements 2020-11-20 14:56:00 +01:00
plc-user
689799ea24 modified / added german translations and added some Elements 2020-11-20 14:56:00 +01:00
Claveau Joshua
380de0b4c3 Search and replace widget : minor improvement
Fix 1 : when widget is reloaded the categories is not checked, but the
child items is. Now  all category is checked when reloaded.
Fix 2 : the folio number displayed in the widget is wrong (start at 0
instead of 1)
2020-11-17 22:25:01 +01:00
plc-user
3633123d17 changed/added some translations in qet_directory - files and elements 2020-11-17 21:43:10 +01:00
Lars Biskupek
66d45cc835 German language files updated
Translation of new items added
2020-11-17 21:41:31 +01:00
dlee99
56710ef25c modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-11-17 21:19:15 +01:00
aitolos
77479dc949 Greek lang update 2020-11-17 17:43:34 +02:00
artgg7300
529c6a721a updated hungarian files 2020-11-17 05:32:27 +01:00
Laurent Trinques
fd3d2dfb90 Update *TS files 2020-11-16 21:59:28 +01:00
Lars Biskupek
d1aba1118b Update of language files DE, EN, IT
Update of german language file and some minor changes on the english language file.
Update of italian language to solve issue #0000193 on Bugtracker, issued by rpaolo538.
2020-11-16 10:10:27 +01:00
Simon De Backer
c4fe1fe3da Merge branch 'master' of ssh://debacker@git.tuxfamily.org/gitroot/qet/qet.git 2020-11-15 20:47:09 +01:00
Simon De Backer
c167015b22 Add Todo for qet_tb_generator 2020-11-15 20:46:37 +01:00
plc-user
48e597663e adjusting/correcting some item-numbers and adding some elements 2020-11-15 20:15:28 +01:00
plc-user
bd26e4bb9c adjusting/correcting some item-numbers and adding some elements 2020-11-15 20:15:28 +01:00
Simon De Backer
f7a445c0a7 Add Todo for DXF to GET-2020 2020-11-15 18:29:19 +01:00
Claveau Joshua
bb32c30004 Search and replace widget improvement
Add a popup menu to select the elements, conductors and texts of the
current selected diagram in the tree widget.
2020-11-15 17:19:42 +01:00
Claveau Joshua
79fa9c8ec5 improve qetinformation file 2020-11-15 12:19:37 +01:00
Claveau Joshua
a73d50d7d0 Fix wrong text 2020-11-15 11:49:24 +01:00
Claveau Joshua
af7d1df5ab Replace function by another one.
Replace function QETApp::elementInfoKeys() and
QETApp::elementInfoToVar(const QString &info) by function provided by
QETInformation.
2020-11-14 19:09:40 +01:00
Simon De Backer
c87fe8df2f Merge branch 'dev_submodule'
this sets the stage for submodules
submodules are not used at this time
2020-11-13 18:59:36 +01:00
Simon De Backer
f613f7fcdc Mod git pull
this works for git pull since Git 2.15
2020-11-13 18:51:30 +01:00
Laurent Trinques
20911f215b Update de translations, thanks Lars 2020-11-13 08:30:27 +01:00
Laurent Trinques
b557aa0e98 Add and refresh Wago WAGO_Kontakttechnik directory, thanks Plc-user 2020-11-12 19:06:22 +01:00
Laurent Trinques
6b89349240 Minor: move lt4301tadac.elmt to pro-face directory 2020-11-12 13:29:04 +01:00
Laurent Trinques
6b54e45e3a Add Pro face element, thanks Fury 2020-11-12 09:33:13 +01:00
Laurent Trinques
fec3c70739 Add new Legrand Optimum & Netatmo element, thanks Arnaud 2020-11-11 10:12:14 +01:00
Ole Carlsen
a028724773 Danish update 2020-11-09 20:51:43 +01:00
Claveau Joshua
49b2e4ad0a Replace function by another one
Replace QETApp::diagramInfoKeys() by QETInformation::diagramInfoKeys()
and QETApp::diagramTranslatedInfoKey(str) by
QETInformation::translatedInfoKey(str)
2020-11-08 20:23:16 +01:00
Claveau Joshua
81efc5181b Minor replace function by another one
Replace QETApp::conductorInfoKeys() and
QETApp::conductorTranslatedInfoKey(const QString &key) by
QETInformation::conductorInfoKeys() and
QETInformation::translatedInfoKey
2020-11-08 19:44:21 +01:00
Claveau Joshua
6f60156e00 Change function QETApp::elementTranslatedInfoKey
Use the function QETInformation::translatedInfoKey(const QString &info)
instead of QETApp::elementTranslatedInfoKey(const QString &info).

The final goal is to remove all information from the QETApp and use
instea QETInformation who is dedicated to this
2020-11-08 19:16:02 +01:00
Claveau Joshua
7882c5734a Minor : fix little regression about folio report and displayed information 2020-11-08 19:05:11 +01:00
Simon De Backer
0bfbc37bc9 Add git submodule instruction 2020-11-07 22:38:28 +01:00
Simon De Backer
e3b98001f3 Fix indentation restored 2020-11-07 22:19:54 +01:00
Simon De Backer
d1c969b723 Purge old comment 2020-11-07 22:18:53 +01:00
Simon De Backer
acf9c17969 Add packaging script's
info of packaging_script Debian, Ubuntu, Windows
https://qelectrotech.org/wiki_new/doc/packaging_debian#packaging_script_debian_ubuntu_windows

Laurent,
can you check the scripts if they work now,
I'll then change them to scripts that can handle git Submodules
2020-11-07 18:38:35 +01:00
artgg7300
862dbede24 updated hungarian files 2020-11-07 09:56:33 +01:00
dlee99
be3421f8c9 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-11-06 20:08:46 +01:00
Laurent Trinques
4ad4e75132 Update TS files and update it translation, thanks Marco 2020-11-06 08:01:14 +01:00
pavelfric
d2c4bf4ec7 Updated Czech translation. 2020-11-02 22:05:38 +01:00
pavelfric
a97ee8ddba Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-11-02 22:04:40 +01:00
Claveau Joshua
ca0dcc9b7b Fix crash 2020-11-02 19:31:52 +01:00
Claveau Joshua
62333506f1 Improve update of the project database 2020-11-02 19:13:56 +01:00
Ole Carlsen
98de247a4d Minor danish translation update 2020-11-02 18:47:53 +01:00
Claveau Joshua
a0efad18ab Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet into master 2020-11-01 21:28:06 +01:00
Claveau Joshua
b514c39883 Improve update of the project database 2020-11-01 21:27:40 +01:00
Simon De Backer
859bf7f645 Mod clazy checks range-loop
you're using C++11 range-loops with non-const Qt containers
(potential detach).

adding missing &
2020-11-01 19:10:30 +01:00
Simon De Backer
1b10fe3b7f Mod container-anti-pattern
Finds when temporary containers are being created needlessly.
These cases are usually easy to fix by using iterators,
avoiding memory allocations.

And mod to return on first true

can we test if the Elements collection reload faster or not?
2020-11-01 18:44:14 +01:00
Simon De Backer
41c7cde8ca Mod overlapping comparisons
warning: overlapping comparisons always evaluate to true

valid for a project made before 0.7
probably it will be better to delete the code completely.
2020-11-01 18:11:55 +01:00
Simon De Backer
69adb10bcc Add clang-format file (WIP) 2020-11-01 16:57:19 +01:00
pavelfric
239a7daf7f Updated Czech translation. 2020-11-01 15:20:39 +01:00
pavelfric
f73f71c0aa Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-11-01 15:16:13 +01:00
Laurent Trinques
23764c0e11 Update be-nl translations, thanks Ronny 2020-11-01 11:40:17 +01:00
Laurent Trinques
beec556a55 Update qet_en.qm 2020-11-01 07:10:46 +01:00
M. Buijs
3a0da97878 Update qet_en.ts
The first letter of the word needs to be in upper case to align with the rest of the menu.
2020-11-01 07:09:11 +01:00
pavelfric
2afac1e56d Updated Czech translation. 2020-10-31 22:20:13 +01:00
Claveau Joshua
72271cfc69 Improve format of save date
3 formats : local, eu (dd mm yyyy) and us (yyyy mm dd)
2020-10-31 14:22:06 +01:00
Simon De Backer
24c930d727 Mod raw Pointer to QScopedPointer
Clang-Tidy and Clazy said
"drag" leaks memory
2020-10-30 21:07:12 +01:00
Simon De Backer
87845ef0ee Add failed to load message of languages on log file
compiler complained about non return value of
bool QTranslator::load
2020-10-29 20:41:24 +01:00
Ole Carlsen
8c51725c71 Danish translation update 2020-10-29 17:19:29 +01:00
Laurent Trinques
dbf4315deb Update de translation, thanks Lars 2020-10-29 02:10:05 +01:00
Laurent Trinques
099dc614bd Update en qm 2020-10-28 10:57:12 +01:00
M. Buijs
96450ce19f Update qet_en.ts
Small language updates
2020-10-27 23:56:20 +01:00
dlee99
1d606c574b modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-10-27 21:46:54 +01:00
Claveau Joshua
8ba982f6cc improve code readability 2020-10-27 21:05:29 +01:00
Claveau Joshua
329ceb4594 Bug fix : directory of embedded element collection is not translated
Bug introduced at commit 995066916b5f1c697abc70821750d8ae2364a3b7
2020-10-27 20:49:16 +01:00
Laurent Trinques
50de125787 Update en translations 2020-10-27 12:07:44 +01:00
M. Buijs
2839a4009c Update qet_en.ts
Added missing translation
2020-10-27 12:07:01 +01:00
Simon De Backer
6bfb2b95d2 QT6: QStringref replaced to QStringView in QT6
as a result this additional instruction is required
2020-10-26 23:01:45 +01:00
sdeffaux
0dba97ef6a Add symbols and fix bux 193 2020-10-26 21:23:33 +01:00
Simon De Backer
c5c3dfb07b Mod Maximum Size of configureQET widget 2020-10-25 12:24:43 +01:00
sdeffaux
1c91a6300a Add symbols 2020-10-24 20:31:45 +02:00
Claveau Joshua
b1eb59f3ea Improve previous comit 2020-10-22 21:07:41 +02:00
Laurent Trinques
cb29a4d383 Fix date on summary pages 2020-10-22 18:28:52 +02:00
artgg7300
077c4f578a translated hungarian files 2020-10-21 18:24:05 +02:00
Martin Marmsoler
b32a295b0c fix issue when creating xml document 2020-10-20 12:01:55 +02:00
Martin Marmsoler
6251862f7a default color was wrong 2020-10-20 08:54:56 +02:00
Martin Marmsoler
793770a72a initialize TerminalData with nullpoint to not having an invalid value 2020-10-20 08:54:56 +02:00
Martin Marmsoler
aba16dc936 remove not needed variable 2020-10-20 08:54:56 +02:00
Martin Marmsoler
e5b8ba7e22 fix problems in partrectangle 2020-10-20 08:54:56 +02:00
Simon De Backer
dad32d5897 Add destructor to Machine_info class to fix segfault 2020-10-20 08:54:56 +02:00
Martin Marmsoler
9658a88c18 fix compile issues 2020-10-20 08:54:56 +02:00
Martin Marmsoler
12e301b887 replace 4 spaces by a tab 2020-10-20 08:54:56 +02:00
Martin Marmsoler
f3097fc537 rebase XMLProperties_New (c0d9bf9) to master 2020-10-20 08:54:14 +02:00
Martin Marmsoler
73b394527d replace tabs by 4 spaces 2020-10-20 08:53:43 +02:00
aitolos
752f31513c Update Greek Lang 2020-10-19 18:29:29 +03:00
aitolos
756fc845a5 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-10-19 18:14:08 +03:00
aitolos
9d89719c21 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-10-19 18:12:26 +03:00
aitolos
785c5884e8 Update Greek Lang 2020-10-19 18:11:32 +03:00
Laurent Trinques
87425d70ce Update * TS files 2020-10-19 14:21:02 +02:00
Laurent Trinques
9c267d673d Fix %{saveddate} titleblock variable and
add new %{saveddate-eu} variable dd-MM-yyyy date format
2020-10-19 14:09:26 +02:00
Claveau Joshua
69f775aa0f Minor fix : can't move diagram to top from element panel widget 2020-10-18 11:50:04 +02:00
Ole Carlsen
2619d96998 Danish translation updated 2020-10-18 11:03:34 +02:00
Claveau Joshua
74ee2fd82c minor 2020-10-18 10:49:45 +02:00
Claveau Joshua
ec0b92ec1d Fix : Filling color is not apply to polyline. 2020-10-18 10:45:05 +02:00
artgg7300
a65675b53e translated hungarian files 2020-10-15 20:17:03 +02:00
Laurent Trinques
c39ef0a999 Update en fr translation 2020-10-15 18:54:08 +02:00
dlee99
ff84a71d97 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-10-14 23:15:59 +02:00
Laurent Trinques
434c3dfbfb Update TS files 2020-10-14 21:00:33 +02:00
Laurent Trinques
096f8f58e1 Updatre de translation, thanks Lars 2020-10-14 20:58:35 +02:00
Simon De Backer
364012848c Fix code style 2020-10-13 17:44:08 +02:00
Simon De Backer
106b17cf2f QT6: QMutex::RecursionMode are obsolete
The default is QMutex::NonRecursive.
https://doc-snapshots.qt.io/qt6-dev/qmutex-obsolete.html
2020-10-13 17:43:26 +02:00
Claveau Joshua
d3da5a98a5 Minor : disable button for QPageSetupDialog on windows 2020-10-12 21:20:40 +02:00
Claveau Joshua
9b0e659300 Remove unused class 2020-10-12 21:02:48 +02:00
pavelfric
30f8989e3d Updated Czech translation 2020-10-11 21:56:53 +02:00
Claveau Joshua
e878082b79 Fix bug 203
https://qelectrotech.org/bugtracker/view.php?id=203
Take advantage of this bugfix, to recode the widget with Qt designer.
2020-10-10 16:58:02 +02:00
Claveau Joshua
419585f97e Add new QAction : export to pdf 2020-10-10 14:37:23 +02:00
Claveau Joshua
44e945489a project print window : minor gui improvement 2020-10-10 12:12:50 +02:00
Claveau Joshua
b45c6b453e Minor fix : QetGraphicsTableItem keep his size when model is reseted or when open from xml. 2020-10-10 11:18:21 +02:00
Claveau Joshua
5d47ecd8f6 Fix : can't open print dialog on windows 2020-10-09 19:25:41 +02:00
Remi Collet
639ccb25e2 use pkgconfig for sqlite3 2020-10-09 08:37:27 +02:00
Simon De Backer
746c5a81e3 Merge branch 'master' of ssh://debacker@git.tuxfamily.org/gitroot/qet/qet.git into master 2020-10-08 16:17:15 +02:00
Simon De Backer
4e44b4bcd4 QT6: Fix : dragging view don't work 2020-10-08 16:16:59 +02:00
dlee99
04125dcc55 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-10-06 23:32:40 +02:00
artgg7300
d6f08696bc translated hungarian files 2020-10-06 06:19:03 +02:00
Claveau Joshua
9193e1c39b Fix : dragging view don't work 2020-10-04 16:03:09 +02:00
David Varley
941aaf7087 Fix build for Qt < 5.10 2020-10-04 20:51:07 +11:00
Simon De Backer
f5d2fc3916 Merge branch 'QT6' into master
initial release to Qt6

TODO:
 -remove KCoreAddons
 -remove KWidgetsAddons

* QT6: (24 commits)
  QT6: No Qt::AA_EnableHighDpiScaling in QT6
  QT6: TeDo mod QList for DeleteQGraphicsItemCommand
  QT6: Todo Fix QtConcurrent (remove KCoreAddons?)
  QT6: Todo QVariant::setValue
  QT6: std::min needs further tweaking
  QPrinting class needs further tweaking
  QT6: QStyleOptionGraphicsItem
  Add QActionGroup
  QT6: QStyleOptionGraphicsItem
  QT6: QLibraryInfo
  Totest QRegularExpression ok?
  QT6: QStyleOptionGraphicsItem
  QT6: QMouseEvent
  QT6: QDropEvent
  QT6: Fix deprecated QRegExp
  QT6: hooks added
  QT6: Mod unused function put in comments
  Add missing include QActionGroup
  QT6: set C++17
  QT6: diagramitemweight set val to Font::Weight
  ...
2020-10-03 16:18:03 +02:00
Simon De Backer
9f3c173b9f QT6: No Qt::AA_EnableHighDpiScaling in QT6 2020-10-03 16:08:55 +02:00
Simon De Backer
9a915c2ad0 QT6: TeDo mod QList for DeleteQGraphicsItemCommand 2020-10-03 16:07:55 +02:00
Simon De Backer
694cbfb1b7 QT6: Todo Fix QtConcurrent (remove KCoreAddons?) 2020-10-03 16:04:54 +02:00
Simon De Backer
f69e3a3fa7 QT6: Todo QVariant::setValue 2020-10-03 16:02:35 +02:00
Simon De Backer
8a5ba90d01 QT6: std::min needs further tweaking 2020-10-03 16:00:24 +02:00
Simon De Backer
32605e1377 QPrinting class needs further tweaking 2020-10-03 15:58:09 +02:00
Simon De Backer
0ab1b322d6 QT6: QStyleOptionGraphicsItem 2020-10-03 15:56:11 +02:00
Simon De Backer
a7920ea5fc Add QActionGroup 2020-10-03 15:54:38 +02:00
Simon De Backer
937a6d740b QT6: QStyleOptionGraphicsItem 2020-10-03 15:54:02 +02:00
Simon De Backer
a0b95ee944 QT6: QLibraryInfo 2020-10-03 15:51:53 +02:00
Simon De Backer
ad0df66ab1 Totest QRegularExpression ok? 2020-10-03 15:51:09 +02:00
Simon De Backer
c1e93fc442 QT6: QStyleOptionGraphicsItem 2020-10-03 15:48:40 +02:00
Simon De Backer
2e2a652343 QT6: QMouseEvent 2020-10-03 15:45:43 +02:00
Simon De Backer
074e2c8b2d QT6: QDropEvent 2020-10-03 15:42:58 +02:00
Simon De Backer
9034d8d791 QT6: Fix deprecated QRegExp 2020-10-03 15:40:32 +02:00
Simon De Backer
0b5091b606 QT6: hooks added 2020-10-03 12:04:35 +02:00
Simon De Backer
b339dc2812 QT6: Mod unused function put in comments 2020-10-03 12:03:44 +02:00
Simon De Backer
ce11610d1d Add missing include QActionGroup 2020-10-03 11:57:55 +02:00
Simon De Backer
10cc3cdbb7 QT6: set C++17 2020-10-03 11:57:55 +02:00
Simon De Backer
184560cc5d QT6: diagramitemweight set val to Font::Weight 2020-10-03 11:57:55 +02:00
Simon De Backer
0e10b4adfa QT6: QTextStream::setCodec use QTextStream::setEncoding 2020-10-03 11:57:54 +02:00
Simon De Backer
caac531de1 QT6: Mod QLibraryInfo::location use QLibraryInfo::path 2020-10-03 11:57:54 +02:00
Simon De Backer
bc0cb6b1b3 QT6: Mod Qt::MidButton Use Qt::MiddleButton 2020-10-03 11:57:54 +02:00
Simon De Backer
4f929ef3c9 QT6: Use the QByteArrayView overload. 2020-10-03 11:57:54 +02:00
Laurent Trinques
3b71cb7dfe Revert "macOS : disable project database export"
This reverts commit fbe1c05c7d6dc335e90b9864a80cb458cbced7de.
2020-10-03 07:06:05 +02:00
Laurent Trinques
fbe1c05c7d macOS : disable project database export 2020-10-03 06:39:33 +02:00
Claveau Joshua
6437bf212a Add macro to disable/enable project database export 2020-10-02 20:09:03 +02:00
Claveau Joshua
aa9266ab64 Minor : use Diagram::showMe() method instead of emit several signal to do the same thing 2020-10-02 19:41:17 +02:00
Claveau Joshua
8507040aa2 Improve how element editor is opened to edit an element in a diagram.
Before this commit :
ElementPropertiesWidget emit a signal of Diagram to edit an element, and
the signal goes up from Diagram -> DiagramView -> ProjectView ->
QetDiagramEditor and QetDiagramEditor call a static function.
Now :
ElementPropertiesWidget call the static function itself and that all.
All unnecessary signals are removed.
2020-10-02 19:28:52 +02:00
Claveau Joshua
e263264752 Minor : revamp code about shortcut for edit conductor color 2020-10-02 18:57:11 +02:00
Claveau Joshua
7038e6f796 Clean diagram view code 2020-10-02 18:38:24 +02:00
Claveau Joshua
e0201a8027 Remove old Backward compatibility: prior to version 0.3 2020-10-02 17:39:07 +02:00
Ole Carlsen
cbdbdd0ec6 Updated Danish translation 2020-10-02 16:37:17 +02:00
Claveau Joshua
9dda3e5997 Fix fail to build on windows 2020-10-01 19:29:09 +02:00
Laurent Trinques
94e29ef749 Fix installation-paths 2020-10-01 08:10:50 +02:00
Claveau Joshua
add11e7c7a Print preview dialog : Add selection by date.
Add two news option for select diagrams to print :
select "from the date :" and select "at the date".
2020-09-30 21:29:17 +02:00
Laurent Trinques
930bb70f99 Update *TS files 2020-09-30 13:14:13 +02:00
Laurent Trinques
78ecc53b89 Minor 2020-09-30 13:09:56 +02:00
Laurent Trinques
6eec588eb9 Fix typo 2020-09-30 13:04:45 +02:00
Laurent Trinques
1e0ca043e7 Fix typo in comments 2020-09-30 12:58:14 +02:00
Laurent Trinques
191eabd0a2 Flatak build: Fix the installation paths 2020-09-30 06:07:03 +02:00
Claveau Joshua
18f536d801 Revamp the print preview window 2020-09-29 22:54:09 +02:00
Ole Carlsen
7f698bd826 Danish translation updated 2020-09-28 20:33:39 +02:00
Maximilian Federle
0907830d67 snap: Fix whitespace in snapcraft.yaml 2020-09-27 12:44:08 +02:00
Laurent Trinques
35fb45c280 Flatpak refresh 0001-build-Fix-the-installation-paths.patch 2020-09-26 22:54:51 +02:00
Laurent Trinques
ea5ba0ecc8 DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 for Snap package
see :
https://snapcraft.io/qelectrotech/builds/1126332
2020-09-26 22:19:40 +02:00
Simon De Backer
f77255c762 Add position mouse cursor in DiagramView 2020-09-25 22:06:11 +02:00
Simon De Backer
546433cac2 WIP: Add Kabel to qet 2020-09-24 22:39:48 +02:00
Simon De Backer
30b8205f82 Mod some qWarning add QObject::tr 2020-09-24 22:39:11 +02:00
Simon De Backer
3b9ba6a261 WIP: Add Kabel to qet 2020-09-24 18:53:00 +02:00
Simon De Backer
36dbe65457 Add TODO compile var + Fix doxygen issue
You can make your code warn on compile time for the TODO's
In order to do so, uncomment the following line. in pro file
DEFINES += TODO_LIST
2020-09-24 17:01:33 +02:00
Laurent Trinques
65ba816859 Try to fix Snap package with sqite3 new depend 2020-09-24 12:19:30 +02:00
Simon De Backer
bfd487effe Fix QRegularExpression pattern 2020-09-23 23:11:33 +02:00
Simon De Backer
d9f38f8a5d Fix QRegularExpression
-add isValid
-add debug
2020-09-23 22:50:41 +02:00
Simon De Backer
2fe53ba6e8 Fix QRegularExpression
-add isValid
-add debug
2020-09-23 22:19:13 +02:00
Simon De Backer
b5ae1237e3 Fix QRegularExpression
-add isValid
-add debug
2020-09-23 21:36:48 +02:00
Simon De Backer
e0c8dd9585 Fix Revert deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users
This function was introduced in Qt 5

see https://qelectrotech.org/forum/viewtopic.php?pid=13406#p13406
2020-09-23 19:03:13 +02:00
artgg7300
86f7f98031 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-09-23 17:53:01 +02:00
artgg7300
c829a9eb2d updated hungarian files 2020-09-23 17:39:39 +02:00
Laurent Trinques
1cf48f62e9 Fix commit "Change the way how the database is exported to file" :
produce a fail to build on OSX
2020-09-23 11:25:46 +02:00
David Varley
6a47fcddc9 Merge branch 'dxf' 2020-09-23 07:50:42 +10:00
Simon De Backer
77321f6b70 Revert "Fix deprecated QRegExp"
This reverts commit 0a46b83dca7c4f26064a9b0101b9eeeddddaf4e3.
see https://qelectrotech.org/forum/viewtopic.php?pid=13378#p13378
2020-09-22 21:12:10 +02:00
David Varley
45137987ab DXF - remove a couple of debug messages 2020-09-22 19:47:02 +10:00
David Varley
2d6bef71ae DXF - Add some color 2020-09-22 19:41:47 +10:00
David Varley
bcc5846662 DXF - Cleaning up scaling 2020-09-22 12:16:32 +10:00
Simon De Backer
2a69e540d6 Fix Qt 6 definition of macro ‘Q_DECLARE_MOVABLE_CONTAINER’
adding #include <QHash>

+ code fail to compile if it uses deprecated APIs.
=> see .pro file
2020-09-21 21:19:50 +02:00
Simon De Backer
c958d54d01 Fix Qt 6 deprecated QDockWidget::AllDockWidgetFeatures
(Deprecated) The dock widget can be closed, moved, and floated.
Since new features might be added in future releases,
the look and behavior of dock widgets might change if you use this flag.
Please specify individual flags instead.
2020-09-21 21:16:05 +02:00
Simon De Backer
a917399950 Fix Qt 6 deprecated QComboBox::AdjustToMinimumContentsLength
Use
- QComboBox::AdjustToContents
- QComboBox::AdjustToContentsOnFirstShow
instead.
2020-09-21 20:42:40 +02:00
Simon De Backer
f671a63366 Fix Qt 6 deprecated QVBoxLayout::setMargin
Use QVBoxLayout::setContentsMargins instead.
2020-09-21 20:37:10 +02:00
Simon De Backer
c7ffae7918 Fix Qt 6 deprecated Qt::SystemLocaleShortDate
The format options
Qt::SystemLocaleDate, Qt::SystemLocaleShortDate
and Qt::SystemLocaleLongDate
shall be removed in Qt 6.
	Their use should be replaced with
QLocale::system().toString(date, QLocale::ShortFormat)
or
QLocale::system().toString(date, QLocale::LongFormat).
2020-09-21 20:23:20 +02:00
Laurent Trinques
f21cdb4040 Update de translation, thanks Lars 2020-09-21 07:11:42 +02:00
Claveau Joshua
89f9f47174 Remove unused code 2020-09-20 11:40:18 +02:00
Simon De Backer
24d4885093 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:13:18 +02:00
Simon De Backer
b7c8ae88e2 Fix code style 2020-09-19 01:13:13 +02:00
Simon De Backer
176dcd376b Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:13:09 +02:00
Simon De Backer
813014ec33 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:13:01 +02:00
Simon De Backer
4c54335301 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:54 +02:00
Simon De Backer
3eca82baad Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:46 +02:00
Simon De Backer
93055c6a96 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:38 +02:00
Simon De Backer
7fb4033ece Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:29 +02:00
Simon De Backer
0b3238aac0 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:20 +02:00
Simon De Backer
859f6dd06d Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:13 +02:00
Simon De Backer
432e80cecb Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:12:05 +02:00
Simon De Backer
46e96f0a67 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:54 +02:00
Simon De Backer
0ee8f4187b Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:46 +02:00
Simon De Backer
402d2fbf4a Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:37 +02:00
Simon De Backer
271fd096e2 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:28 +02:00
Simon De Backer
c5be1a98ba Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:17 +02:00
Simon De Backer
0a46b83dca Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:11:08 +02:00
Simon De Backer
c7f138a0e3 Fix deprecated QRegExp
Use QRegularExpression instead.

https://doc.qt.io/qt-5/qregularexpression.html#notes-for-qregexp-users

This function was introduced in Qt 5
2020-09-19 01:10:54 +02:00
Claveau Joshua
215ddbd878 Minor : minimize code 2020-09-18 11:48:11 +02:00
David Varley
4d7ece07ab DXF - Simplifying, WIP 2020-09-17 21:45:14 +10:00
Claveau Joshua
139241e773 Change the way how the database is exported to file
The export of internal database to file is now do by sqlite3 native
function instead of a dirty home made function.
For the moment, the export to file function is unavailable on macOSX (we
need some help to add sqlite3 lib on macOSX)
2020-09-16 21:28:47 +02:00
David Varley
07df62e362 DXF - Fix single shape rectangle scaling 2020-09-14 12:29:36 +10:00
David Varley
a68386c028 Merge branch 'cborn' of https://github.com/C-Born-Software/qelectrotech-source-mirror into cborn 2020-09-14 11:45:52 +10:00
Claveau Joshua
8e82dee8f0 Minor 2020-09-13 15:39:20 +02:00
Claveau Joshua
529027a350 Fix bug N°201: Line changes in the drawing area are not reflexted in the information area 2020-09-13 15:11:45 +02:00
Claveau Joshua
726b300999 Fix bug N°202 : Wrong bounding rect for primitive arc.
https://qelectrotech.org/bugtracker/view.php?id=202
2020-09-11 19:11:14 +02:00
Simon De Backer
989cd93a14 Remove old orientation for element Attribute in XML 2020-09-11 06:56:01 +02:00
David Varley
6b1d51bab8 DXF - Add Polylines, use for conductors and rectangles 2020-09-11 11:22:08 +10:00
David Varley
046d7c6b59 DXF - Add terminals to plot (optional) 2020-09-10 18:35:22 +10:00
David Varley
cd7f7eccec Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-09-10 00:18:39 +10:00
David Varley
45fb97f410 Start cborn branch - disable annoying startup warning 2020-09-10 00:16:03 +10:00
David Varley
d5d8181332 DXF - fine tune text item locations 2020-09-10 00:12:45 +10:00
Simon De Backer
0310cd2610 Revert "Add user warning on startup"
This reverts commit 87c957a06269153f8511c02597b63515a7843a91.
2020-09-08 17:53:37 +02:00
David Varley
713d467fe4 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-09-08 22:10:31 +10:00
David Varley
cc8d0da0ac DXF - Fix conductor number positioning, add junction dots 2020-09-08 21:44:58 +10:00
dlee99
c0ced6dc56 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet into master 2020-09-07 23:02:22 +02:00
dlee99
288c89daa7 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-09-07 23:00:49 +02:00
Simon De Backer
dce83f480c Add name to Terminal
now it is possible to enter the terminal name
2020-09-07 22:35:49 +02:00
Simon De Backer
5d92393ee7 Wrap code for better readability 2020-09-07 22:03:40 +02:00
Simon De Backer
8ee38fab9e Fix Coding convention
Please download and use
https://qelectrotech.org/wiki_new/_media/doc/qtcreator-qet-style.xml
when you write code in Qt
2020-09-07 21:41:45 +02:00
David Varley
babf3d2cf2 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-09-07 22:14:07 +10:00
Laurent Trinques
82c8fb2d01 Update en fr translation 2020-09-07 10:51:56 +02:00
David Varley
68b4705630 Tidy up som comments 2020-09-07 16:27:59 +10:00
David Varley
d062175da7 Add tables to dxf export 2020-09-07 16:16:33 +10:00
Laurent Trinques
561209bc94 Update *TS files 2020-09-06 23:54:59 +02:00
Simon De Backer
87808df6c3 Moved message to QString 2020-09-05 20:09:08 +02:00
Simon De Backer
87c957a062 Add user warning on startup
notify the user of the use of dev software

ToDo: the text still needs to be adjusted
2020-09-05 00:27:24 +02:00
Simon De Backer
610a44c7cd Removed some Q_UNUSED 2020-09-04 23:19:59 +02:00
Simon De Backer
1bc2536c06 Add documentation 2020-09-04 21:13:10 +02:00
Simon De Backer
1528e1ebe2 Add build git commit sha in log file 2020-09-04 21:10:43 +02:00
David Varley
f8611c1b6e DXF Border Numbering - fix offset 2020-09-04 22:41:59 +10:00
David Varley
71d7f8bbe6 Fix some DXF issues 2020-09-04 16:06:06 +10:00
Ole Carlsen
ec464282f3 Updated Danish translation 2020-09-02 08:48:56 +02:00
Simon De Backer
81da7c6713 Fix dubbel // on log file dir 2020-08-31 22:26:03 +02:00
Simon De Backer
a4654dc6c2 remove old orientation for element Attribute in XML and code 2020-08-31 21:36:03 +02:00
Simon De Backer
504a061e71 Add loading time of collections inf to log 2020-08-31 21:22:26 +02:00
Simon De Backer
51c4b16836 Add log file's viewer in AboutQETDialog for user 2020-08-31 21:21:17 +02:00
Claveau Joshua
4a8e07b227 Fix csv export 2020-08-31 20:29:50 +02:00
sdeffaux
db4e8e3f5e add symbols 2020-08-30 19:00:31 +02:00
Laurent Trinques
6274f65455 AboutQETDialog : add Authors 2020-08-29 23:45:25 +02:00
Simon De Backer
00eb139f73 This property is obsolete. 2020-08-29 19:34:45 +02:00
Simon De Backer
62d370c99a Wrap code for better readability 2020-08-29 19:21:51 +02:00
Simon De Backer
cb0c0f8778 Fix Margin voor windows OS 2020-08-29 19:20:44 +02:00
Simon De Backer
f4550ab3b4 Wrap code for better readability 2020-08-28 18:32:24 +02:00
Simon De Backer
d8cbcf3b54 Restore add_new_diagram_button 2020-08-27 17:06:47 +02:00
Simon De Backer
63ad341b33 Fix add header file 2020-08-27 16:31:39 +02:00
Laurent Trinques
bd62f8768e ProjectView add arrows key for quickly navigate in projects
disable momentary "add diagram" button
2020-08-27 14:24:02 +02:00
Laurent Trinques
d9fde9a3e4 Doxyfile restore QCH 2020-08-26 11:01:58 +02:00
Laurent Trinques
f4c5087dc0 Restore opening of projects on the first folio 2020-08-26 02:38:25 +02:00
Laurent Trinques
0959330adf CSV export : Add "conductor_color & conductor_section" to
projectDataBase
2020-08-26 02:12:00 +02:00
Simon De Backer
4763eb92ec Update Doxyfile
bron See
https://qelectrotech.org/forum/viewtopic.php?pid=12901#p12901

run
doxygen Doxyfile
in project dir or met Qt
2020-08-25 21:12:47 +02:00
Simon De Backer
9e4af439ef Wrap code for better readability 2020-08-25 20:52:49 +02:00
Simon De Backer
dfadcb5523 Small change to TRANSLATIONS 2020-08-24 22:22:56 +02:00
Simon De Backer
995066916b Decreases the number of declaring variables
for improve readability
2020-08-24 22:10:58 +02:00
Simon De Backer
debca09d5c Translate documentation + Fix indentation 2020-08-24 22:02:22 +02:00
Simon De Backer
9dad8a5d01 Fix Bug Fill the combo box "element information" was not called
a typo it happens :)
See commit
216374d27c23fc36b69742e7833ea981aecae4b0
2020-08-23 17:47:53 +02:00
artgg7300
347de4bcd3 updated hungarian files 2020-08-23 16:17:41 +02:00
Claveau Joshua
7960697b9e Remove unused class 2020-08-21 14:39:35 +02:00
Claveau Joshua
0e6b385be2 Write backup improvement.
Remove the waitForFinished function to truly use the multi-threading.
2020-08-21 00:25:20 +02:00
Simon De Backer
4b4732a0a8 Fix doxygen issue 2020-08-20 22:35:25 +02:00
Simon De Backer
331918d143 Wrap code for better readability 2020-08-20 21:58:23 +02:00
Simon De Backer
0c00d83b27 Fix some doxygen issues 2020-08-20 21:57:35 +02:00
Laurent Trinques
8626ca5d1b Minor fix 2020-08-20 19:45:20 +02:00
Laurent Trinques
e05754da29 Machine_info : improve code 2020-08-20 19:34:07 +02:00
Laurent Trinques
b4f733a5e5 Machine_info : add Windows RAM Available 2020-08-20 18:09:37 +02:00
Simon De Backer
9352905335 Remove some code not in a class or in a function (Q_OS_WIN) 2020-08-20 17:50:29 +02:00
Simon De Backer
88686b3cbf Wrap code for better readability 2020-08-20 17:45:24 +02:00
Simon De Backer
d1c91a7fc2 Fix some doxygen issues 2020-08-20 17:44:59 +02:00
Laurent Trinques
f24f04084c Machine_info : add Windows RAM informations 2020-08-20 06:05:55 +02:00
Simon De Backer
e3093bd06c Fix doxygen issue, Mod to and from Settings
what does this code do?
2020-08-19 21:29:18 +02:00
Simon De Backer
cdb2e7b523 Wrap code for better readability 2020-08-19 21:27:14 +02:00
Simon De Backer
666f20856e Fix some doxygen issues 2020-08-19 21:26:36 +02:00
Simon De Backer
f5725531c2 Fix some doxygen issues 2020-08-19 17:31:02 +02:00
Simon De Backer
5dd57cf003 Wrap code for better readability 2020-08-19 17:30:18 +02:00
Simon De Backer
566747eb2b Improve code style, Wrap code for better readability 2020-08-18 21:29:12 +02:00
Simon De Backer
8e956df8d8 Fix some doxygen issues 2020-08-18 21:28:52 +02:00
Simon De Backer
ef15013715 Add QElectroTech Version in log file 2020-08-18 21:24:22 +02:00
sdeffaux
20896de561 Update hag_cds765f.elmt 2020-08-18 20:47:57 +02:00
sdeffaux
8cdcb59da2 add symbols 2020-08-18 20:47:57 +02:00
sdeffaux
35f206bc7e Add symbols Hager et Legrand 2020-08-18 20:47:57 +02:00
Simon De Backer
99abc165d6 Wrap code for better readability 2020-08-18 20:08:32 +02:00
Simon De Backer
790cdc5229 Fix some doxygen issues (~100) 2020-08-18 20:07:55 +02:00
Simon De Backer
b5f212418c Improve code style, Wrap code for better readability 2020-08-17 21:24:46 +02:00
Simon De Backer
b28ca0361d Fix some doxygen issues 2020-08-17 21:24:20 +02:00
Simon De Backer
2482a0bd4c Fix log files in wrong dir
when arguments are used,
the log file change from dir,
result 2 log files,
and 1 log file is not deleted by
void delete_old_log_files(int days)
2020-08-17 19:12:52 +02:00
Claveau Joshua
319188e010 Export to csv improvement
Export to csv doesn't use is own datase, but the project database
instead.
2020-08-17 16:42:07 +02:00
Laurent Trinques
bc0fecea6c Merge branch 'C-Born-Software-dxf' into master 2020-08-17 10:23:29 +02:00
David Varley
a4c829fbcd Merge branch 'master' into dxf 2020-08-17 16:02:06 +10:00
David Varley
73dd1e8299 Merge branch 'master' of https://github.com/qelectrotech/qelectrotech-source-mirror 2020-08-17 15:53:19 +10:00
David Varley
430ec27f36 Fix dxf export of autosize text cells in titleblock 2020-08-17 15:38:24 +10:00
David Varley
0cb98b2ee1 Adjust alignment of titleblock text in DXF export 2020-08-17 09:13:19 +10:00
Simon De Backer
41cef49453 Improve code style, Wrap code for better readability 2020-08-16 14:26:40 +02:00
Simon De Backer
c4bf492616 Improve code style 2020-08-16 14:26:04 +02:00
Simon De Backer
bc176da88d Improve code style, Wrap code for better readability 2020-08-16 14:25:48 +02:00
Simon De Backer
e55d336dc1 Improve code style 2020-08-16 14:25:31 +02:00
Simon De Backer
6c806d151d Improve code style 2020-08-16 14:25:14 +02:00
Simon De Backer
5e3e3aa4bd Improve code style, Wrap code for better readability, Mod doc 2020-08-16 14:24:51 +02:00
Simon De Backer
3b3ce2cb7c Improve code style, Wrap code for better readability 2020-08-16 14:24:12 +02:00
Simon De Backer
928b56f2bf Improve code style, Wrap code for better readability 2020-08-16 14:23:59 +02:00
Simon De Backer
8144e9b21b Wrap code for better readability 2020-08-16 14:23:42 +02:00
Simon De Backer
8a484ef901 Improve code style 2020-08-16 14:23:25 +02:00
Simon De Backer
574609abf5 Improve code style 2020-08-16 14:22:54 +02:00
Simon De Backer
76d16ab600 Improve code style, Wrap code for better readability 2020-08-16 14:22:36 +02:00
Simon De Backer
60a5a83320 Improve code style, Wrap code for better readability 2020-08-16 14:22:21 +02:00
Simon De Backer
e9fcd385d5 Improve code style, Wrap code for better readability 2020-08-16 14:22:12 +02:00
Simon De Backer
4ed33109f4 Improve code style, Wrap code for better readability 2020-08-16 14:21:55 +02:00
Simon De Backer
a83ee76f39 Fix Copyright indentation 2020-08-16 14:19:38 +02:00
Simon De Backer
3783a6a543 Fix warning 'setParts' is not marked 'override' 2020-08-16 14:07:46 +02:00
Laurent Trinques
070cc2e4ac Typo 2020-08-16 12:34:49 +02:00
Yuki Atoh
012d969d92 Fix Japanese 2020-08-16 12:23:41 +02:00
Yuki Atoh
e22c618152 Add Japanese translations for IEC 60617 2020-08-16 12:23:41 +02:00
Yuki Atoh
93929399b6 Add Japanese translations of qet_directory 2020-08-16 12:23:41 +02:00
David Varley
ea9a230844 Fix dxf export for border 2020-08-16 12:22:36 +02:00
Simon De Backer
d4ee161c07 Mod doc set style de same 2020-08-16 11:19:36 +02:00
Simon De Backer
90417ae509 Fix Copyright indentation 2020-08-16 09:40:14 +02:00
David Varley
2b396960d9 Merge branch 'master' of https://github.com/qelectrotech/qelectrotech-source-mirror 2020-08-16 15:57:55 +10:00
David Varley
ddc2afa427 Fix dxf export for border 2020-08-16 15:39:20 +10:00
Simon De Backer
5832e365e9 Fix log file Dir 2020-08-15 21:40:07 +02:00
Laurent Trinques
dff825810c Update *TS files 2020-08-15 18:35:27 +02:00
Laurent Trinques
12ddd3256e Update translations_stat.pl script 2020-08-15 15:10:06 +02:00
Laurent Trinques
7aaf0c0e58 Fix typo 2020-08-15 15:03:47 +02:00
David Varley
ceb2868b02 Fix dxf export for copied conductors 2020-08-15 14:15:57 +02:00
David Varley
02afb6c003 Fix dxf export for copied conductors 2020-08-15 22:00:14 +10:00
Laurent Trinques
6916736708 Merge branch 'yukia10-l10n_jp' into master 2020-08-15 13:52:01 +02:00
Yuki Atoh
4c51448c45 Merge branch 'l10n_jp' of https://github.com/yukia10/qelectrotech-source-mirror into l10n_jp 2020-08-15 18:42:16 +09:00
Yuki Atoh
770161ac57 Initial Japanese translation 2020-08-15 18:39:41 +09:00
sdeffaux
fa8917875b Add symbols 2020-08-15 08:37:06 +02:00
Yuki Atoh
295e285067 Initial Japanese translation 2020-08-15 14:17:29 +09:00
Simon De Backer
574f5b94b0 Update Copyright date 2020-08-14 22:48:44 +02:00
Simon De Backer
70d024fe79 Update Copyright date 2020-08-14 22:00:42 +02:00
Simon De Backer
de8ccc543d Fix no line number in debug 2020-08-14 18:35:53 +02:00
Simon De Backer
274108d509 Mod debuger to 7 days logs in .qet dir
the user can now read the log files
and/or send them to us for further investigation
2020-08-14 18:31:38 +02:00
Simon De Backer
d556206998 Fix to RAM Total info 2020-08-14 17:03:58 +02:00
Simon De Backer
84a2a25fa8 Mod get Screen info
get cpu info should not collect screen info
2020-08-14 17:03:08 +02:00
Laurent Trinques
6f82ac1df1 Mod Machine_info
Forgot QProcess::close()
2020-08-14 12:57:15 +02:00
Laurent Trinques
7616d11e9d Mod Machine_info
Improve GPU RAM
2020-08-14 12:55:04 +02:00
Laurent Trinques
9486deb3de Mod Machine_info
Add macOS RAM available
2020-08-14 12:51:50 +02:00
damianCaceres
e09bfa18b9 ElementEditor: partdynamictextfield.cpp code style fixes indentation 2020-08-14 01:37:41 +02:00
damianCaceres
fc4625fc0f ElementEditor: partdynamictextfield.cpp code style 2020-08-14 01:37:41 +02:00
damianCaceres
943aa469c6 ElementEditor: partdynamictextfield.h code style 2020-08-14 01:37:41 +02:00
damianCaceres
ba1242d5bb ElementEditor: parttext.cpp code style 2020-08-14 01:37:41 +02:00
damianCaceres
9bc6f7fa94 ElementEditor: parttext.h code style 2020-08-14 01:37:41 +02:00
damianCaceres
3b4237f21f ElementEditor: partterminal.cpp code style 2020-08-14 01:37:41 +02:00
damianCaceres
ac5ec020a6 ElementEditor: partterminal.h code style 2020-08-14 01:37:41 +02:00
damianCaceres
0bae33e3f5 ElementEditor: ~TerminalEditor() suppress extra semicolon 2020-08-14 01:37:41 +02:00
Simon De Backer
e5b7aacea6 Add LibraryInfo to debuger 2020-08-14 00:36:59 +02:00
Simon De Backer
5ca7ff177b Merge branch 'master'
# Conflicts:
#	sources/machine_info.cpp
2020-08-13 22:56:40 +02:00
Simon De Backer
d5b7414b36 Mod Machine_info
add send_info_to_debug
Mod get data PC
send to debuger on startup
2020-08-13 22:50:58 +02:00
Laurent Trinques
34259a4749 Typo 2020-08-13 21:32:51 +02:00
Laurent Trinques
4d61166864 Restore Simmon previous commit 2020-08-13 21:31:33 +02:00
Laurent Trinques
d46d6709f3 Machine info :
remove braces
2020-08-13 21:13:12 +02:00
Simon De Backer
da4e31dfcb Fix warning Wdeprecated
warning:
‘void QProcess::start(const QString&, QIODevice::OpenMode)’ is deprecated
"Use QProcess::start(const QString &program,
                     const QStringList &arguments,
                     OpenMode mode = ReadWrite) instead"
2020-08-13 20:37:07 +02:00
Simon De Backer
21b7aa059a rap code for better readability 2020-08-13 17:58:56 +02:00
Laurent Trinques
43a531fd2d Typo 2020-08-13 17:18:28 +02:00
Laurent Trinques
c0d51ef445 Machine info :
Add Windows GPU RAM informations
2020-08-13 17:10:42 +02:00
Laurent Trinques
f0b475bd77 Machine info :
add Windows CPU & GPU informations
2020-08-13 17:05:46 +02:00
sdeffaux
984d9bc5de Update symbols 2020-08-13 09:22:02 +02:00
Simon De Backer
288737af0d Add Debugging Techniques 2020-08-12 23:54:09 +02:00
Simon De Backer
b0df6d3101 Remove code minium QT_VERSION 5.9 2020-08-12 23:53:52 +02:00
Simon De Backer
11a90d2f69 Remove code minium QT_VERSION 5.9 2020-08-12 22:04:46 +02:00
Simon De Backer
69ff437368 Mod doc, Improve code style 2020-08-12 21:59:00 +02:00
Simon De Backer
87db0e2020 Wrap code for better readability 2020-08-12 19:33:29 +02:00
Claveau Joshua
044c5310f5 minor 2020-08-12 15:48:37 +02:00
Claveau Joshua
86766a9090 Element editor : a copied/pasted terminal part have a new uuid. 2020-08-12 15:45:48 +02:00
Simon De Backer
1805ef300e Add compiler message @TODO 2020-08-10 21:16:52 +02:00
Simon De Backer
e4033dd93c Wrap code for better readability + Mod doc 2020-08-10 21:13:31 +02:00
Simon De Backer
53d89ce4f7 Add documentation 2020-08-10 21:08:52 +02:00
Simon De Backer
7834d6fb84 Mod doc, Improve code style 2020-08-08 23:58:17 +02:00
Laurent Trinques
d9ec9bf274 Update Changelog 2020-08-08 15:53:01 +02:00
Laurent Trinques
66eaf52002 Update Changelog 2020-08-08 15:35:51 +02:00
Laurent Trinques
2e3e65df5a Update Changelog : WIP : you can add what i forgot 2020-08-08 15:08:23 +02:00
Laurent Trinques
b8daec441f Fix bug 199:
ElementEditor parText changes in the drawing area are not reflexted in
the information area
2020-08-07 15:32:24 +02:00
Simon De Backer
06dc1570fc Test writeToFile on a other Thread
to improve this for windows performance
2020-08-06 22:19:44 +02:00
Laurent Trinques
0ce001ea6e Fix bug 198
Text input loose the focus after each single letter
2020-08-06 13:20:33 +02:00
damianCaceres
fa719cf8ff ElementEditor: qetelementeditor fixes wrong braces introduced in previous commit 2020-08-06 11:08:08 +02:00
damianCaceres
0507336622 ElementEditor: qtelementeditor.cpp improve code style 2020-08-06 11:08:08 +02:00
damianCaceres
3d1e30b24e ElementEditor: qtelementeditor.h indentation 2020-08-06 11:08:08 +02:00
damianCaceres
b3a74a8315 ElementEditor: texteditor.cpp surround arrows and more braces 2020-08-06 11:08:08 +02:00
damianCaceres
216374d27c ElementEditor: dynamictextfieldeditor.cpp improve code style 2020-08-06 11:08:08 +02:00
damianCaceres
ce523b71e2 ElementEditor: dynamictextfieldeditor.h improve code style 2020-08-06 11:08:08 +02:00
damianCaceres
bb84bb2098 ElementEditor: texteditor.cpp improve code style 2020-08-06 11:08:08 +02:00
damianCaceres
23c43e72b5 ElementEditor: texteditor.h improve code style 2020-08-06 11:08:08 +02:00
damianCaceres
b53c083d0a ElementEditor: terminaleditor.cpp indentation, alignment and braces 2020-08-04 21:16:58 +02:00
damianCaceres
45edc34269 ElementEditor: terminaleditor.h indentation and alignment 2020-08-04 21:16:58 +02:00
damianCaceres
f8240558a0 ElementEditor: in PolygonEditor::setPart remove redundant calls to StyleEditor::setPart 2020-08-04 11:18:20 +02:00
damianCaceres
dd70637408 ElementEditor: in RectangleEditor::setPart remove redundant calls to StyleEditor::setPart 2020-08-04 11:18:20 +02:00
damianCaceres
45d1b489c4 ElementEditor: in ArcEditor::setPart remove redundant calls to StyleEditor::setPart 2020-08-04 11:18:20 +02:00
damianCaceres
72918a31db ElementEditor: in EllipseEditor::setPart remove redundant calls to StyleEditor::setPart 2020-08-04 11:18:20 +02:00
damianCaceres
9d772b4091 ElementEditor: in LineEditor::setPart remove redundant calls to StyleEditor::setPart 2020-08-04 11:18:20 +02:00
damianCaceres
dd257c48d9 ElementEditor: always clear m_cep_list in StyleEditor::setPart bugfix 0197 2020-08-03 16:07:31 +02:00
Claveau Joshua
78992ee762 Fix backup file on windows
For unknown reason KautoSaveFile don't write the file on Windows if file
is open in another part of the code.
No error is returned and use the method :
qint64 QIODevice::write(const QByteArray &byteArray) return the good
number of bytes written but the real file stay empty.
Probably the problem don't come from KautoSaveFile but QFileDevice or
QIODevice on windows.

The fix consist to open the file just before write on it and close it
just after.
2020-08-02 22:24:46 +02:00
Simon De Backer
7a04788d54 Mod code to drop 2 inden
- if (isReadOnly()) return;
- if (dc.items(DiagramContent::All).isEmpty())
2020-08-02 20:52:52 +02:00
Simon De Backer
fa1abbd38d Wrap code for better readability + Mod doc 2020-08-02 20:29:20 +02:00
Simon De Backer
effc86e72c Translate documentation + Fix indentation 2020-08-02 20:29:06 +02:00
Simon De Backer
d4d364cfde Fix wrap code for better readability 2020-08-02 19:36:12 +02:00
Claveau Joshua
1fc893157d Minor fix
Fix : During the opening of a project, if the project contain a
nomenclature, the dialog used to inform user that the table is too small
is displayed
2020-08-02 18:20:30 +02:00
Simon De Backer
494a5f1df2 Mod Coding conventions + Wrap code
Wrap code for better readability
2020-08-02 17:38:21 +02:00
Simon De Backer
900b7e22aa Mod CONTRIBUTING.md
add info Interactive Staging
2020-08-02 16:27:23 +02:00
Simon De Backer
4751934d68 New Signal Slot Syntax 2020-08-02 15:23:38 +02:00
Simon De Backer
510aa74266 Wrap code for better readability + Mod doc 2020-08-02 15:14:16 +02:00
Simon De Backer
e938673872 Add documentation 2020-08-02 15:09:21 +02:00
Simon De Backer
2a53f09a37 Translate documentation + Fix indentation 2020-08-02 12:09:08 +02:00
Laurent Trinques
6bece6fa84 Update Ru translation, thanks Aleksander 2020-07-29 21:31:55 +02:00
Simon De Backer
1372d1c8ba Wrap code for better readability + Mod doc 2020-07-28 20:57:02 +02:00
Simon De Backer
70e54bc9b2 Translate documentation + Fix indentation 2020-07-28 20:56:41 +02:00
sdeffaux
e6eeef5cf5 update symbols 2020-07-27 21:33:58 +02:00
dlee99
96acd6ff95 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-07-26 23:22:49 +02:00
Laurent Trinques
9cdc023f31 Pugixml XML parser
Update to upstream master
2020-07-26 16:14:31 +02:00
pavelfric
a2eb92803a Updated Czech translation 2020-07-26 13:13:23 +02:00
Simon De Backer
655e608268 Doxygen using dashes to create lists of items. 2020-07-26 11:55:51 +02:00
Simon De Backer
c401e93125 Wrap code for better readability + Mod doc 2020-07-26 11:36:27 +02:00
Simon De Backer
4d57e7fbfb Mod get elementInfo from elementInfoKeys 2020-07-26 11:16:12 +02:00
Simon De Backer
0c62bf2b3b Translate documentation + Fix indentation
- Mod doc set style de same
- Fix indentation code
2020-07-26 10:33:15 +02:00
Simon De Backer
1f78196fa6 Fix widget size 2020-07-25 22:00:19 +02:00
Simon De Backer
49cca54adc Wrap code for better readability 2020-07-24 22:44:32 +02:00
Simon De Backer
c0df06c2ee Mod doc set style de same 2020-07-24 22:44:10 +02:00
Simon De Backer
d087a8be66 Moved compilation_info to class Machine_info
This is preparation for making a dev log file
2020-07-23 21:57:30 +02:00
Simon De Backer
55beaa9be9 Mod ScrollArea on demand
QScrollArea is not asked if the screen is big enough.
2020-07-23 17:24:10 +02:00
Simon De Backer
c5eb5af47d Fix name to clarify value is int 2020-07-23 17:05:48 +02:00
Simon De Backer
90e283902e This adds ScrollArea to config dialog
Not everything is visible with low resolution screens.
https://qelectrotech.org/bugtracker/view.php?id=195
2020-07-23 16:55:42 +02:00
Simon De Backer
7420eeb60d Mod name to clarify value is int 2020-07-23 16:49:31 +02:00
Simon De Backer
698db4e5c0 Add Copyright to machine_info class 2020-07-22 21:16:38 +02:00
Simon De Backer
6b95c6bf6f Add QScrollArea to configdialog and resize to max_screen 2020-07-22 21:03:54 +02:00
Claveau Joshua
2b754cffb4 AddTableDialog : fix minor bug 2020-07-21 22:56:31 +02:00
Simon De Backer
03425bcb5b Add gui resize depending on screen size
Init of request
https://qelectrotech.org/bugtracker/view.php?id=195
This is a start will have to be adjusted further.
2020-07-21 20:29:05 +02:00
Laurent Trinques
3a08e60856 aboutqetdialog.cpp minor 2020-07-21 16:01:28 +02:00
Laurent Trinques
e03e36fb2c AboutQETDialog add Linux RAM Total and MemAvailable 2020-07-21 15:58:35 +02:00
Laurent Trinques
8f5e759528 AboutQETDialog add Linux RAM 2020-07-21 14:45:41 +02:00
Laurent Trinques
bddf10588f AboutQETDialog add macOS cpuinfo 'model name' 2020-07-21 14:12:06 +02:00
Laurent Trinques
a33ae2bb13 AboutQETDialog add Linux gpu info 'model name' 2020-07-21 13:44:45 +02:00
Laurent Trinques
bd93e62341 AboutQETDialog add Linux cpuinfo 'model name' 2020-07-21 13:05:08 +02:00
Simon De Backer
119e12b1cf Add Screen info user 2020-07-20 22:41:27 +02:00
Claveau Joshua
f242e1bccc graphics table properties editor : minor
Add label to inform users that the number of row is less than the number
of information to display.
2020-07-20 20:29:13 +02:00
Claveau Joshua
709280e3c1 QetGraphicsTableItem : add dialog to inform user
When user edit the query of an existing table/s if the content to
display is bigger than the content who can be displayed by the table/s a
dialog is opened for inform user of the current situation.
2020-07-20 19:38:52 +02:00
Simon De Backer
3b14946421 Add compiler message @TODO + Mod doc set style de same 2020-07-19 22:19:21 +02:00
Simon De Backer
280e4605e8 Mod doc set style de same 2020-07-19 22:08:41 +02:00
Simon De Backer
fe4552200b Add compiler message @TODO 2020-07-19 22:06:42 +02:00
Simon De Backer
d3b237d06c Mod documentation + wrap code for better readability 2020-07-19 20:28:56 +02:00
Simon De Backer
26fd1a497c Add ignore lines to .gitignore
if doxygen Doxyfile is run all file's of folder doc are added
Qt user file should not see either
2020-07-19 20:24:37 +02:00
Simon De Backer
bbd3085b8d Fix indentation code + Mod doc 2020-07-19 20:06:22 +02:00
Simon De Backer
1251d7d9b0 Fix indentation code + Mod doc 2020-07-19 20:05:58 +02:00
Simon De Backer
2229a1938d Add documentation 2020-07-19 20:05:13 +02:00
Simon De Backer
ffcdccb469 Mod doc set style de same 2020-07-19 18:40:41 +02:00
Simon De Backer
5df6d7f403 Wrap code for better readability 2020-07-19 18:40:41 +02:00
Simon De Backer
4cd69a2450 Mod doc set style de same 2020-07-19 18:40:41 +02:00
Simon De Backer
102629b86f Mod doc set style de same + wrap code for better readability 2020-07-19 18:40:41 +02:00
Simon De Backer
7ddae811a5 Fix Wdeprecated-declarations QProcess::startDetached
QProcess::startDetached(const QString&)’ is deprecated
Use
QProcess::startDetached(const QString &program,
			const QStringList &arguments)
instead
2020-07-19 18:30:28 +02:00
Simon De Backer
cecacfc769 Fix compiler warining non-virtual destructor
ref:
https://stackoverflow.com/questions/38407723/how-to-delete-an-object-of-derived-class-that-has-no-dstructor
2020-07-19 15:48:46 +02:00
Simon De Backer
8c9b30acd6 Mod doc + Update Copyright date
And wrap code for better readability
2020-07-16 22:06:56 +02:00
Simon De Backer
6aa6d055ec Add translation for directory 2020-07-16 22:01:04 +02:00
Simon De Backer
495d9a5f51 Add documentation + wrap code for better readability 2020-07-16 22:00:33 +02:00
Simon De Backer
70ef559874 Improve portability of Doxyfile
note run "doxygen Doxyfile" in qet dir
2020-07-16 16:56:30 +02:00
sdeffaux
80c54b3edb Add new Symbols 2020-07-16 15:51:47 +02:00
Laurent Trinques
68116f4664 Fix indentation code 2020-07-15 23:00:21 +02:00
Simon De Backer
b9ce532db7 Mod doc for better readability doxygen
1. this can be an example howto
add english and french documentation without sacrificing code readability
	2. Fix indentation code
2020-07-15 22:37:29 +02:00
Laurent Trinques
a28e7289b9 Doxyfile update add QCH file for
doxygen-generated docs using qhelpgenerator and then import them into Qt Creator.
2020-07-15 22:25:29 +02:00
Claveau Joshua
ac49ecce7d Fix wrong position of slave xref after open a saved project 2020-07-15 20:48:52 +02:00
Laurent Trinques
7ed71a6312 Fix indentation code 2020-07-15 20:35:23 +02:00
Laurent Trinques
350e7e5233 Fix indentation code 2020-07-15 20:21:59 +02:00
Laurent Trinques
68e78a0de9 Fix indentation code 2020-07-15 20:20:07 +02:00
Laurent Trinques
6313319f80 Fix-indentation-code 2020-07-15 19:57:37 +02:00
Laurent Trinques
a718cfa16d Fix indentation code 2020-07-15 19:48:28 +02:00
Simon De Backer
d7e1d326a2 Wrap code for better readability + Mod doc 2020-07-15 18:34:42 +02:00
Simon De Backer
2cdfce18ec Mod doc to set style de same + Fix indentation code 2020-07-15 18:31:04 +02:00
Simon De Backer
251dfdf37a add documentation 2020-07-15 18:29:04 +02:00
Laurent Trinques
0c381eae28 Fix Remove old summary feature 2020-07-15 17:43:20 +02:00
Laurent Trinques
f8ca26f6e3 Mod doc 2020-07-15 15:32:19 +02:00
Laurent Trinques
b866323e90 Minor QETDiagramEditor::setUpMenu reorder action 2020-07-15 15:28:47 +02:00
Laurent Trinques
53663e20e1 Remove old summary feature 2020-07-15 15:06:46 +02:00
Simon De Backer
430bcae946 Wrap code for better readability 2020-07-14 22:29:23 +02:00
Simon De Backer
41b0434c20 Fix indentation 2020-07-14 22:29:06 +02:00
Simon De Backer
01d97246ce Mod doc set style de same 2020-07-14 22:28:58 +02:00
Simon De Backer
06dbb468ce Mod the doc moved info to the class 2020-07-14 22:28:49 +02:00
Claveau Joshua
132f3ad1b4 Remove old summary feature 2020-07-14 20:00:28 +02:00
sdeffaux
d44bb87d0b add symbols 2020-07-14 18:04:28 +02:00
Laurent Trinques
4d83a1b53e Add new symbols 2020-07-14 17:26:17 +02:00
Laurent Trinques
edf65c83e1 Add new example 2020-07-14 15:07:52 +02:00
sdeffaux
f2c3bd5d26 add symbols 2020-07-13 18:33:03 +02:00
Simon De Backer
c0e248bcd0 fix white space 2020-07-13 06:51:55 +02:00
Simon De Backer
c167468f29 add documentation ExportPropertiesWidget functions 2020-07-13 06:51:46 +02:00
Simon De Backer
09207eec92 add documentation ConductorNumExport function 2020-07-13 06:51:36 +02:00
Simon De Backer
169c440de1 add documentation & removed Q_UNUSED for used value's 2020-07-13 06:51:26 +02:00
Simon De Backer
f9c705f30a add documentation GenericPanel functions 2020-07-13 06:51:17 +02:00
Claveau Joshua
b9a34ce2fd Fix projectdbmodel 2020-07-12 12:33:42 +02:00
artgg7300
28ea80d458 translated hungarian files 2020-07-12 11:19:13 +02:00
sdeffaux
14431db1b2 Translate symbols 2020-07-11 12:56:10 +02:00
Claveau Joshua
83b72c4aac Fix wrong date format for nomenclature table. 2020-07-08 20:56:20 +02:00
Claveau Joshua
31ce923580 fix crash 2020-07-07 22:11:39 +02:00
Claveau Joshua
dae4329699 Update project database class
Add method :
addDiagram and removeDiagram
2020-07-06 21:52:14 +02:00
Ole Carlsen
ff19b3d4d7 Danish update 2020-07-06 18:29:58 +02:00
dlee99
8f921854a3 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-07-05 19:45:41 +02:00
Ole Carlsen
bc56820864 Danish translation updated 2020-07-05 16:12:40 +02:00
Laurent Trinques
6c2c5635a6 Update *TS files 2020-07-05 15:28:27 +02:00
Laurent Trinques
2ee11c3f1b Minor :
Rename variable for translation
2020-07-05 15:23:42 +02:00
Laurent Trinques
fb75bf0a73 Add new variables for report folio and can be added in a composite text
{conductor_color}
{conductor_section}
2020-07-05 14:01:38 +02:00
Claveau Joshua
beaa2ccdc8 Fix bug with folio report formula 2020-07-04 20:49:13 +02:00
Claveau Joshua
8ac8ff5384 Replace minus (-) by underscore (_) 2020-07-04 20:43:40 +02:00
Simon De Backer
59ba3d24af init of contribute file
this is now mainly referring to the wiki.
2020-07-04 07:55:40 +02:00
Ole Carlsen
1f9e5e130a Danish translation 2020-07-02 20:24:37 +02:00
Laurent Trinques
82b6c8e815 Update * TS files 2020-07-02 16:42:00 +02:00
Laurent Trinques
6d05038f71 minor 2020-07-02 15:20:27 +02:00
Laurent Trinques
4b117bb4d5 generalWidget : add Kindinformations 2020-07-02 14:45:28 +02:00
Laurent Trinques
7ace0e38ed generalWidget : add link type information 2020-07-02 14:34:53 +02:00
Claveau Joshua
c86f9ccc3a Improve ProjectDataBase use 2020-07-01 18:31:19 +02:00
Claveau Joshua
6652401d07 Minor improvement
Element query widget, when "all" is selected, report and slave is not
selected anymore.
Summary should be smaller.
2020-06-29 20:50:29 +02:00
artgg7300
485ccbfb61 updated hungarian files 2020-06-23 19:15:11 +02:00
Martin Marmsoler
6c84b55586 allow multiedit also for arceditor, ellipse, line, rectangle and show properties when single polygon is selected 2020-06-23 06:54:40 +02:00
Ole Carlsen
0ed9ac393c Danish translation updated 2020-06-22 18:14:55 +02:00
Laurent Trinques
3e0d8aa3c3 Update Polish translation, thanks Pawel 2020-06-22 05:36:06 +02:00
Simon De Backer
e590c76251 add Vertical sparcer's 2020-06-22 05:26:12 +02:00
Laurent Trinques
a323cbbc48 Update example with new summary and nomenclature feature 2020-06-21 19:44:56 +02:00
dlee99
168bafa9c8 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-06-21 18:24:19 +02:00
Laurent Trinques
c8bdfb3ac6 Update *TS files 2020-06-21 18:15:26 +02:00
Claveau Joshua
0a1b688003 Fix crash.
Fix crash when when move and undo the move of a QetGraphicsTableItem
2020-06-21 16:25:34 +02:00
Claveau Joshua
0587c56bba Summary query widget : config can be saved/loaded 2020-06-21 16:17:35 +02:00
Claveau Joshua
64f3001c86 Continue new summary feature
Header name is now well translated.
Open the good dialog from the properties dock widget
2020-06-21 16:00:14 +02:00
Laurent Trinques
edb5217b31 Update *TS files 2020-06-21 11:23:56 +02:00
Simon De Backer
cfb5acc8d5 fix tr() cannot be called without context
add QObject::
qetdiagrameditor.cpp:2341: tr() cannot be called without context
qetdiagrameditor.cpp:2372: tr() cannot be called without context
diagramfoliolist.cpp:175: Class 'DiagramFolioList' lacks Q_OBJECT macro
2020-06-21 11:22:44 +02:00
Simon De Backer
ca2e737df3 fix deprecated warning int QWheelEvent::delta() const
Use angleDelta() instead
and .y();
2020-06-21 10:50:26 +02:00
Simon De Backer
2241343fba fix Wmisleading-indentation
is misleadingly indented as if it were guarded by the ‘if’
2020-06-21 10:50:00 +02:00
Simon De Backer
501134ab25 add Q_UNUSED for TerminalData:: fromSettings & toSettings 2020-06-21 10:49:38 +02:00
Simon De Backer
c4850f815f fix Wdeprecated-declarations
Use default constructor instead
2020-06-21 10:49:14 +02:00
Ole Carlsen
6a926bbe50 Danish translation updated 2020-06-21 07:53:20 +02:00
Laurent Trinques
34b4d11e53 Minor 2020-06-20 23:52:12 +02:00
Simon De Backer
ddf88bbed7 add font color of the conductors 2020-06-20 23:48:20 +02:00
dlee99
53447b41c9 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-06-20 22:46:30 +02:00
Simon De Backer
47637c4779 another alternative ui for ConductorPropertiesWidget 2020-06-19 21:56:38 +02:00
Laurent Trinques
205c683d6f Improve Simon patch :
The window of the properties of the conductor does not
 exactly fit in height.
2020-06-19 09:40:45 +02:00
Simon De Backer
1278fe1124 The window of the properties of the conductor does not exactly fit in height.
On the laptop, the resolution is 1368 * 768.
2020-06-19 09:02:22 +02:00
Claveau Joshua
090da90e22 fix fail to build 2020-06-18 19:20:25 +02:00
Claveau Joshua
ec5f537da4 Add new summary table (WIP) 2020-06-18 18:52:29 +02:00
artgg7300
80b5029cd1 translated hungarian files 2020-06-17 05:34:02 +02:00
Laurent Trinques
534ab19616 Revert "MacOS: try to remove hard coded python PATH"
This reverts commit 36071e9cf509eedbac0ddf9977cbe9610ba19e4f.
2020-06-16 17:36:54 +02:00
Laurent Trinques
36071e9cf5 MacOS: try to remove hard coded python PATH 2020-06-16 17:21:44 +02:00
Laurent Trinques
b8b0bbed44 Add new symbols 2020-06-16 01:32:50 +02:00
Laurent Trinques
78a02af400 Minor : general_widget add TextEditorInteraction 2020-06-15 19:26:44 +02:00
Laurent Trinques
e10ae8ce2e Update Copyright date 2020-06-15 17:42:53 +02:00
Laurent Trinques
a5465c201f Try to fix bad font rendering under Windows plateform
see : https://bugreports.qt.io/browse/QTBUG-83161
2020-06-15 13:01:05 +02:00
Laurent Trinques
bb7ef2a13f Update *TS files 2020-06-14 22:19:28 +02:00
dlee99
3f9db7b9ec modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-06-14 21:20:51 +02:00
Laurent Trinques
ec13e0dde3 Try to fix Ubuntu 18.04 FTBFS, again 2020-06-14 18:14:14 +02:00
Laurent Trinques
509d1f39f0 Try to fix Ubuntu 18.04 FTBFS again 2020-06-14 17:49:50 +02:00
Martin Marmsoler
83f4a7c6ba do not set parts again when they are set already 2020-06-14 17:07:14 +02:00
Martin Marmsoler
d7b5ceece1 implement currentParts() for every elementItemEditor so the editor can be extended to multi part edit in a later step 2020-06-14 17:07:14 +02:00
Martin Marmsoler
0fb98fbdac add multiedit feature also for dynamic text 2020-06-14 17:07:14 +02:00
Martin Marmsoler
0485df25dc static_cast is enough 2020-06-14 17:07:14 +02:00
Martin Marmsoler
cfda59e978 multipart edit 2020-06-14 17:07:14 +02:00
Martin Marmsoler
4abf1c4f2e - static_cast because it is a condition that it is PartTerminal 2020-06-14 17:07:14 +02:00
Martin Marmsoler
37cc326a46 solves #7 2020-06-14 17:07:14 +02:00
Martin Marmsoler
a6137ed0d0 forgotten to commit texteditor 2020-06-14 17:07:14 +02:00
Martin Marmsoler
a07e973482 make partTextEditor capable to modify multiple parts at the same time 2020-06-14 17:07:13 +02:00
Martin Marmsoler
a2d466240b multiterminal change 2020-06-14 17:07:13 +02:00
Martin Marmsoler
b85b341941 WIP 2020-06-14 17:07:13 +02:00
Martin Marmsoler
451d5c8f58 not needed, because it is the same than a few lines below 2020-06-14 17:07:13 +02:00
Laurent Trinques
09dd92215f Try to fix Ubuntu 18.04 FTBFS 2020-06-14 16:22:23 +02:00
Laurent Trinques
a8c2283cbe hot fix zoom and scrolling
bug: was only zoom In
    (int QPoint::manhattanLength() const
    Returns the sum of the absolute values)
2020-06-14 14:29:59 +02:00
Simon De Backer
39fba2702d add be lang 2020-06-14 13:51:48 +02:00
Simon De Backer
35ba2bbe95 hot fix zoom and scrolling
bug: was only zoom In
(int QPoint::manhattanLength() const
Returns the sum of the absolute values)
2020-06-14 13:40:12 +02:00
Martin Marmsoler
81992bc777 remove inline, because it creates compile issues in release mode. see #48 2020-06-14 13:29:26 +02:00
Martin Marmsoler
3bac452141 add comments 2020-06-14 13:29:26 +02:00
Martin Marmsoler
51843bf03e replace foreach by for 2020-06-14 13:29:26 +02:00
Martin Marmsoler
af989b1cd8 Use uuid instead of an index to connect multiple elements 2020-06-14 13:29:25 +02:00
Martin Marmsoler
c2e17daab9 move initialization to header, so it must not be done in every constructor 2020-06-14 13:29:25 +02:00
Martin Marmsoler
439cf4cbd6 fix segmentation fault 2020-06-14 13:29:25 +02:00
Martin Marmsoler
89452f0b3c fix nullpointer exception 2020-06-14 13:29:25 +02:00
Martin Marmsoler
587ada643f try to use TerminalData in Terminal and PartTerminal, sou the code must not be written double 2020-06-14 13:29:25 +02:00
Martin Marmsoler
77a2ceea7d regarding to joshuas email, toXml uses a new structure. So it is changed in the properties interface and xrefproperties 2020-06-14 13:29:25 +02:00
Laurent Trinques
496b8f302a Fix FTBFS on Ubuntu 18.04 2020-06-14 08:26:52 +02:00
Laurent Trinques
22e619d6b9 Revert pull request #48 2020-06-14 07:35:52 +02:00
Martin Marmsoler
c9a7c836c5 add comments 2020-06-13 16:26:22 +02:00
Martin Marmsoler
a8a2df7c55 replace foreach by for 2020-06-13 16:26:22 +02:00
Martin Marmsoler
9b06a81c49 Use uuid instead of an index to connect multiple elements 2020-06-13 16:26:22 +02:00
Martin Marmsoler
7f07660959 move initialization to header, so it must not be done in every constructor 2020-06-13 16:26:22 +02:00
Martin Marmsoler
bc8bb63cae fix segmentation fault 2020-06-13 16:26:22 +02:00
Martin Marmsoler
e8d4b6c9d5 fix nullpointer exception 2020-06-13 16:26:22 +02:00
Martin Marmsoler
ec52032532 try to use TerminalData in Terminal and PartTerminal, sou the code must not be written double 2020-06-13 16:26:22 +02:00
Martin Marmsoler
8c6b4120f5 regarding to joshuas email, toXml uses a new structure. So it is changed in the properties interface and xrefproperties 2020-06-13 16:26:22 +02:00
Laurent Trinques
ca80b3d69f Improve last commit 2020-06-13 06:29:24 +02:00
Laurent Trinques
2e8c7d5236 Fix FTBFS
QTextStreamFunctions::endl(QTextStream&)

simple but no buffer flush
2020-06-13 06:08:11 +02:00
Laurent Trinques
f41b3ba26f QTextStreamFunctions::endl(QTextStream&)
Use Qt::endl instead
2020-06-13 05:44:34 +02:00
Simon De Backer
2aff40fd52 fix deprecated warning QTextStream& QTextStreamFunctions::endl(QTextStream&)
Use Qt::endl instead

QT_DEPRECATED_VERSION_X(5, 15, "Use Qt::endl")
2020-06-13 05:42:05 +02:00
Simon De Backer
c97a239c29 fix deprecated warning Qt::WindowFlags = nullptr
Use default constructor instead

Qt::Widget 0x00000000
This is the default type for QWidget.
Widgets of this type are child widgets if they have a parent,
and independent windows if they have no parent.
See also Qt::Window and Qt::SubWindow.
2020-06-12 19:54:34 +02:00
Simon De Backer
e4f4c1e154 fix deprecated warning void QGraphicsView::resetMatrix()
Use resetTransform() instead

This class was introduced in Qt 4.2.

+ indentation warning
of "resetSceneRect();"
2020-06-12 19:54:13 +02:00
Simon De Backer
b29753e37e fix deprecated warning QMatrix QGraphicsView::matrix() const
Use transform() instead

This class was introduced in Qt 4.2.
2020-06-12 19:53:57 +02:00
Simon De Backer
71abaf92cb fix deprecated warning int QWheelEvent::delta() const
Use angleDelta() instead

manhattanLength()
Returns the sum of the absolute values of x() and y(),
traditionally known as the "Manhattan length" of the vector
from the origin to the point.

This class was introduced in Qt 5.5
2020-06-12 19:52:50 +02:00
Simon De Backer
bb093ba0cd Mod Copyright Date
from const to dynamic

benefit the date no longer needs to be translated
2020-06-12 19:52:31 +02:00
Laurent Trinques
247a14f7aa Fix Unbutu 18.04 FTFS 2020-06-12 07:22:18 +02:00
Simon De Backer
2ec018a4e9 fix deprecated warning QString::SplitBehavior
enum QString::SplitBehavior This enum is obsolete.

Use Qt::SplitBehavior instead.
This enum was introduced or modified in Qt 5.14.
2020-06-12 05:52:50 +02:00
Simon De Backer
2570108caf fix deprecated warning qsrand
This function is obsolete.

Use QRandomGenerator instead.
This class was introduced in Qt 5.10.
2020-06-12 05:52:50 +02:00
Simon De Backer
5d2d4a48a5 fix deprecated warning QButtonGroup::buttonClicked
This function is obsolete.

Use QButtonGroup::idClicked instead.
This function was introduced in Qt 5.15.
2020-06-12 05:52:50 +02:00
Simon De Backer
21c3c09341 fix deprecated warning QHash
This function is obsolete.

Use QMultiHash instead.
This function was introduced in Qt 4.3 - 5.14
2020-06-12 05:52:50 +02:00
Simon De Backer
b9ed45c8a3 fix deprecated warning QMap
This function is obsolete.

Use QMultiMap instead.
This function was introduced in Qt 4.3 - 5.14
2020-06-12 05:52:50 +02:00
Simon De Backer
573a36b93f fix deprecated warning QDirModel
This class is obsolete. It is provided to keep old source code working.
We strongly advise against using it in new code.

Use QFileSystemModel instead.
This class was introduced in Qt 4.4
2020-06-12 05:52:50 +02:00
artgg7300
e61cbfe30a translated hungarian files 2020-06-12 05:42:26 +02:00
Laurent Trinques
3e1740cee0 Revert Martin pull request for now, and return to last 7e9fd8df9 commit 2020-06-11 13:19:30 +02:00
Martin Marmsoler
bf2e02273e do not set parts again when they are set already 2020-06-11 11:12:17 +02:00
Martin Marmsoler
e36a4ddd0a implement currentParts() for every elementItemEditor so the editor can be extended to multi part edit in a later step 2020-06-11 11:12:17 +02:00
Martin Marmsoler
1ccffda93b add multiedit feature also for dynamic text 2020-06-11 11:12:17 +02:00
Martin Marmsoler
a8c62b8257 static_cast is enough 2020-06-11 11:12:17 +02:00
Martin Marmsoler
5666782e91 multipart edit 2020-06-11 11:12:17 +02:00
Martin Marmsoler
d000f611d8 - static_cast because it is a condition that it is PartTerminal 2020-06-11 11:12:17 +02:00
Martin Marmsoler
35896d5771 solves #7 2020-06-11 11:12:17 +02:00
Martin Marmsoler
8ffe50715d forgotten to commit texteditor 2020-06-11 11:12:17 +02:00
Martin Marmsoler
1c04ea0efb make partTextEditor capable to modify multiple parts at the same time 2020-06-11 11:12:17 +02:00
Martin Marmsoler
4bae1b902d multiterminal change 2020-06-11 11:12:17 +02:00
Martin Marmsoler
304ea00d7b WIP 2020-06-11 11:12:17 +02:00
Martin Marmsoler
f2c796bdb0 not needed, because it is the same than a few lines below 2020-06-11 11:12:17 +02:00
Martin Marmsoler
cccc4fc0c4 add comments 2020-06-11 11:12:05 +02:00
Martin Marmsoler
b7c2740778 replace foreach by for 2020-06-11 11:12:05 +02:00
Martin Marmsoler
e6f77ec369 Use uuid instead of an index to connect multiple elements 2020-06-11 11:12:05 +02:00
Martin Marmsoler
bb24e121eb move initialization to header, so it must not be done in every constructor 2020-06-11 11:12:05 +02:00
Martin Marmsoler
dd377eeb73 fix segmentation fault 2020-06-11 11:12:05 +02:00
Martin Marmsoler
19d494afcd fix nullpointer exception 2020-06-11 11:12:05 +02:00
Martin Marmsoler
6d782f4abb try to use TerminalData in Terminal and PartTerminal, sou the code must not be written double 2020-06-11 11:12:05 +02:00
Martin Marmsoler
dcbcb5391f regarding to joshuas email, toXml uses a new structure. So it is changed in the properties interface and xrefproperties 2020-06-11 11:12:05 +02:00
Claveau Joshua
7e9fd8df98 graphics table properties editor : Add two buttons new button
Add new two new buttons :
1. Adjust the selected table to fit as well into folio.
2. Set current geometry to all linked tables : Apply the geometry (pos,
height, width, row to display) of the selected table to all linked
tables.
2020-06-11 10:41:01 +02:00
Ole Carlsen
516435554a Danish translation updated 2020-06-09 14:10:22 +02:00
Laurent Trinques
e96a704215 Update fr en translation 2020-06-09 11:28:20 +02:00
Laurent Trinques
e3b5fbb5ac Update *TS files 2020-06-09 10:45:37 +02:00
Martin Marmsoler
d1742d5685 when model is not yet loaded, but the element editor should be opened, a segmentation fault occurs. Do not set current index when m_model is not yet loaded 2020-06-09 10:01:32 +02:00
Simon De Backer
4a3b7e708a QAbstractTableModel explicitly initialized in copy constructor
warning: base class ‘class QAbstractTableModel’
should be explicitly initialized in the copy constructor [-Wextra]
2020-06-08 21:14:15 +02:00
Ole Carlsen
521ed615d9 Minor Danish update 2020-06-08 18:43:43 +02:00
Laurent Trinques
fea245d485 Update polish translation, thanks Pawel 2020-06-08 03:55:36 +02:00
Simon De Backer
fe64923ffe fix deprecated warning QSet<T> QList<T>::toSet()
Use
QSet<T>(list.begin(), list.end())
instead.

This function was introduced in Qt 5.14
2020-06-08 03:52:51 +02:00
Simon De Backer
37658efd0d fix deprecated warning qUpperBound
Use
std::upper_bound
instead.
2020-06-07 16:42:41 +02:00
Simon De Backer
20a739fa96 fix deprecated warning QList::swap() attempt 2
Use
QList::swapItemsAt()
instead.

This function was introduced in Qt 5.13.
2020-06-07 16:42:26 +02:00
Simon De Backer
24528b0fdb fix deprecated warning QModelIndex::child
Use
QModelIndex::index
instead.

This function was DEPRECATED_SINCE(5, 8)
2020-06-07 16:42:17 +02:00
Simon De Backer
803414f716 remove user-defined copy constructor
We need to define our own copy constructor only
if an object has pointers or any runtime allocation
of the resource like file handle, a network connection..etc.

note: Default constructor does only shallow copy.
2020-06-07 16:41:42 +02:00
Claveau Joshua
9085c6fcda table item : remove a table remove also all linked tables 2020-06-05 20:00:13 +02:00
Claveau Joshua
ae9ef3cf21 Make a copie of previous table model when unlink a table from her previous table. 2020-06-04 14:17:14 +02:00
Claveau Joshua
8ad876fb31 Improve the use of the database 2020-06-03 19:46:27 +02:00
Claveau Joshua
b445ce8934 Nomenclature model : Improve function to setup the name of header 2020-06-03 19:15:21 +02:00
Claveau Joshua
042faeae32 Table widget : Enable arrow to quicly switch to previous/next linked table 2020-06-02 19:44:19 +02:00
Simon De Backer
de88b32e5b fix deprecated warning QPainter::drawRoundRect
Use
QPainter::drawRoundedRect
instead.

This function was introduced in Qt 4.4.
2020-06-02 06:23:17 +02:00
Simon De Backer
74c3fc8dd9 fix deprecated warning QTreeWidgetItem::setBackgroundColor
Use
setBackground()
instead.
This function was introduced in Qt 4.2.
2020-06-01 11:53:38 +02:00
Ole Carlsen
faf35c4985 Danish translation updated 2020-06-01 08:29:13 +02:00
Laurent Trinques
6b16f5b46d Add new conductors properties color and section 2020-05-31 22:33:25 +02:00
Simon De Backer
9b570525d3 fix deprecated warning QDrag::start
Use
QDrag::exec
instead.
2020-05-31 11:43:59 +02:00
Claveau Joshua
0897ed43fe Add table dialog : table config can saved and loaded.
The dialog used to edit the configuration of QetGraphicsTable item can
now save and load a configuration from graphics_table.json file located
in the user config dir.
2020-05-30 20:18:44 +02:00
Laurent Trinques
261abfa10b Revert "fix deprecated warning QList::swap()"
This reverts commit b5a33429df12a5ae5a1e21841faca612afea02cf.
2020-05-30 06:47:34 +02:00
Simon De Backer
b5a33429df fix deprecated warning QList::swap()
Use
QList::swapItemsAt()
instead.
2020-05-30 06:24:40 +02:00
Simon De Backer
09006dc75f fix deprecated warning QDir& QDir::operator=(const QString&)
This function is obsolete.

Use
QDir::setPath() instead
instead.
2020-05-30 06:24:04 +02:00
Simon De Backer
9ee911e484 fix -Wswitch warning
add default and Qt::MarkdownText
2020-05-30 06:23:43 +02:00
Claveau Joshua
27472bdd8b Nomenclature model don't save header data "display role"
The model doesn't save anymore the header data with role
Qt::displayRole.
The header display role is now generated in the fly, by concequent the
header displayed texts are always in the current local
2020-05-29 20:54:50 +02:00
Simon De Backer
70f0541e06 fix deprecated warning qVariantFromValue
This function is obsolete.
Note:
This function was provided as a workaround for MSVC 6
which did not support member template functions.
It is advised to use the other form in new code.

This function is equivalent to QVariant::fromValue(value).
2020-05-29 14:56:07 +02:00
Simon De Backer
86a4701d2b fix deprecated warning QLineF::intersect
This function is obsolete.

Use
QLineF::intersects(const QLineF &line, QPointF *intersectionPoint) const
instead.
This function was introduced in Qt 5.14.
2020-05-29 14:55:54 +02:00
Simon De Backer
0611fe2798 fix deprecated warning QTime::start()
Use
QElapsedTimer::QElapsedTimer()
instead.
This function was introduced in Qt 5.4.
2020-05-29 14:55:37 +02:00
Simon De Backer
22566a1bc6 fix deprecated warning QFontMetrics::width(QChar ch)
Use
QFontMetrics::horizontalAdvance(const QString &text, int len = -1)
instead.
This function was introduced in Qt 5.11.
2020-05-29 14:55:27 +02:00
Simon De Backer
addcdeb2a0 fix -Wmisleading-indentation warning
there were spaces used to indent the conditional line
2020-05-29 14:03:26 +02:00
Simon De Backer
e56701d336 *fix deprecated warning QWidget::getContentsMargins
This function is obsolete.

Use contentsMargins().
instead.

This function was introduced in Qt 4.6.
2020-05-29 14:03:00 +02:00
aitolos
61ebbbc23c Greek Lang update 2020-05-28 21:45:37 +03:00
sdeffaux
0b3d287c75 add and update symbols 2020-05-28 17:55:11 +02:00
Simon De Backer
362509cb38 fix deprecated warning QSet<T>::toList() Use values() instead.
warning: ‘QList<T> QSet<T>::toList() const [with T = Conductor*]’
is deprecated: Use values() instead. [-Wdeprecated-declarations]

QT_VERSION 5.15.0
GCC 64bit
2020-05-28 15:54:53 +02:00
artgg7300
7948e2b1d3 updated hungarian language files 2020-05-28 06:06:14 +02:00
dlee99
abdb76b68e modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-05-26 22:42:37 +02:00
Claveau Joshua
75e6f28221 Reduce the time spend when nomenclature table is created automatically 2020-05-26 22:00:32 +02:00
Laurent Trinques
5772d919e3 Update *TS files 2020-05-25 13:44:14 +02:00
Laurent Trinques
1e9cb8a75a Update Polish translation, thanks Rafal 2020-05-25 13:26:32 +02:00
Simon De Backer
bb2c822b2f Add some "Vaillant" hydraulic elements for allSTOR 2020-05-24 19:20:50 +02:00
Claveau Joshua
65777a0fb5 Minor typo 2020-05-24 17:23:11 +02:00
Claveau Joshua
df26c5b7ed Add nomenclature dialog : enable option "add new folio and table if needed" 2020-05-24 17:17:17 +02:00
Claveau Joshua
7ea42752a4 Change the way how a diagram is added
Now it's the project itself who manage the adding of diagram instead of
the diagram view, it's more coherent
2020-05-24 16:24:39 +02:00
Claveau Joshua
edfdf83c99 Nomenclature : enable option "fit to diagram" 2020-05-24 15:03:56 +02:00
Maximilian Federle
0c550497d1 snap: Start org.freedesktop.portal.Desktop on launch
Open & save dialogs might fail if it is not running.
org.freedesktop.portal.Desktop is DBus activated and this doesn't play
nicely with AppArmor at the moment.
2020-05-24 14:12:09 +02:00
Laurent Trinques
30dbcae2a5 Typo 2020-05-20 02:36:23 +02:00
Laurent Trinques
a7121cce50 Improve : Try to launch qet_tb_generator portable version of the plugin
if user put binary on QDir::homePath()
2020-05-20 02:27:47 +02:00
Laurent Trinques
83b58ec246 Try to launch qet_tb_generator portable version of the plugin if user
put binary on QDir::homePath()
2020-05-19 11:15:52 +02:00
Claveau Joshua
77c9cad501 Animate search and replace widget when close with the button of the widget 2020-05-17 15:59:23 +02:00
Laurent Trinques
987dbd3fa6 Add symbol 2020-05-17 10:24:13 +02:00
Laurent Trinques
b41a0656ec Minor : increase max conductors to 20px 2020-05-16 16:00:32 +02:00
Laurent Trinques
fca9c7c479 Minor : set maximum to 99 text conductor 2020-05-16 15:56:00 +02:00
Laurent Trinques
f360973eeb Macos add key LSMinimumSystemVersion 2020-05-15 13:34:41 +02:00
Claveau Joshua
70493a06f7 Minor : typo and tab edit order 2020-05-15 11:38:09 +02:00
Claveau Joshua
e40ba32281 Bug fix : some element informations can't be set 2020-05-15 10:26:05 +02:00
Laurent Trinques
4ee65320f3 Update binary of norwegian translation 2020-05-14 20:20:56 +02:00
Joel As
da297c8591 Recent update of norwegian translation 2020-05-14 20:16:52 +02:00
Laurent Trinques
6041818d8f Update qet_nb.ts qet_nb.qm, thanks Joel 2020-05-14 17:32:57 +02:00
Laurent Trinques
d14d5de442 Update qet_nb.ts 2020-05-14 16:48:30 +02:00
Laurent Trinques
cc9124cdfb Prepare to add new country Norwegian switch 2020-05-14 16:01:40 +02:00
Ole Carlsen
b1ef5d4b2b anish translation updated 2020-05-12 18:44:36 +02:00
Claveau Joshua
0015f4a694 Qet graphics table item can be removed from diagram 2020-05-12 11:17:25 +02:00
artgg7300
50f061697c translated hungarian files 2020-05-10 10:11:08 +02:00
Claveau Joshua
37efa97ce7 qet graphics table item : to/from xml change
The font, alignment and margins is not saved by the table anymore but by
the model.
2020-05-08 00:08:57 +02:00
Maximilian Federle
9fa7e21905 snap: Prevent the use of the KDE Plasma platformtheme
A KDE session forces the KDE Plasma platformtheme which is incompatible with QET.
Unset the ENV vars in that case to prevent loading of the theme.
2020-05-06 23:15:52 +02:00
Laurent Trinques
bc9ebca815 Update *TS files 2020-05-06 21:12:36 +02:00
Laurent Trinques
f3138960b1 Fix : key sequence 'space' don't work with nl be local 2020-05-06 21:11:11 +02:00
Laurent Trinques
f316ab5900 Update *TS files 2020-05-06 19:21:32 +02:00
Claveau Joshua
66a3c269ca Fix : key sequence 'space' don't work with nl be local 2020-05-06 19:14:42 +02:00
Laurent Trinques
d5f3531d66 Snap remove i386 architecture 2020-05-06 10:46:10 +02:00
Laurent Trinques
df3dd717d0 Enable only amd64 i386 architectures 2020-05-06 10:05:47 +02:00
Laurent Trinques
1320d12535 Refresh github link for DXFtoQET-2020 2020-05-06 09:49:03 +02:00
Laurent Trinques
2f0845daa9 Update *TS files and update english and french translation 2020-05-06 08:53:57 +02:00
Laurent Trinques
b481073993 Fix typo 2020-05-06 08:41:18 +02:00
Laurent Trinques
7ea2474a6c Update Binary be translation 2020-05-06 07:07:29 +02:00
Simon De Backer
96028b1499 add translation be 2020-05-06 07:05:42 +02:00
Claveau Joshua
efac27b9b8 Nomenclature : Add dialog when insert a new nomenclature table 2020-05-05 20:38:31 +02:00
Claveau Joshua
3905371da6 Fix wrong element text value when loading from xml 2020-05-03 20:29:55 +02:00
Laurent Trinques
c49ee74d81 Add new Vacuum Technology elements, thanks Dinozzo 2020-05-03 15:12:23 +02:00
sdeffaux
4f8df55099 suppression de doublon 2020-05-02 16:14:23 +02:00
Laurent Trinques
711db09855 Add some "Vaillant" elements, thanks riesermauf 2020-05-02 16:08:11 +02:00
Claveau Joshua
0aae330bef Minor : improve layout for low resolution screen 2020-05-01 18:33:11 +02:00
Claveau Joshua
f20df15ccf Nomenclature query can be saved/load 2020-05-01 18:07:15 +02:00
Laurent Trinques
7e7346da6e Add Weintek HMI symbols, thanks Rafał 2020-04-30 21:48:32 +02:00
gleissonjoaquim3
2c8c624e56 Update on PT_BR translation members 2020-04-30 12:17:11 +02:00
Laurent Trinques
f78ac2c82b Fix missing many languages after run make install
or made any distro specific package, thanks Charles
2020-04-29 13:49:19 +02:00
Claveau Joshua
9bb58fedea Element query widget : widget restor is state according to the current query 2020-04-29 11:48:45 +02:00
artgg7300
bc1f10aa80 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet
Translated hungarian files
2020-04-28 20:22:58 +02:00
artgg7300
9267befbbc Translated hungarian language files 2020-04-28 20:06:56 +02:00
Laurent Trinques
418e45552d macOS : add more explanation in Message Box about install plugin 2020-04-28 17:47:52 +02:00
Ole Carlsen
a95a8b7fb6 Update danish translation 2020-04-27 19:46:10 +02:00
Claveau Joshua
a8a9ddc3d6 Add view 'element_nomenclature_view' to projectDataBase
Add a view for the nomenclature to reduce the size of the query and make
it more understandable
2020-04-25 15:52:06 +02:00
Claveau Joshua
44bf0a5ce4 minor 2020-04-23 20:01:01 +02:00
Claveau Joshua
9525278be7 Animate show and replace widget.
this feature is totally useless and by consequent indispensable.
2020-04-23 19:52:56 +02:00
Laurent Trinques
f4cbf21075 Add new Delta symbols, thanks Rafał 2020-04-23 12:45:37 +02:00
sdeffaux
a19eb57a0f add symbols and reorganised folders 2020-04-23 12:06:35 +02:00
Laurent Trinques
e4c15e21bf Update translation ang generete new Norwegian dialects nb 2020-04-20 07:11:38 +02:00
dlee99
d1af0e921c modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-04-19 23:05:10 +02:00
sdeffaux
ba1b306834 add symbols
j'ai vu un louper sur les disjoncteur de l'ancien commit
2020-04-19 14:34:36 +02:00
Laurent Trinques
e99f8c9e7a Update pt_b binary translation 2020-04-19 13:46:49 +02:00
gleissonjoaquim3
88641cba2a Update translation pt-br 2020-04-19 13:44:46 +02:00
Claveau Joshua
8f4d5ef9dd element query widget : minor improvement
Double click on an item act like add or remove push button
2020-04-18 18:22:00 +02:00
Claveau Joshua
8cd9b3ba6e Element info query : fix wrong behavior 2020-04-18 18:11:56 +02:00
sdeffaux
f3c4d94822 add symbols 2020-04-18 14:44:47 +02:00
Claveau Joshua
61d4ddfcda QetGraphicsTableItem : Imrpove how the table is resized 2020-04-17 23:15:39 +02:00
Claveau Joshua
9eb651449f Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-04-17 18:41:02 +02:00
Claveau Joshua
908d79925c save/load QetGraphicsTableItem to/from .qet file 2020-04-17 18:40:28 +02:00
Laurent Trinques
64ad7967ed Update Fr translation 2020-04-17 12:21:09 +02:00
Laurent Trinques
bc11e03f00 Update En translation 2020-04-17 12:05:06 +02:00
Laurent Trinques
92074987c6 Update *TS files 2020-04-17 11:47:20 +02:00
Maximilian Federle
74d5d0f6ef snap: Use symlinks instead of bind-mounts
As per https://snapcraft.io/docs/snap-layouts,
bind-mounts significantly increase the startup time of the snap.
Use symlinks instead for better performance.
2020-04-17 05:29:31 +02:00
Maximilian Federle
983d78727c snap: Set correct PYTHONPATH
Fix qet-tb-generator not being able to find
its packages.
2020-04-17 05:29:31 +02:00
Maximilian Federle
07d3fd1ed4 snap: Use SNAP_USER_COMMON as HOME
This prevents the config and the user collection from being
backed up by snapd on update. If the user reverts qelectrotech,
the current collection will thus not be overwritten by the
possibly outdated backup.

Add a migration script that automatically transfers the user's .qet
directory to the new location.
2020-04-17 05:29:31 +02:00
Maximilian Federle
6867bf813a snap: Do not ship files already included in content snaps
Remove all files from prime that are already included in our content
snaps, which reduces snap size considerably.
2020-04-17 05:29:31 +02:00
Maximilian Federle
b9002ab4da snap: Use kde-frameworks-5-core18-sdk to build
Use kde-neon's corresponding sdk snap instead of
build-packages.
2020-04-17 05:29:31 +02:00
Maximilian Federle
5b1bd22b30 snap: Use kde-neon extension
The kde-neon extension reduces our boilerplate in snapcraft.yaml
and reduces the snap size considerably, as we do not need to ship
any library that is already included in the kde-frameworks-5-core18
snap itself.

This limits qelectrotech builds to the architectures supported
by kde-frameworks-5-core18, i.e. only amd64.
2020-04-17 05:29:31 +02:00
Laurent Trinques
f1036fe017 Add new symbols Legrand Viking, thanks Arnaud 2020-04-16 17:34:30 +02:00
Laurent Trinques
bddcb0a5ae Minor: aboutqetdialog.ui set compilation information selectable by mouse 2020-04-16 08:50:19 +02:00
Laurent Trinques
47152d7cac Update qelectrotech.qrc 2020-04-15 10:59:22 +02:00
Laurent Trinques
081f44f8be Element Editor add new ColorHTML, THANKS Arnaud for the patch 2020-04-15 10:27:54 +02:00
Laurent Trinques
cc72bb6e06 Revert Update org.qelectrotech.QElectroTech.json not fixing Python's Tkinter need for qet-tb-generator 2020-04-15 08:44:29 +02:00
Laurent Trinques
3f2441eb8a Update org.qelectrotech.QElectroTech.json for Flatpak build 2020-04-15 07:55:18 +02:00
sdeffaux
7bbef5785d update symbols
mise à jour en autre des symbols GCE il leurs manquer un  nom
2020-04-14 06:34:38 +02:00
sdeffaux
345ebeebcd add symbols and reorganise folders 2020-04-13 15:19:08 +02:00
Laurent Trinques
3fc7ff525c Add new GCE symbols 2020-04-13 07:01:06 +02:00
Claveau Joshua
851265844f Fix break from merge of qetgraphicsTableItem to master 2020-04-12 20:10:30 +02:00
Claveau Joshua
55876293bc Replace minus (-) by underscore (_) in all element information 2020-04-12 19:45:19 +02:00
Laurent Trinques
234886419d Merge
Q_OS_MACOS need now Python framework Versions 3.8 for launching
qet_tb_generator plugin
2020-04-12 19:04:08 +02:00
Laurent Trinques
73149973e3 Merge remote-tracking branch 'origin/QetGraphicsTableItem' 2020-04-12 18:51:38 +02:00
Claveau Joshua
41541dde2c Minor fix : dynamic text can't have 'label' info if formula is set
When create a new dynamic element text item, on an element which have a
formula, dynamic text can't have 'label' for source of text.
2020-04-10 15:02:18 +02:00
Claveau Joshua
5c6f556ad3 Minor revamp
Remove unused include.
QETproject : Default titleblock are set in the default constructor
instead of set by qetdiagrameditor.
conductor, border, report and xref propertie are now set in the header
of QETProject instead of set by the qetdiagrameditor just after the
creation of a new project.
2020-04-09 16:58:05 +02:00
Claveau Joshua
87f26ce691 Cross Xref : display power contact by default 2020-04-09 16:17:37 +02:00
Claveau Joshua
017f78fb13 Fix crash when close project
At time of closing project, if a master element(may be every linkable
element) is selected and the editor dock display a lot of available
slave, qet crash.
2020-04-09 16:12:21 +02:00
Claveau Joshua
94aa5c0247 Minor fix : in some condition master cross Xref are not displayed 2020-04-08 19:27:24 +02:00
Laurent Trinques
4774389ee0 Revert :
MACOS remove static path "/Library/Frameworks/Python.framework/Versions/
    *" for launching  qet_tb_generator plugin
2020-04-05 09:45:26 +02:00
Laurent Trinques
f8e0b499f3 MACOS remove static path "/Library/Frameworks/Python.framework/Versions/
*" for launching  qet_tb_generator plugin
2020-04-05 09:32:45 +02:00
Laurent Trinques
ebc55bb440 Q_OS_MACOS need now Python framework Versions 3.8 for launching
qet_tb_generator plugin
2020-04-05 08:58:01 +02:00
Laurent Trinques
5b32ce9e61 Add new Legrand elements, thanks Arnaud 2020-04-05 08:15:12 +02:00
Laurent Trinques
f1999946fa Czech translation update, thanks Pavel 2020-04-03 06:23:45 +02:00
sdeffaux
31af660c73 add symbol 2020-04-02 13:49:00 +02:00
aitolos
2f2d72ed01 Update Greel Language files (spellcheck, typos) 2020-03-30 21:01:48 +03:00
Laurent Trinques
a4dc920b62 Add new symbols, thanks Bisku 2020-03-28 13:50:17 +01:00
aitolos
c22d8d70a0 Update Greek Lang files 2020-03-28 12:45:12 +02:00
Laurent Trinques
99064fe2ab Moving elements by mouse does not respect the grid settings
When moving element by mouse, snapping to grid uses fixed 10 px steps
hardcoded in source instead of using the value from grid settings. When
moved by keyboard, the grid step is respected.
It is due to QPointF Diagram::snapToGrid(const QPointF &p) function not
considering the settings.

Thanks jethro for this patch
2020-03-27 21:21:49 +01:00
Laurent Trinques
abe5fc3b4e Update Greek TS, thanks aitolos 2020-03-27 04:52:20 +01:00
sdeffaux
970e3cd207 update symbols 2020-03-25 20:09:20 +01:00
Claveau Joshua
aaccc33e7b Minor fix: conductor text don't move with element.
When move two elements connected by a conductor, the conductor text
don't follow the movement when he is previously moved by the user.
2020-03-22 20:19:41 +01:00
Laurent Trinques
c0746b3fa4 Delete duplicate folder 2020-03-20 14:55:57 +01:00
sdeffaux
eab9e39290 mise a jour symbol 2020-03-15 21:54:27 +01:00
sdeffaux
d582e1c25b add symbols and update 2020-03-14 14:43:00 +01:00
artgg7300
9e842e5d09 updated hungarian translate 2020-03-14 08:00:46 +01:00
Laurent Trinques
23202c319c Add new Rexroth valves, thanks Fernando 2020-03-10 16:42:36 +01:00
dlee99
d703fb687f modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-03-09 21:47:14 +01:00
sdeffaux
6479f8e7b8 add symbols and update 2020-03-08 17:22:19 +01:00
Claveau Joshua
a899fa720b Merge branch 'QetGraphicsTableItem' 2020-03-08 10:41:45 +01:00
Claveau Joshua
f7a090c3ca Add widget to edit QetGraphicsTableItem and QetGraphicsHeaderItem 2020-03-08 10:38:49 +01:00
Laurent Trinques
487c293860 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2020-03-07 17:43:10 +01:00
Laurent Trinques
62d7d9a784 dd new Wago elements, thanks Pcl-user 2020-03-07 17:41:04 +01:00
nuri
dd5e81da6e Updated german translation 2020-03-06 18:36:49 +01:00
Ole Carlsen
0daa6b436f Danish translation updated 2020-03-06 15:41:05 +01:00
Laurent Trinques
57ded906de Update translation 2020-03-06 13:06:21 +01:00
Laurent Trinques
a9cdec6363 Update *TS file and generate new Slovakia ts file 2020-03-06 12:57:38 +01:00
sdeffaux
4c04a73022 add symbols hager 2020-03-05 16:47:04 +01:00
Laurent Trinques
ad1fddadf2 Add new symbol, thanks Mihicz 2020-03-05 06:24:57 +01:00
Laurent Trinques
7d5eab748a Refresh legrand/61-busbar/ dir, thanks Arnaud 2020-03-05 06:22:25 +01:00
Laurent Trinques
6db1fe7666 Refresh legrand/61-busbar/ dir, thanks Arnaud 2020-03-04 19:48:50 +01:00
Laurent Trinques
b5a15e49f1 Refresh bticino dir 2020-03-04 05:53:46 +01:00
Laurent Trinques
c5eba536fd Add new legrand & bticino symbols, thanks Arnaud 2020-03-03 20:05:12 +01:00
Laurent Trinques
4264384675 Add new icp-das symbols, thanks Arnaud 2020-03-03 18:18:01 +01:00
sdeffaux
fffa84efd6 add symbols 2020-03-02 12:30:18 +01:00
Laurent Trinques
27c3cc0000 Refresh ICP-DAS elements, thanks Arnaud 2020-02-29 15:27:35 +01:00
Laurent Trinques
670cad1092 Add ICP-DAS elements, thanks Arnaud 2020-02-29 13:46:40 +01:00
Laurent Trinques
85a2600e58 Improve files names extension for Gnome DE and Flatpak 2020-02-26 14:50:56 +01:00
sdeffaux
6535a93b66 Traduction and add symbols 2020-02-25 04:56:48 +01:00
Claveau Joshua
2a29b4b240 Add itemTYpe for QetGraphicsTableItem and QetGraphicsHeaderItem 2020-02-21 08:55:35 +01:00
Claveau Joshua
43baed69db Add QetGraphicsHeaderItem 2020-02-20 21:33:26 +01:00
Mathieu Bridon
a16b505aa6 flatpak: Properly rename the appdata file
Adding the full file name was required, just like for renaming the
desktop files, unlike for renaming the icons.
2020-02-17 15:17:42 +01:00
sdeffaux
39d442b53d add symbols 2020-02-16 18:06:47 +01:00
Laurent Trinques
f51fd44b55 Change dmg loaction build path to new build-aux/ 2020-02-14 14:57:38 +01:00
Mathieu Bridon
975f0db7ec build: Add a Flatpak manifest
This allows building the master branch of QElectroTech with a simple
command:

$ flatpak-builder _build build-aux/flatpak/org.qelectrotech.QElectroTech.json
2020-02-14 14:43:49 +01:00
Mathieu Bridon
d26b189d3d build: Rename the packaging directory
The Linux and Windows packaging recipes don't have any restrictions on
where they have to be located. Snapcraft is the strictest on this.

Moving this to build-aux/ means we can have all the packaging recipes in
one place.
2020-02-14 14:43:36 +01:00
Mathieu Bridon
3f38f4b16c build: Move the Snap recipes
Snapcraft can find its build recipes in 2 places:

* a snap/ directory at the top of the sources;
* a build-aux/snap/ directory, since Snapcraft 3.3;

This commit moves from the former to the latter, so that we can group
all the packaging recipes together.
2020-02-14 14:43:36 +01:00
Laurent Trinques
5265db6cf7 Add new Legrand symbols, thanks Arnaud 2020-02-02 18:34:08 +01:00
Claveau Joshua
fd2c210f49 Add QetGraphicsTableItem + entry "add nomenclature" in project menu 2020-02-02 16:33:19 +01:00
Laurent Trinques
336887b394 Fix # bug 182, thanks Wilfried 2020-01-30 16:27:27 +01:00
sdeffaux
aa06d7ffcb add symbols 2020-01-28 14:15:19 +01:00
sdeffaux
e8dcfee552 add symbols 2020-01-28 14:15:19 +01:00
Laurent Trinques
fed5a30e8f Add new symbol, thanks Alexis 2020-01-27 08:25:10 +01:00
Laurent Trinques
6abeb934e1 Merge remote-tracking branch 'origin/test_pugi' 2020-01-26 14:43:48 +01:00
Claveau Joshua
f8dcdec735 Improve loading time 2020-01-23 10:45:14 +01:00
Laurent Trinques
ebf76ef505 Add news symbols, thanks Arnaud 2020-01-22 10:56:36 +01:00
Claveau Joshua
f297e28b64 Loading elements collections doesn't freeze gui anymore. 2020-01-19 11:53:40 +01:00
dlee99
8e4b5a8dca modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-01-19 00:35:09 +01:00
Claveau Joshua
ed2e72e995 Minor improvement about using pugixml 2020-01-18 20:03:24 +01:00
Claveau Joshua
dc32a4298b Remove old aboutQet class 2020-01-18 16:34:46 +01:00
Claveau Joshua
51d8b2a2bc Revamp the aboutQet dialog with Qt designer and add a new tab "libraries" 2020-01-18 16:25:30 +01:00
Claveau Joshua
dca44566e8 Clean code 2020-01-17 19:33:13 +01:00
dlee99
0e84cef85e modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2020-01-13 20:24:57 +01:00
Laurent Trinques
12a0f8d831 Add new symbols, thanks David 2020-01-10 18:16:52 +01:00
joshua
91353b5578 Minor : Fix wrong position with cross ref item displayed as cross 2020-01-09 22:43:16 +01:00
joshua
32c135a7e5 Merge branch 'test_pugi' of ssh://git.tuxfamily.org/gitroot/qet/qet into test_pugi 2020-01-09 10:35:19 +01:00
joshua
3d051419a5 Improve file access on windows and mac OSX 2020-01-09 10:26:10 +01:00
Laurent Trinques
5e63ac316c Update SingleApplication to latest upstream sources 2020-01-08 14:27:52 +01:00
Laurent Trinques
fbec9c9aa5 Add Checkbox to enable or disable the dialog to display the elpsaed time
of collection loading
2020-01-07 13:02:43 +01:00
Laurent Trinques
7ebc395f8b Update Polish translation, thanks Pawel 2020-01-06 12:49:37 +01:00
joshua
3492540d53 Use pugixml for parse local name of directory and element informations 2020-01-04 23:33:35 +01:00
joshua
eb903a12b0 Add option to switch between Qtxml or pugi xml. Add dialog to display the elpsaed time of collection loading. 2020-01-04 15:59:27 +01:00
joshua
6398feba0d Minor pugi improvement 2020-01-04 13:50:58 +01:00
joshua
674e9e31a5 Add pugi_xml test branch 2020-01-04 11:30:43 +01:00
Laurent Trinques
3a2a99c87a Update README.md 2019-12-31 11:43:24 +01:00
Laurent Trinques
4ee05530ae Update README.md 2019-12-27 18:43:18 +01:00
Laurent Trinques
f10df82887 Improve README.md 2019-12-27 11:21:02 +01:00
Laurent Trinques
5e6ba5f157 Restore old READMe file 2019-12-27 03:01:33 +01:00
Laurent Trinques
96fc140918 Rename README file extenstion 2019-12-27 02:55:40 +01:00
Laurent Trinques
95a36d54dc Improve Readme file for Github repository 2019-12-27 02:44:16 +01:00
Laurent Trinques
d7e5a84be1 Merge branch '20191111_fix_permissions' 2019-12-26 03:49:02 +01:00
dlee99
d743f15bb3 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2019-12-22 16:00:34 +01:00
joshua
523e6692ad Remove a diagram doesn't save the project anymore 2019-12-20 18:32:55 +01:00
Laurent Trinques
f7c183c9a9 Revert 2019-12-14 13:38:39 +01:00
Laurent Trinques
fb8f86f7f1 App does not work with Qt::AA_EnableHighDpiScaling flags enabled on
Windows platform since Qt 5.13.X
2019-12-14 12:10:11 +01:00
joshua
e618539ddb Fix crash when quickly move tab of digramview 2019-12-10 20:01:39 +01:00
Laurent Trinques
2435d23334 Add QFutureWatcher 2019-11-27 17:41:51 +01:00
artgg7300
cec62679be fixed syntax error in hungarian translation 2019-11-24 15:59:47 +01:00
dlee99
f806d82b41 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2019-11-23 18:38:55 +01:00
Laurent Trinques
41af7abadb Fix typo 2019-11-18 12:53:05 +01:00
nuri
b39e000fa8 Updated german translation 2019-11-18 08:35:10 +01:00
Ole Carlsen
2e89016098 Updated Danish translation 2019-11-17 14:20:56 +01:00
artgg7300
236b37fa12 Updated hungarian translate 2019-11-17 07:21:21 +01:00
Laurent Trinques
68a685a87e Update *TS files 2019-11-17 02:41:40 +01:00
stromie@web.de
15c58e2362 bugfix, XREF Update when Text Alignment used
Signed-off-by: stromie@web.de <stromie@web.de>
2019-11-16 13:17:08 +01:00
joshua
0b196b6caf Remove QTabBar custom style 2019-11-14 21:24:55 +01:00
Kim Kirwan
fe2071c4b2 Remove Execute Permissions from Non-Executables
No source code changes.
Removed execute permissions from 7 files total:
*.pro and *.pri files (4)
main.cpp (2)
*.txt file (1)

Signed-off-by: Kim Kirwan <Kim@KimKirwan.com>
2019-11-11 04:22:22 -06:00
joshua
740b0942b7 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-11-11 11:17:32 +01:00
joshua
c68c1a281e CSV export : minor gui change 2019-11-11 11:17:18 +01:00
artgg7300
7a24f2fb36 updated hungarian translation 2019-11-11 06:29:09 +01:00
sdeffaux
72315a2a0f update symbols 2019-11-10 22:32:38 +01:00
sdeffaux
e887845897 add symbol 2019-11-10 22:32:38 +01:00
sdeffaux
cb52625afa Update qet_directory 2019-11-10 22:32:38 +01:00
joshua
6e0eab2608 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-11-10 19:46:46 +01:00
joshua
f912eea8d4 CSV export : improve save/load export configuration. 2019-11-10 19:46:28 +01:00
Laurent Trinques
a0fbcfe06c Fix symbol state 2019-11-09 18:27:58 +01:00
joshua
35d6fe5935 CSV export : change menu and dialog text 2019-11-09 14:33:33 +01:00
joshua
43361942e3 CSV export : improve selection type. 2019-11-09 14:28:13 +01:00
joshua
c8ab83a3ad CSV export : improve database and query 2019-11-09 11:38:30 +01:00
joshua
143cf088ba Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-11-08 19:06:25 +01:00
joshua
2df9528082 CSV export : fix some missing informations. 2019-11-08 19:06:11 +01:00
nuri
aa487495b5 Updated german translation 2019-11-08 07:58:29 +01:00
dlee99
da6dacca04 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2019-11-07 22:01:48 +01:00
joshua
fc73d53d73 CSV export : correctly export label 2019-11-07 21:21:07 +01:00
Ole Carlsen
32a4d9c3fe Danish translation updated 2019-11-06 17:14:03 +01:00
Laurent Trinques
ff9ccd6f86 Update *TS files 2019-11-06 17:01:47 +01:00
Laurent Trinques
13971c00ee Typo 2019-11-06 16:13:41 +01:00
Laurent Trinques
60d2c403b3 Nomenclature export : Minor change in UI 2019-11-06 16:10:24 +01:00
Laurent Trinques
3fa6025c1d Update *TS files 2019-11-06 14:25:18 +01:00
Laurent Trinques
9c874af52e Nomenclature export : add coil and protection query 2019-11-06 14:16:55 +01:00
Ole Carlsen
ce190dd323 Updated Danish translation 2019-11-05 21:06:13 +01:00
nuri
8f13ef06cb Updated german translation 2019-11-05 13:39:31 +01:00
tititiou36
dc360c57b5 Update qet_fr.ts
Ajout/correction de traduction avec pluriel
2019-11-05 11:07:18 +01:00
Laurent Trinques
a75c0c5c41 Update *TS files 2019-11-05 08:03:24 +01:00
joshua
97a2c8d2c9 Nomenclature export : items double click
User can double click on item to add/remove information to export.
2019-11-04 20:16:48 +01:00
joshua
ff7eb4d11c Revampe nomenclature
Nomenclature is now totally revamped, user can define information to
export and the order of theme.
2019-11-03 13:27:46 +01:00
joshua
7d9b3d8c36 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-11-03 13:20:16 +01:00
Laurent Trinques
ce335f321f Add element, thanks Alexis 2019-11-01 16:48:21 +01:00
Laurent Trinques
d09b117bef Update EN translation 2019-10-29 18:08:29 +01:00
Laurent Trinques
8da9903877 Minor 2019-10-27 17:57:23 +01:00
Laurent Trinques
b2a77450de Revert previous commit 2019-10-27 17:56:13 +01:00
Laurent Trinques
345a1b4420 Typo 2019-10-20 17:29:19 +02:00
Laurent Trinques
fae2b0dab0 Try to fix Windows sqlite cache PATH 2019-10-20 17:25:54 +02:00
joshua
3c89c6f2ac Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-10-11 20:37:14 +02:00
Laurent Trinques
5fb7414b45 Add contributor 2019-10-09 14:47:47 +02:00
Laurent Trinques
7140cf9ca6 Update turkish translation, add forget qml files thanks Emir 2019-10-09 14:44:37 +02:00
Laurent Trinques
99681d27e4 Update turkish translation, thanks Emir 2019-10-09 14:33:25 +02:00
Laurent Trinques
265de06fe8 Update Hungarian translations, thanks Gabor 2019-10-07 06:58:59 +02:00
nuri
c50caadf78 Updated german translation 2019-10-06 11:28:42 +02:00
Ole Carlsen
e2e18e3736 Dansih translation updated 2019-10-06 09:57:22 +02:00
dlee99
de443e9f7b modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2019-10-05 22:55:47 +02:00
Laurent Trinques
87d3322ee9 Update TS files 2019-10-05 14:56:55 +02:00
joshua
5de220c485 Conductors num can be exported to csv file. 2019-10-04 19:37:46 +02:00
joshua
8cc34d5f6a Simplify how a project is save
Probably only on windows, sometime the .qet file is empty after saving.
With this commit we simplify the save function, by avoiding to import an
xml node from another one, so we minimize the risk of failure.
2019-09-30 20:03:24 +02:00
joshua
eba9148924 Fix crash when a .qet file with 0 diagrams. 2019-09-27 19:25:38 +02:00
nuri
2caaa2fae6 Updated german translation 2019-09-23 09:08:40 +02:00
Laurent Trinques
6c21b1fb5f Refresh Wago symbols, thanks Plc-user 2019-09-22 16:23:53 +02:00
Laurent Trinques
b8e33bdf98 Update hungarian translation, thanks Gábor 2019-09-20 14:28:07 +02:00
Laurent Trinques
f86e26314d Add symbol, thanks Christophe 2019-09-20 10:09:50 +02:00
dlee99
79d3c75857 modified: lang/qet_nl.qm
modified:   lang/qet_nl.ts
2019-09-18 23:07:36 +02:00
Ole Carlsen
8c50496bd2 Danish translation updated, latest update apparently went wrong. 2019-09-18 16:37:58 +02:00
joshua
0ceb38eb66 Fix : element prefix don't work with custom path of user elements collection
See post at
https://qelectrotech.org/forum/viewtopic.php?pid=10593#p10593
2019-09-17 20:52:47 +02:00
Laurent Trinques
4327080b3c Add EN and FR translations 2019-09-17 13:07:34 +02:00
Laurent Trinques
33a851a9b4 Update *TS files 2019-09-17 12:58:24 +02:00
Laurent Trinques
5a3b5c9cd7 Update Changelog 2019-09-09 16:44:32 +02:00
Laurent Trinques
c4c829c205 Update Changelog 2019-09-09 10:38:56 +02:00
Laurent Trinques
ccb8b06427 macOs : add command key for fix mouse scroll 2019-09-09 09:02:16 +02:00
Laurent Trinques
a0a7513847 Replance Q_OS_MAC Deprecated by Q_OS_MACOS 2019-09-08 18:29:29 +02:00
Laurent Trinques
83eba80445 aDD scroll page tabs ON MACos, Thanks Giovanni 2019-09-08 18:07:20 +02:00
Laurent Trinques
76ba2aa3eb Add new symbols, thanks Michele 2019-09-08 15:51:38 +02:00
Laurent Trinques
01723497f3 Improve QTabBar::tab:selected style 2019-09-05 16:02:01 +02:00
Laurent Trinques
579e0badb2 Typo 2019-09-04 23:45:02 +02:00
Laurent Trinques
d24df771a3 Add green style color for tab selected 2019-09-04 23:42:24 +02:00
Laurent Trinques
b121dad562 For the Flatpak package : remove the file name extension added
automatically to the saved files even if the user sets an unknown file
extension for the program.
2019-09-03 22:54:09 +02:00
Laurent Trinques
e4741f3604 Improve Wago symbols, thanks Plc-user 2019-09-03 10:35:28 +02:00
joshua
519517a8fd Minor : fix typo 2019-09-02 20:37:33 +02:00
Laurent Trinques
701a34b033 Minor : remove Dolphin .directory view file 2019-09-02 03:48:44 +02:00
joshua
86b610dc84 Element editor : improve polygon edition 2019-09-01 21:05:33 +02:00
Laurent Trinques
3fa071841c Merge and clean Stromie patch : feature set xref slave position 2019-08-31 07:37:34 +02:00
Laurent Trinques
d37d802e6b Update MacQetDeploy.sh script 2019-08-30 14:09:08 +02:00
Laurent Trinques
10f249831d Force Fusion style on macOS 2019-08-29 13:12:00 +02:00
Laurent Trinques
cf8947cbc2 Element editor : add a control key for moving by keyboard thes
primitives selected by mouse area in 0.1 increments instead of 1
2019-08-26 14:08:51 +02:00
nuri
1218636cab Updated german translation 2019-08-26 13:55:09 +02:00
Laurent Trinques
130067ffb2 Element editor : add a control key for moving by keyboard selected
primitives in 0.1 increments instead of 1
2019-08-26 12:38:31 +02:00
nuri
80fd3c75ea Updated german translation 2019-08-26 11:13:40 +02:00
Laurent Trinques
0d464af32b Add new Wago elements, thanks Plc-user 2019-08-25 12:40:42 +02:00
Laurent Trinques
7ffa806b1b Improve folio list position (user don't know index is 0)
1 for first position
2 for second position
0 always in the end
2019-08-20 13:11:46 +02:00
Laurent Trinques
348a8d9975 Move symbols, thanks Galexis 2019-08-19 13:52:48 +02:00
Laurent Trinques
c054079d7b Set defaut position to second page 2019-08-17 12:58:24 +02:00
Laurent Trinques
6c09dd31d2 Add in setting folio list position spinbox
0 for first position
1 for second position
99999 always in the end
2019-08-17 11:43:13 +02:00
Laurent Trinques
603824aabb Snap: Remove tag hack 2019-08-07 16:19:14 +02:00
Laurent Trinques
86e658692f snap : add cups-bsd stage-packages 2019-08-07 13:22:02 +02:00
Maximilian Federle
90f43e686b snap: Add cups-control interface 2019-08-06 11:05:18 +02:00
Laurent Trinques
9fc7554dfd Update Greek TS, thanks aitolos 2019-08-03 16:05:04 +02:00
Laurent
e583919d72 Update_Spanish_Translations, thanks Alfredo 2019-07-31 19:30:49 +02:00
Laurent Trinques
9ea527986a Update translation BE-nl, thanks Ronny 2019-07-28 05:17:15 +02:00
Laurent Trinques
3e7bb303b8 Rename element 2019-07-24 16:22:33 +02:00
Laurent Trinques
88022b7ed2 Delete element 2019-07-24 16:20:20 +02:00
Laurent Trinques
3a50edbfac Rename folder 2019-07-24 16:18:24 +02:00
sdeffaux
02e1ea447c reorganize 2019-07-24 15:04:58 +02:00
sdeffaux
39c8469481 remove doublon 2019-07-24 15:04:58 +02:00
sdeffaux
9e01b54d0f Update 1734_ib8s.elmt 2019-07-24 15:04:58 +02:00
sdeffaux
132aa754b2 add manufacturer 2019-07-24 15:04:58 +02:00
sdeffaux
ba31d05e0d Update qet_directory 2019-07-24 15:04:58 +02:00
sdeffaux
a13ff777de Update qet_directory 2019-07-24 15:04:58 +02:00
sdeffaux
f0fa3f8929 add munufacturer 2019-07-24 15:04:58 +02:00
sdeffaux
171cd0aeab Update qet_directory 2019-07-24 15:04:58 +02:00
sdeffaux
b8d9334626 Update qet_directory 2019-07-24 15:04:58 +02:00
sdeffaux
85b9280cd7 Update qet_directory 2019-07-24 15:04:58 +02:00
sdeffaux
f564135eb3 Update split-pared-d.elmt 2019-07-24 15:04:58 +02:00
sdeffaux
d9cd48e5ab renaming dossier 2019-07-24 15:04:58 +02:00
Laurent Trinques
abdcef1c46 Splash : minor change 2019-07-21 16:24:01 +02:00
Laurent Trinques
528cb870a7 Update splash 2019-07-21 16:17:13 +02:00
Laurent Trinques
6468063c30 Change Version and displayedVersion update Doxyfile 2019-07-21 15:00:07 +02:00
Dik Leenheer
5fd3f7978d Update Dutch Translation 2019-07-21 14:18:49 +02:00
Dik Leenheer
6382f61c8c Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-07-21 14:07:53 +02:00
Ole Carlsen
70dc2bcf8d Danish translation update 2019-07-20 14:47:15 +02:00
Laurent Trinques
c0543bb9b0 Update *TS files 2019-07-20 14:35:55 +02:00
Laurent Trinques
f5a22b61c7 Fix lintian spelling_error 2019-07-20 14:27:52 +02:00
Laurent Trinques
a375424c07 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-07-17 18:36:27 +02:00
Laurent Trinques
02af727b52 Bump year in Copyrigh notice, thanks Remi 2019-07-17 18:34:55 +02:00
Maximilian Federle
ccc43c8167 Snap: Remove tag hack & remove 'g' from git hash 2019-07-17 17:49:48 +02:00
Ole Carlsen
cb734a0581 Danish translation updated 2019-07-17 15:24:07 +02:00
Laurent Trinques
37fa30a34f Change displayedVersion 2019-07-17 15:00:14 +02:00
Dik Leenheer
5b838c3ca9 Update Dutch Translation 2019-07-16 22:26:27 +02:00
Dik Leenheer
7bea6343b4 Update Dutch Translation 2019-07-16 22:19:25 +02:00
Laurent Trinques
98363379b8 Fix symbol, thanks S.DEFFAUX 2019-07-15 22:00:17 +02:00
Laurent Trinques
be0ec5e12a Remove some duplicate elements and organize elements, thanks S.DEFFAUX 2019-07-15 11:49:02 +02:00
Laurent Trinques
5645188c5c Add new symbols, thanks Richard 2019-07-11 13:53:05 +02:00
Maximilian Federle
474c944692 Add gitignore file 2019-07-08 14:59:24 +02:00
Maximilian Federle
968a68a2a3 Snap: Derive version from git describe 2019-07-08 14:27:44 +02:00
Laurent Trinques
5ef009092a Add new symbols, thanks S.DEFFAUX 2019-07-03 20:04:51 +02:00
Laurent Trinques
5e27d65342 Update Changelog 2019-07-03 15:27:57 +02:00
joshua
863b337972 Minor : don't display gui when qet is launched with specific argument 2019-07-02 21:13:55 +02:00
joshua
e3d386af67 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-07-02 21:12:01 +02:00
Laurent Trinques
cfdb9858e9 Update changelog 2019-07-02 08:26:19 +02:00
Laurent Trinques
4d79751d37 Update *TS files 2019-07-01 20:40:54 +02:00
joshua
63f039e721 Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-07-01 20:16:24 +02:00
joshua
097645f5ff Use of QSAveFile instead a QFile. 2019-07-01 20:12:12 +02:00
nuri
95d1fca171 Updated german translation 2019-06-28 10:36:45 +02:00
Laurent Trinques
0f93e028ba Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet 2019-06-27 16:29:40 +02:00
Laurent Trinques
05e4425913 Remove some duplicate elements and organize elements, thanks S.DEFFAUX 2019-06-27 16:26:37 +02:00
Laurent Trinques
69146a65f7 Sync since SVN
Revision: 5947
Author:   blacksun
Date:     2019-06-26 17:35:49 +0200 (Wed, 26 Jun 2019)
Log Message:
-----------
Fix crash when launch qet with command line argument -v.
2019-06-27 16:21:40 +02:00
ppd
d3ede55f03 Snap: Modify displayedVersion to reflect snap build & set grade: stable
+ add subversion to build-packages


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5945 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-26 07:55:06 +00:00
scorpio810
8fab43c0ec Fix error: cannot validate snap "qelectrotech": cannot validate license "GPL-2.0-or-later": unknown license: GPL-2.0-or-later
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5944 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 20:10:23 +00:00
scorpio810
a8789f78ee Change Displayed version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5942 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 16:55:14 +00:00
scorpio810
408c2418c1 AboutQET : Add compilation date and time
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5941 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 15:35:01 +00:00
scorpio810
9ad634291e AboutQET : minor changes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5940 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 15:19:52 +00:00
scorpio810
66e0ba9c50 AboutQET : improve QSysInfo informations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5939 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 12:58:29 +00:00
scorpio810
1f130846c2 AboutQET : add QSysInfo informations for macOS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5938 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 01:10:49 +00:00
scorpio810
38ca53f5d3 AboutQET : add more QSysInfo informations for debug users
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5937 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-25 01:09:16 +00:00
blacksun
eb6d76f6ba Fix unwanted restore dialog who appear for the current project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5936 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-24 17:44:37 +00:00
scorpio810
36ca191609 Add license specification
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5935 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-24 17:05:56 +00:00
ppd
73a7da682c Snap: Use Github repos for qet_tb_generator & DXFtoQET
+ small fix for amdgpu.ids warning message



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5934 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-24 15:06:13 +00:00
ppd
5b34e02ddf Linux: Add support for building snap packages
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5933 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-24 10:22:46 +00:00
scorpio810
985b368b33 Remove old Snap folder
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5932 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-23 14:43:30 +00:00
blacksun
21de961933 Windows fix : When launch QElectrotech with in argument a .qet file, QElectroTech ask to user to open the restore file of the argument file.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5928 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-22 11:24:59 +00:00
scorpio810
b73d339c78 Minor symbols change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5927 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-21 18:56:04 +00:00
scorpio810
8ef3e9c136 Add new symbols, thanks Christophe
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5926 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-21 18:34:10 +00:00
dlee99
507da9c58f Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5925 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-21 18:13:25 +00:00
scorpio810
dbfe824186 Update yaml, thanks Max
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5924 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-18 17:02:12 +00:00
scorpio810
6402b6d63b Add snap packaging, thanks Max
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5923 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-17 18:30:57 +00:00
scorpio810
0bc4a63a93 Remove some duplicate elements and organize elements, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5922 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-15 21:41:15 +00:00
scorpio810
418b4d57cc Remove some duplicate elements and organize elements, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5921 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-15 21:18:41 +00:00
ossau2mation
89c6565d04 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5920 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-13 14:39:02 +00:00
pawel32640
162668fa27 polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5919 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-12 18:29:42 +00:00
scorpio810
421c7821be Basic shapes : set solid line pattern by default
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5918 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-12 13:16:54 +00:00
artgg
ac217ed862 Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5917 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-12 04:18:19 +00:00
scorpio810
f67d4703a4 When user cleanning an project, set project to modified
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5916 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-12 01:03:02 +00:00
scorpio810
281a93091d Adding or revoming diagram set project to modified
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5915 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-12 00:48:36 +00:00
scorpio810
4f7ce670b4 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5914 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-11 23:47:11 +00:00
scorpio810
6af5b7b9f8 Add new symbols, thanks Eric
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5913 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-11 16:05:20 +00:00
scorpio810
60e6999c2e Remove some duplicate elements and organize elements, thanks S.DEFFAUX part 2
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5912 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-10 13:16:41 +00:00
scorpio810
6f8a2e70ef Remove some duplicate elements and organize elements, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5911 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-10 12:38:38 +00:00
scorpio810
1b771037c2 Bug fix : when user load a project which contains summary pages, project
was marked modified (summary was created on the fly and moved on second
position by default), now the project is no longer marked as amended


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5910 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-10 11:34:57 +00:00
scorpio810
a8978f2f86 Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5909 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-10 10:12:00 +00:00
scorpio810
d77ae57c64 Add a "configure" shortcut "Ctrl+Shift+p" to quickly open the dialog used
for create the auto numbering rules.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5908 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-10 10:07:13 +00:00
scorpio810
707207044e Add Fernando Contributor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5907 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-09 18:02:30 +00:00
scorpio810
fd7893d7e6 Elements final terminals change link type simlple to terminal, thanks S.DEFFAUX to report it
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5906 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-09 16:57:53 +00:00
scorpio810
6f7bbd2e10 Element translation, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5905 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-09 15:22:36 +00:00
blacksun
8a4c9a23cf Remove some duplicate elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5904 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-07 19:34:47 +00:00
scorpio810
dc444af4cf Add new symbols, thanks Galexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5903 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-06 20:29:20 +00:00
pawel32640
337a589047 polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5902 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-04 05:58:58 +00:00
alfredo
3c21e66fbe Spanish translation Qet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5901 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-06-02 03:33:26 +00:00
scorpio810
4b566b7b08 Element translation, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5900 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-31 09:21:12 +00:00
scorpio810
73430beb1f Minor : remove unused shortcut "reload collection"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5899 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-30 23:15:26 +00:00
scorpio810
af04d5e16b Elementspanelwidget: adds keyboard shortcuts to quickly move up, down,
or move the targeted folio to the beginning of the project

F3 MoveUp
F4 MoveDown
F5 MoveUpTop


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5898 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-30 22:17:03 +00:00
scorpio810
76fafc19b2 Fix Static text size of element exported to dxf
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5897 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-30 18:49:43 +00:00
blacksun
4cbf103cbc Static text of element are now exported to dxf
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5896 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-28 19:22:36 +00:00
scorpio810
571d9fdac5 Add symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5895 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-28 15:59:42 +00:00
pawel32640
f1b6abe1f2 polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5894 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-26 21:03:27 +00:00
scorpio810
c869cd46a9 Add new symbol, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5893 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-26 10:12:22 +00:00
scorpio810
42d065df4e Element translation, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5892 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-26 09:55:26 +00:00
artgg
0ce48e0681 Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5891 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-23 19:58:58 +00:00
silvio
3c1cac43ee Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5890 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-23 07:57:52 +00:00
scorpio810
d3a4c833f6 Add symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5889 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-23 00:31:49 +00:00
scorpio810
8d2d187e0f Rfresh symbol, change static texts by dynamic texts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5888 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-22 23:50:46 +00:00
ossau2mation
ab58375447 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5887 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-22 19:16:34 +00:00
scorpio810
7d5708b493 Add symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5886 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-21 23:03:11 +00:00
scorpio810
98a9084859 Update nl translations, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5885 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-21 20:30:25 +00:00
nuri
1a626fb966 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5884 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-21 06:29:23 +00:00
scorpio810
7826512687 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5883 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-21 00:27:04 +00:00
scorpio810
9cb6d62725 QMessageBox : Add QObject to improve translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5882 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-21 00:06:50 +00:00
scorpio810
1519f21a47 QMessageBox : improve HTML messages
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5881 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-20 18:51:32 +00:00
scorpio810
749519ff45 Diagram editor : when plugin qet-tb-generator
"generate terminal blocks and connectors" isn't installed show an
QMessageBox instruction now depending on the operating system for
install it 
Add in QMessageBox url encoding/decoding for easy download packages


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5880 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-20 14:54:04 +00:00
scorpio810
a9b6b20b92 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5879 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 20:00:54 +00:00
scorpio810
3e6a71d899 Diagram editor : Add StatusTip instruction for install and launching DXF
plugin depending on the operating system


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5878 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 19:47:32 +00:00
scorpio810
cc60650b4c Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5877 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 18:34:04 +00:00
scorpio810
cc9fbc2967 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5876 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 18:28:39 +00:00
pavelfric
2aaca04ffc Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5875 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 18:17:14 +00:00
scorpio810
53c0d95f4e Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5874 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 17:23:20 +00:00
scorpio810
9f53198c2a Diagram editor : Add missing tooltip of some QAction
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5873 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 17:18:21 +00:00
pavelfric
aae825b6ac Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5872 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 08:02:17 +00:00
scorpio810
e324e9c59d Minor : add clear button on formulaautonumberingw and numparteditorw
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5871 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 00:30:14 +00:00
scorpio810
be860044fb Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5870 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-19 00:19:23 +00:00
blacksun
28cceca3c5 Element editor : finish the creation of polyline with the last point at the same position of the first point, close the polyline.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5869 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-18 19:49:27 +00:00
blacksun
3f9685832d Add missing tooltip of some QAction
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5868 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-18 19:35:57 +00:00
scorpio810
ef833732f9 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5867 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-18 10:58:17 +00:00
scorpio810
b8b39e2f24 Diagram editor : when user add a polygon, improve message in statusBar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5866 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-18 10:49:01 +00:00
scorpio810
328a33832f Element translation, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5865 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-17 22:00:07 +00:00
scorpio810
5f44933c21 Diagram editor : when user add a polygon, a message in stausBar show how
to finish this shape


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5864 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-17 21:22:10 +00:00
blacksun
2f9b101c19 Diagram editor : when user add a polygon, if the last point is at the same position of the first, then the polygon is closed.
Undo commit 5862


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5863 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-16 17:38:13 +00:00
scorpio810
4503132140 Add ToolTip for QetShapeItem
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5862 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-16 16:06:42 +00:00
scorpio810
6187e9de44 Refres element directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5861 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-12 23:28:02 +00:00
scorpio810
e382b21334 Element translation, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5860 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-12 21:22:01 +00:00
blacksun
466835d7f0 Minor fix : Advanced replace of independent text doesn't work.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5859 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-09 19:36:51 +00:00
silvio
a1fc3189af Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5858 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-09 10:50:09 +00:00
dlee99
fa7d93dcb2 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5857 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-04 21:11:40 +00:00
scorpio810
963893fd54 Add new symbol, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5856 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-03 13:40:34 +00:00
nuri
0888c74ac7 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5855 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-02 14:25:01 +00:00
artgg
56631637ad Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5854 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-05-02 06:02:44 +00:00
ossau2mation
a92c85cf73 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5853 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-30 17:27:39 +00:00
scorpio810
bd843753a2 Add new symbols, thanks Galexis & S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5852 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-30 12:44:36 +00:00
pawel32640
e7d21a0cad updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5851 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-30 09:55:15 +00:00
pawel32640
0c9cd509e2 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5850 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-30 08:42:41 +00:00
scorpio810
94d2462c2f Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5849 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-30 04:53:36 +00:00
blacksun
cd9a42184f Add new slave type : delay on/off
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5848 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-29 16:41:06 +00:00
scorpio810
c49cf8d136 Add new symbols, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5847 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-28 12:32:20 +00:00
scorpio810
63ba7f3d20 Add new symbols, thanks S.DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5846 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-27 19:45:40 +00:00
blacksun
da99c82670 Minor : The Xref (draw as contact) of temporised switch contact are not represented with the parachute
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5845 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-26 18:01:28 +00:00
scorpio810
da19adc565 Add new symbols, thanks Jevgenijs
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5844 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-26 09:54:50 +00:00
scorpio810
7274a1ff4d Add symbols, thanks Alexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5843 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-25 14:46:08 +00:00
scorpio810
b3d06b73f1 Minor move symbol
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5842 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-25 14:25:56 +00:00
scorpio810
92e5baf492 Add new symbol, thanks Alexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5841 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-25 14:22:55 +00:00
scorpio810
b39c263c7c Element fix, thanks Jevgenijs
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5840 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-22 04:07:04 +00:00
scorpio810
8c363e4298 Refresh symbol
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5839 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-20 11:57:55 +00:00
scorpio810
fc30985d59 Add new symbols, thanks Jevgenijs
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5838 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-14 14:07:57 +00:00
scorpio810
3ecc19146a Update Changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5837 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-13 13:43:50 +00:00
scorpio810
b26a36d6de Update Changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5836 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-13 13:08:34 +00:00
scorpio810
e5fa888a6a Add new symbols, thanks Tourniere & DEFFAUX
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5835 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-13 11:11:48 +00:00
scorpio810
cd1cfc0a46 Fix warning, thanks Remi
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5834 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-12 05:45:41 +00:00
scorpio810
30a188abf0 Change displayed version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5832 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-12 04:30:26 +00:00
scorpio810
1bc18fcda0 Add new symnols, thanks David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5831 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-11 15:31:48 +00:00
blacksun
944e527dc6 Fix fail to build for mac osx
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5830 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-10 18:11:24 +00:00
scorpio810
6160657577 Change style.css
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5829 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-08 09:53:38 +00:00
scorpio810
d768e3b141 Add new example , thanks Franck
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5828 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-05 16:56:43 +00:00
scorpio810
e669c8ae90 Add new symbols, thanks David, Gabor, David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5827 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-05 14:51:55 +00:00
blacksun
8dd15c65e8 Try to open a .qet file when double click on it or drop it in the qet icons of the dock in mac osx.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5826 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-04 19:27:24 +00:00
scorpio810
d1b73ef8c6 Add symbol, thanks Galexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5825 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-03 18:31:46 +00:00
scorpio810
957c019a8f Minor : update Copyright date
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5824 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-03 18:29:13 +00:00
blacksun
4474434fbd Fix : when create multiple conductors with the free hand selection, the checking of existing potentiel don't search trought a folio report.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5823 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-03 16:06:21 +00:00
blacksun
106903126d Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5822 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-02 21:01:52 +00:00
blacksun
846ab7dca1 Add new allen bradley element, thank Benoit Michel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5821 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-02 18:09:26 +00:00
blacksun
ab66c18b21 Minor typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5820 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-02 18:02:34 +00:00
blacksun
4bbf086a88 Improvement : minimize the unwanted gap of the top right folio of the view
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5819 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-02 17:36:32 +00:00
scorpio810
885e61f438 Add new symbols, thanks Franck and Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5818 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-04-01 13:47:45 +00:00
blacksun
acab6f3dc3 Really fix the removing of carriage return and line feed.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5817 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-31 18:43:45 +00:00
blacksun
a7f4be0c12 Same as previous commit, for the element editor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5816 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-31 13:49:07 +00:00
blacksun
0528a2526e Minor fix : remove from the element information the html hexadecimal and decimal characters of line feed and carriage return.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5815 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-31 13:33:48 +00:00
blacksun
666f03dc23 Minor : When launch qet with a .qet as argument, the "restor backup" dialog ask user to restor the project freshly opened while this one wasn't crashed.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5814 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-29 21:11:09 +00:00
blacksun
a912bfb380 Fix : unable to save a new project.
The fix is weird, need more information about QFileInfo


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5813 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-29 20:51:24 +00:00
scorpio810
dcfa9dcf01 Add new symbols, thanks Ludovic
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5812 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-28 22:02:24 +00:00
scorpio810
5aed4324aa Add new elements, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5811 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-24 05:31:49 +00:00
scorpio810
d362fce56a Add new elements, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5810 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-23 01:22:11 +00:00
scorpio810
a6285fd9d5 Add new elements, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5809 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-23 01:14:15 +00:00
scorpio810
5d14b87e37 Add new elements, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5808 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-23 00:59:16 +00:00
alfredo
29d2d64083 Translation es-ES qelectrotech
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5807 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-21 22:44:55 +00:00
blacksun
660c7493c0 Minor : remove unused variable
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5806 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-21 19:42:16 +00:00
blacksun
69dfb598d3 DynamicElementTextModel : change the way how to display the QFontDialog use for change the font of the dynamic text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5805 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-20 20:38:58 +00:00
silvio
d18751b9a6 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5804 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-19 18:44:30 +00:00
blacksun
7796dbddc2 Minor fix : in the diagram editor, when we select several shapes at the same time, the properties widget only apply the change to one shape.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5803 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-19 17:44:18 +00:00
blacksun
4a4dd25263 Minor gui change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5802 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-19 17:31:46 +00:00
blacksun
32e2fd3c89 Replace deprecated QMatrix by QTransform
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5801 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-18 20:14:36 +00:00
blacksun
1ac950cd81 Replace Q_ENUMS (with S, deprecated since Qt5.5) by Q_ENUM (without S)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5800 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-18 19:49:12 +00:00
blacksun
07da381515 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5799 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-18 19:27:37 +00:00
scorpio810
17cebf3dee Add new symbols, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5798 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-17 21:52:52 +00:00
pawel32640
a9aafae8e6 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5797 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-17 20:45:29 +00:00
artgg
32e3bb9ebe Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5796 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-17 18:04:21 +00:00
nuri
c0c96d7a84 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5795 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 20:33:40 +00:00
blacksun
66ef773c53 Fix DXF export
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5794 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 19:13:46 +00:00
scorpio810
d8894809ad The DXF export is broken now on 0.7-dev, hide button in export dialog
but keeps the code if anyone wants to work on it


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5793 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 17:59:17 +00:00
dlee99
c9eb0c7b7d Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5792 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 17:05:05 +00:00
ossau2mation
52dbc431ca Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5791 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 14:35:19 +00:00
scorpio810
c8e5ee49d7 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5790 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 12:56:05 +00:00
blacksun
fae3cf33bd Fix behavior when use arrow key with dynamic element text item and element text item group
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5789 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 11:34:52 +00:00
blacksun
154575d38a Use KAutoSaveFile for the backup system, instead of home made function.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5788 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-16 10:50:30 +00:00
blacksun
47b78bfec1 use KColorButton instead of QPushButton when needed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5787 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-15 18:07:57 +00:00
blacksun
d4b49ed07c Minor : remove unused function
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5786 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-15 16:53:13 +00:00
nuri
f6caa40ac9 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5785 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-12 07:57:10 +00:00
artgg
8b1546e661 Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5784 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-12 05:17:42 +00:00
silvio
a9ce72e865 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5783 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-11 21:02:28 +00:00
pawel32640
47024a18b2 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5782 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-11 19:47:11 +00:00
ossau2mation
22c9fd1eaf Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5781 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-11 19:06:10 +00:00
aitolos
43313f5f37 Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5780 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-11 17:18:57 +00:00
scorpio810
3a6bd1a3a0 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5779 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-11 16:25:37 +00:00
pawel32640
d47597a7bd updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5778 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-10 18:43:48 +00:00
pawel32640
ebc9aed510 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5777 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-10 18:33:52 +00:00
silvio
46c281b7e8 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5776 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-10 18:10:07 +00:00
blacksun
ad76d438ef Element editor :
The font of the dynamic text field can be edited.
The font of the static text field can be edited.
The color of the static text field can be edited. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5775 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-10 17:58:33 +00:00
nuri
a56dc46c35 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5774 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-10 17:24:54 +00:00
artgg
f8b572564d Update Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5773 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 20:19:43 +00:00
dlee99
0a50345755 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5772 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 17:57:44 +00:00
pawel32640
dc908e99a4 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5771 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 15:31:41 +00:00
ossau2mation
e48ceaec01 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5770 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 12:36:22 +00:00
scorpio810
917b66bdbb Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5769 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 00:04:16 +00:00
scorpio810
ce1c80d047 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5768 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-09 00:00:33 +00:00
blacksun
32db96c623 Add new entry if the main QElectroTech dialog conf, to set a defaut font and rotation of independent text item.
Revamp some GUI


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5767 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-08 20:07:00 +00:00
blacksun
a58cecc22a Independent text can have custom font.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5766 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-08 13:47:33 +00:00
blacksun
c9ebb78639 Diagram text item : remove the function fontSize, and use instead font
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5765 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-08 11:53:27 +00:00
blacksun
26a071a4d9 Dynamic element text item : The font of the dynamic texts can be individually be setted.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5764 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-08 10:27:33 +00:00
ossau2mation
82342c0463 Update Danish translation - reviewed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5763 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-07 18:11:51 +00:00
ossau2mation
88578434d7 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5762 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-07 17:59:22 +00:00
artgg
e56c4397a0 Update Hungarian translation little modification
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5761 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-06 05:39:13 +00:00
artgg
36ca79ed22 Update Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5760 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-06 05:21:29 +00:00
blacksun
62f5c4092d fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5759 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-05 13:48:47 +00:00
blacksun
4f2977541f Forhet file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5758 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-04 15:43:56 +00:00
blacksun
504636cb79 Add KColorButton in the shape properties editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5757 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-04 15:42:53 +00:00
blacksun
aaba90419f Diagram editor : dock used to edit the shape item, can now edit several items in the same time
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5756 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-04 15:34:42 +00:00
scorpio810
30d4ea6477 Minor : Update EN translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5755 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-04 13:15:48 +00:00
blacksun
1c2b3baba7 Minor : update gui layout.
Fix : change grid step doesn't applyed


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5754 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-04 08:55:06 +00:00
dlee99
79905d77f2 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5753 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-03 20:56:58 +00:00
scorpio810
11320d8bb8 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5752 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-02 23:27:22 +00:00
blacksun
47295b5ed7 minor : fix naming convention
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5751 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-02 21:45:09 +00:00
blacksun
09e39b97f5 Minor : fix gui layout
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5750 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-03-02 20:33:07 +00:00
scorpio810
ba293a650e Add two speedsize for displacing items when working with a keyboard on
diagram editor :
normal displacement "adjustable from 1 to 30" 
(keys : Left,Right,Up,Down) 
fine displacement "adjustable from 1 to 10"
(ALT + keys : Left,Right,Up,Down ), thanks Erik for his patch


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5749 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-24 15:44:47 +00:00
silvio
89d2b4f7b0 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5748 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-21 21:57:35 +00:00
dlee99
755b461ae8 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5747 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-21 20:36:35 +00:00
ossau2mation
4de8ac1c84 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5746 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-21 15:49:17 +00:00
artgg
23177d8c5b Updated Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5745 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-21 08:52:56 +00:00
scorpio810
47aaa1cdf4 Add Erik path : User can Diagram grid layout and keys
Left,Right,Up,Down stepsize


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5744 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-21 00:02:49 +00:00
scorpio810
7f7c289c3f Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5743 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 23:53:21 +00:00
scorpio810
09d373bc21 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5742 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 23:45:17 +00:00
scorpio810
9509da6142 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5741 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 23:35:37 +00:00
blacksun
6d84414374 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5740 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 21:04:08 +00:00
blacksun
03edae216f fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5739 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 20:47:40 +00:00
blacksun
1ec083a313 Independent text editor can now edit several texts.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5738 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-20 20:36:56 +00:00
blacksun
33d757e0d8 Diagram editor : add a new widget in the "curent selection dock" for edit the independent text. WIP
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5737 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-19 16:42:07 +00:00
scorpio810
2300314bf5 Add new symbols, thanks Christophe
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5736 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-13 16:24:17 +00:00
blacksun
d2236e101d fix segfault, see bugtracker N°167
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5735 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-10 17:37:25 +00:00
scorpio810
0bd9a68dbe Fix multiple translation in elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5734 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-05 22:18:55 +00:00
blacksun
481dda8477 Free selection : minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5733 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-04 20:43:58 +00:00
blacksun
ae68f08bb6 Improve free selection behavior
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5732 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-04 19:00:46 +00:00
scorpio810
7cd5fc57a9 Free hand selection : Change CTRL key by SHIFT
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5731 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-04 17:44:33 +00:00
alfredo
9d51293c52 Translation to Spanish
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5730 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-02 21:47:08 +00:00
pawel32640
ac905b1095 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5729 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-02 18:29:22 +00:00
pawel32640
079a26ec00 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5728 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-02 18:23:18 +00:00
scorpio810
ca39ff3e58 Add new elements, thanks David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5727 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-02-01 13:42:48 +00:00
silvio
46a1568f98 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5726 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-29 18:53:28 +00:00
dlee99
7ea8b23f4a Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5725 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-28 21:20:25 +00:00
ossau2mation
1e5c23cbe6 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5724 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-28 19:24:02 +00:00
artgg
316c4afedf Update Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5723 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-28 04:52:01 +00:00
nuri
23bcbb5439 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5722 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-28 02:59:44 +00:00
scorpio810
1903c06f3f Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5721 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-27 22:03:26 +00:00
scorpio810
c861498a0a Typo fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5720 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-27 21:58:57 +00:00
blacksun
13520e9f70 forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5719 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-27 17:06:38 +00:00
blacksun
0db73abd41 Free hand selection : at the end of the selection, popup a context menu for create conductors between selected terminal
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5718 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-27 17:04:13 +00:00
alfredo
a5b0658293 Translation to Spanish
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5717 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-25 22:50:55 +00:00
blacksun
ee44b4e8a2 Add new selection style : free selection.
Use like normal selection + hold the ctrl key.
The code made in this commit are largely inspired by the the rubber band of QGraphicsView.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5716 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-23 17:08:04 +00:00
blacksun
3d17947074 Use QETArguments, instead of arguments list itself
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5715 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-21 17:23:00 +00:00
scorpio810
500b21964a Minor : change url to https
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5714 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-21 13:24:58 +00:00
scorpio810
451c95e2fc NSI Windows packaging : Update manual_online URL to new manual link
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5713 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-21 13:22:17 +00:00
scorpio810
ac33911644 Update manual_online URL to new manual link
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5712 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-21 13:17:50 +00:00
scorpio810
d42f11b83d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5711 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-21 08:52:58 +00:00
blacksun
9579d3b712 Fix crash with recent change of single application
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5710 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-20 14:32:13 +00:00
blacksun
3d7b39be07 Fix regression : QElectrotech is unable to open several project/elements/titleblock from the outside of the application (for exemple by double clicking on a .qet file).
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5709 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-20 13:01:44 +00:00
scorpio810
c6d537a5d5 Update singleApplication.
See : https://github.com/itay-grudev/SingleApplication


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5708 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-19 15:25:48 +00:00
dlee99
c915cb1ba9 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5707 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-15 17:56:42 +00:00
blacksun
dba6a58390 Minor refactoring of diagram event interface
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5706 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-14 18:25:43 +00:00
scorpio810
3ed7a4e63b Minor : update Copyright date
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5705 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-13 16:56:12 +00:00
scorpio810
ed42d1f3e8 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5704 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-12 14:23:50 +00:00
blacksun
ba0a85c166 When remove an element with several conductors connected to the same terminal, the electrical potential is partially or totally destroyed.
This commit fix it : When element is removed one or several conductors are created (if needed) to conserve the electrical potential.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5703 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-09 18:08:49 +00:00
artgg
98b4188ded Update Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5702 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-09 05:07:08 +00:00
nuri
70d1412a7c Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5701 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-07 06:36:42 +00:00
artgg
9949449fc4 Update Hungarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5700 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-07 05:13:21 +00:00
dlee99
888674c292 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5699 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-06 15:26:06 +00:00
blacksun
58ef54090e Element panel : elements can be searched by their name but also with by all their informations.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5698 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-04 22:06:34 +00:00
pawel32640
d735983c16 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5697 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-04 15:14:46 +00:00
artgg
fc72f9e53e Update Hugarian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5696 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-04 05:55:27 +00:00
scorpio810
4a92b7bb15 Add template
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5695 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-03 11:47:04 +00:00
dlee99
94ab7519e8 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5694 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 20:37:19 +00:00
ossau2mation
3aad17717f Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5693 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 20:18:28 +00:00
scorpio810
f00758eca2 Refresh example
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5692 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 20:07:00 +00:00
scorpio810
f70d1d250b Revert r5689
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5691 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 20:01:13 +00:00
silvio
831c96c5e5 Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5690 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 19:17:02 +00:00
scorpio810
a92820c6fc Remove "{ }" in variables pasted
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5689 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 17:28:38 +00:00
scorpio810
5f5685658f Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5688 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 17:18:15 +00:00
blacksun
04e890ab7d NameList widget : add a combo box for easily paste texts, like the variables for title block.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5687 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 16:56:46 +00:00
scorpio810
2d76065b98 Return gce to 20_manufacturers_articles folder
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5686 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-02 00:20:17 +00:00
nuri
077e82cf0f Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5685 bfdf4180-ca20-0410-9c96-a3a8aa849046
2019-01-01 15:04:37 +00:00
scorpio810
021bd30d00 Update Hungarian translations, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5684 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-31 12:18:20 +00:00
pawel32640
78354ecda5 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5683 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-31 09:34:59 +00:00
pawel32640
5c4d5c4ac0 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5682 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-31 09:18:55 +00:00
pawel32640
d769e450cb updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5681 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-31 09:01:43 +00:00
silvio
562d66bd6e Update .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5680 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-31 00:04:24 +00:00
pawel32640
0f36992604 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5679 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 20:37:54 +00:00
scorpio810
a3b3bd360b Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5678 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 20:32:15 +00:00
scorpio810
5b71aa2cf3 Fix symbol mistake
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5677 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 20:17:43 +00:00
pawel32640
071a690850 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5676 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 19:48:35 +00:00
pawel32640
4de7787918 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5675 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 19:31:34 +00:00
scorpio810
31440662d4 Move some elements to 01_thumbnails_mounting_plate folder
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5674 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-30 14:31:16 +00:00
scorpio810
0ca29b5f02 Add translator
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5673 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 19:45:19 +00:00
scorpio810
c19c5b03a7 Update Hungarian translations, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5672 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 19:37:16 +00:00
scorpio810
8ebe2e4ecd Add new symbols https://github.com/condo4/qelecpanel.git
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5671 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 16:46:13 +00:00
aitolos
d984d140ee Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5670 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 16:38:37 +00:00
dlee99
314c210b43 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5669 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 13:24:16 +00:00
scorpio810
80db7aded6 Add Hungarian translations, thanks Gabor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5668 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 11:39:16 +00:00
ossau2mation
bd1cb1cf52 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5667 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 09:11:12 +00:00
scorpio810
e071717d30 Title block : list of texts variables can be selected with the mouse and
copied to the clipboard using a context menu or standard keyboard
shortcuts.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5666 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 08:45:17 +00:00
scorpio810
ec19986f38 Update *TS files, changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5665 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-29 03:48:21 +00:00
blacksun
2274382219 Title block : add two news variables, previous-folio-num and next-folio-num
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5664 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-28 18:39:54 +00:00
blacksun
34f59f4920 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5663 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-26 20:57:11 +00:00
blacksun
d45c070e16 Search and replace : improve the search for elements.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5662 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-26 20:32:11 +00:00
dlee99
0e60c95513 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5661 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-23 19:00:00 +00:00
ossau2mation
461addaac6 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5660 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-23 08:47:03 +00:00
scorpio810
7b395f478f Update *TS files and changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5659 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-23 05:17:09 +00:00
blacksun
64e900206d Search and replace : We can now replace a properties text (diagram, element, conductor, diagram text) with regular expression
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5658 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-21 18:08:58 +00:00
scorpio810
7f68d4e400 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5657 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-20 23:17:17 +00:00
alfredo
bf3cda8ed0 elements translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5656 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-20 22:38:55 +00:00
silvio
07930b3402 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5655 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-20 20:20:46 +00:00
alfredo
aaab4337c4 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5654 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-18 18:36:52 +00:00
ossau2mation
1f7e6c233b Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5653 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-16 08:55:24 +00:00
dlee99
b5d00807aa Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5652 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-15 22:08:55 +00:00
scorpio810
9bce342950 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5651 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-15 18:57:37 +00:00
blacksun
28fd6e13e4 Minor fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5650 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-15 18:03:03 +00:00
blacksun
e1cb7e6d6c Search and replace widget, improve layout
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5649 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-15 17:54:20 +00:00
blacksun
c64b74d328 Fix : On windows when user drag and drop an element from the common elements collection to the custom elements collection,
the element file stay in read only mode, and so user can't save the element



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5648 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-13 21:39:44 +00:00
blacksun
7a17200cf6 Search and replace : improve the search for conductor.
Minor gui change of conductor properties widget


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5647 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-13 17:34:41 +00:00
alfredo
87774c7296 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5646 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-10 03:42:30 +00:00
alfredo
6f2c8b3278 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5645 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-09 22:35:56 +00:00
alfredo
670a7fd6c3 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5644 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-09 22:34:53 +00:00
blacksun
835ff082bf Improve some code and gui
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5643 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-09 18:37:09 +00:00
blacksun
d0f3825bfc Revamp some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5642 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-09 14:48:56 +00:00
blacksun
e595e16d47 Search and replace : conductors properties can now be replaced
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5641 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-09 11:50:07 +00:00
dlee99
9661be88fb Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5640 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-08 19:36:58 +00:00
dlee99
59a2db4dd4 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5639 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-08 00:12:41 +00:00
silvio
259b009b28 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5638 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-07 23:17:00 +00:00
ossau2mation
3e53d24e4f Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5637 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-07 15:35:59 +00:00
scorpio810
75447a8adb Dynamic text item : load the requested font style name, like: italic,
bold, regular, etc


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5636 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-06 15:48:45 +00:00
ossau2mation
80df7b3bd6 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5635 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-06 15:14:58 +00:00
alfredo
77c0d5fe2e Translation Español
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5634 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-06 03:50:39 +00:00
scorpio810
abaeade6af Update en fr translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5633 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-04 23:58:37 +00:00
scorpio810
ab6d3e374f Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5632 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-04 22:41:15 +00:00
scorpio810
a8b18f6322 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5631 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-04 22:38:51 +00:00
scorpio810
2fe25e74fa Minor : indentation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5630 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-04 22:33:11 +00:00
nuri
f27954e507 Correction of some french and english notions and correction of typos. Variable %machine changed in %plant.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5629 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-04 19:07:14 +00:00
nuri
cdfdd6f22a Correction of some french notions and correction of typos
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5628 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-03 22:13:16 +00:00
scorpio810
4ba3f477f8 Add new field "Group function" on properties of the selection widget and
for csv export


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5627 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-03 13:13:27 +00:00
scorpio810
e0c6cc6768 Add new fields "Quantity, Unity" onproperties of the selection widget
and for csv export


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5626 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-02 15:54:08 +00:00
blacksun
e8c03da193 Element editor bug fix : Unable to clear an information of the edited element (label, manufacturer etc...).
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5625 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-01 20:12:24 +00:00
scorpio810
58fb59491b Revert last commits
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5624 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-12-01 12:55:05 +00:00
scorpio810
10e889bae5 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5623 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-30 23:59:12 +00:00
scorpio810
ee91337d75 Add new fild and titleblock "Function group"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5622 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-30 23:53:13 +00:00
alfredo
01414974a0 update language spanich
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5621 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-30 04:29:15 +00:00
blacksun
dab22aeed1 Search and replace : Add two search options, contain text/entire word and case sensitive/insensitive
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5620 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-29 17:34:03 +00:00
silvio
d2bcfb8887 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5619 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-29 09:50:09 +00:00
scorpio810
a4508008d4 Force set dynamic text length to default -1
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5618 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-29 09:48:51 +00:00
scorpio810
0931e9c0a9 Big increase the value of QPainterPathStroker for very long text, thanks
re-searcher


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5617 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-29 09:42:23 +00:00
scorpio810
3674812e83 Update pt_Br translation, thanks Thiago
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5616 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-26 22:52:17 +00:00
dlee99
95390d0046 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5615 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-26 18:47:32 +00:00
ossau2mation
ca52c2e5fe Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5614 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-26 15:31:34 +00:00
nuri
a76052c795 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5613 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-26 05:30:08 +00:00
pawel32640
b53d42ce12 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5611 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 18:18:36 +00:00
scorpio810
266a747b2b Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5610 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 17:33:55 +00:00
scorpio810
a78212e8dd Minor fix previous commits
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5609 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 10:47:36 +00:00
scorpio810
f038b4b545 Minor add m_user_custom_tbt_dir.clear() on resetUserElementsDir function
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5608 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 10:33:30 +00:00
scorpio810
a199c1e201 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5607 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 10:16:46 +00:00
scorpio810
e0b0da534d Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5606 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 10:02:38 +00:00
scorpio810
a76feeef07 Enable the possibility to define the path of user tbt template
collection.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5605 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-25 09:55:11 +00:00
blacksun
d8ed6a5130 Change xml tag name : dynamicitemfont
by : font_family


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5604 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-24 21:26:24 +00:00
blacksun
2f585840c6 Dynamic text item : load the good font from xml.
Laurent, you can now sleep well :) 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5603 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-24 21:12:27 +00:00
scorpio810
bc3f02a6e9 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5602 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-24 12:56:15 +00:00
alfredo
6918debc49 translation spanish elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5601 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-23 00:54:06 +00:00
nuri
3d96809df5 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5600 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-19 09:50:49 +00:00
silvio
48139ec312 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5599 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-19 08:13:35 +00:00
alfredo
3b97d57340 Update Spanish translations minor correction
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5598 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-18 03:41:10 +00:00
alfredo
b14e58ee18 “Update_Spanish_translations”
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5597 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-18 03:08:28 +00:00
scorpio810
b15f6aeef7 Minor : set dynamic text length to default -1
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5596 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-16 16:33:41 +00:00
dlee99
6da0cf16c6 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5595 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-15 17:05:58 +00:00
ossau2mation
ea0ce74c61 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5594 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-15 16:20:34 +00:00
pawel32640
c0b586701c updated Polish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5593 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-15 15:07:43 +00:00
scorpio810
bd8d379355 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5592 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-15 14:40:37 +00:00
scorpio810
09d368db11 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5591 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-15 11:44:42 +00:00
scorpio810
10bef5d203 Add label formula of element in export partlist to csv
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5590 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-14 13:19:01 +00:00
scorpio810
40a851215b Change in aboutqet widget fixed size, thanks Re-searcher
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5589 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-12 16:07:52 +00:00
silvio
aae8bfcfba .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5588 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-12 16:00:34 +00:00
pawel32640
6f03c6023c updated Polish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5587 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-12 15:52:41 +00:00
dlee99
0b0231e385 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5586 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-11 19:11:20 +00:00
ossau2mation
8619391af9 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5585 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-11 17:57:54 +00:00
scorpio810
5506b68ae0 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5584 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-11 16:39:58 +00:00
pawel32640
64183b1ba8 updated Polish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5583 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-11 16:14:57 +00:00
blacksun
b74c511bad Search and replace : Independent text item can be changed (and mass changed) through the search and replace widget.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5582 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 13:32:27 +00:00
blacksun
c385418432 Improve gui layout
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5581 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 12:46:46 +00:00
blacksun
56798b3f05 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5580 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 12:29:41 +00:00
blacksun
a620b4067d Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5579 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 12:19:30 +00:00
scorpio810
a76da57544 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5578 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 10:51:36 +00:00
pavelfric
7b37bf2102 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5577 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-10 07:13:18 +00:00
blacksun
1ead2aa0bb Search and replace : Element properties can be changed (and mass changed) through the search and replace widget.
Also improve the search for element


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5576 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-09 18:50:37 +00:00
scorpio810
b276d6517a Fix about Qt SLOT, thanks letartare
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5575 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-11-06 13:45:47 +00:00
scorpio810
ae026f8a4f Add Hungarian switch language
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5574 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-29 15:14:38 +00:00
ossau2mation
80426630b9 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5573 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-28 07:39:09 +00:00
dlee99
513ef9b9ad Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5572 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-27 17:25:13 +00:00
blacksun
8e250bd569 Minor : search and replace widget, clear the tree widget when the current searched project is closed.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5571 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-27 13:31:52 +00:00
silvio
b83aa74485 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5570 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-27 07:22:22 +00:00
scorpio810
8e0260a5a8 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5569 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-26 23:56:12 +00:00
scorpio810
9e7899fd40 Add a new tab in settings, user can select a font size, a rotation angle
and a text width by default for new dynamic text, it work also in
element editor command.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5568 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-26 23:42:49 +00:00
scorpio810
5f85edcc8c Add new symbol, thanks Alexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5567 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-26 08:45:38 +00:00
silvio
071def5632 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5566 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-24 22:23:02 +00:00
blacksun
e224a7cee6 Search and replace : improve the search for diagram
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5565 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-24 14:04:04 +00:00
blacksun
94dc195028 Search and replace : Diagram properties can be changed (and mass changed) through the search and replace widget.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5564 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-21 09:54:59 +00:00
scorpio810
0bc34cfb6d Add new symbol, thanks Cyrille
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5563 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-18 00:05:40 +00:00
scorpio810
74b159dc35 Update pt-br translation, thanks Arthur
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5562 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-17 20:26:29 +00:00
blacksun
ba8133a9d1 DiagramContextWidget : The widget is now made with th ui file instead of C++
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5561 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-16 15:49:18 +00:00
dlee99
84ba21823b Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5560 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-13 18:02:18 +00:00
aitolos
1fd2899d07 Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5559 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-13 15:43:51 +00:00
ossau2mation
a9d46e7d14 Danish translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5558 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-13 06:22:06 +00:00
ossau2mation
afaf541ba5 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5557 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-12 14:36:51 +00:00
nuri
561e625113 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5556 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-12 01:34:28 +00:00
scorpio810
1d94bd73a6 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5555 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-12 00:25:10 +00:00
scorpio810
eb1028ec9a Add other country names
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5554 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-12 00:21:04 +00:00
scorpio810
6842abcf9a Add Translator, contributor
Add Turkish Unicode binary character name


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5553 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-11 23:37:56 +00:00
scorpio810
a236e9ac6b Add Turkish langage
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5552 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-11 22:30:02 +00:00
scorpio810
0ca5c63d4e Update Turkish translation, thanks Aziz
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5551 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-11 09:39:17 +00:00
blacksun
4adf94dabf Fix crash when load an old project, wich contain element without her definition embedded, aka "ghost element".
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5550 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-10 16:48:44 +00:00
blacksun
0b1382490f Search and replace widget : folio are now displayed in the search field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5548 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-05 07:49:07 +00:00
scorpio810
912901ff6d Add new symbols, thanks David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5547 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-04 14:34:43 +00:00
ossau2mation
15f8dcaee4 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5546 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-10-01 14:06:47 +00:00
silvio
7d2d9afaf7 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5545 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-30 20:30:54 +00:00
nuri
52914bd04e Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5544 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-30 20:01:22 +00:00
dlee99
401cc08957 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5543 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-30 19:48:31 +00:00
scorpio810
e9eeeb7b4b Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5542 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-30 19:41:32 +00:00
blacksun
63fd76231a Element text pattern dialog : add a check box 'erase existing texts'
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5541 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-30 17:19:50 +00:00
blacksun
aaab9b0f15 Missing file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5540 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-29 16:01:48 +00:00
blacksun
1cd8912d64 Add new icons, thank Nuri.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5539 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-29 15:58:29 +00:00
dlee99
61167f062a Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5538 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-29 09:27:56 +00:00
scorpio810
cd9102efac Add new symbols, thanks David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5537 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-28 15:26:38 +00:00
blacksun
81f6bb4a5a Minor : fix missing icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5536 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-27 17:40:05 +00:00
dlee99
0c28b2f164 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5535 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-27 15:25:51 +00:00
scorpio810
bd7140509d Update English translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5534 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 23:33:43 +00:00
silvio
ead3d12f8a .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5533 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 21:43:54 +00:00
dlee99
d4a4fe1af6 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5532 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 20:25:39 +00:00
aitolos
132458f7e9 Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5531 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 15:41:00 +00:00
ossau2mation
43e213f2f4 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5530 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 14:10:53 +00:00
nuri
ccb1cc6247 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5529 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 12:46:54 +00:00
scorpio810
bbec5c8ea3 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5528 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-26 10:14:04 +00:00
silvio
17a23a8e43 .ts file translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5527 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-25 19:07:57 +00:00
blacksun
6a12a008e9 Start the work on a new feature : search and replace.
This commit let user find for : texts, conductors and elements.
WIP.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5526 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-25 16:05:24 +00:00
scorpio810
76e72b0353 generalconfigurationpage.ui fix for 1366X768 laptops screens
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5525 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-25 13:12:01 +00:00
scorpio810
e138f2f392 Minor : improve UI
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5524 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-25 05:12:39 +00:00
dlee99
0e99ba680f Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5523 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 17:52:41 +00:00
pawel32640
d66e756cc1 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5522 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 17:14:23 +00:00
ossau2mation
ec6e963278 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5521 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 13:11:20 +00:00
nuri
b8b0e7d93d Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5520 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 12:02:26 +00:00
scorpio810
3c54e56370 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5519 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 09:30:57 +00:00
scorpio810
f19c9718ae Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5518 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-24 09:27:16 +00:00
scorpio810
7685fcec78 Improve general config page UI
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5517 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-23 18:32:17 +00:00
ossau2mation
532bf3a272 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5516 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 20:26:44 +00:00
nuri
9f48b574fd Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5515 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 16:26:11 +00:00
scorpio810
48e730286d Improve last commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5514 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 15:59:05 +00:00
dlee99
e007c379a9 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5513 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 14:27:45 +00:00
dlee99
a5fe207e9b Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5512 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 13:48:40 +00:00
scorpio810
5afcbb7c74 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5511 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 10:53:26 +00:00
scorpio810
112df84964 Add in config the possibility to start the numbering of the columns of
titleblocks at 0.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5510 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-22 10:39:36 +00:00
pawel32640
ac5b212dfa update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5506 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-16 18:52:26 +00:00
ossau2mation
acebf291f7 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5505 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-16 12:43:33 +00:00
scorpio810
8a36ac1d24 Add new example, thanks Irvi
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5504 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-14 15:49:08 +00:00
scorpio810
b7e48c8e09 Change saveddate (title block variable) static date format "yyyy-MM-dd"
to System Locale Short Date


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5503 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-14 04:08:04 +00:00
aitolos
5f017e8493 Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5502 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-08 15:18:51 +00:00
ossau2mation
c176e744e3 Danish translation reviewed & updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5501 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-08 06:53:14 +00:00
scorpio810
b59ea165fc Increase imported images by up to 400%
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5500 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-06 21:29:25 +00:00
scorpio810
f1c3f0344e refresh example : 
fix crash due to the deletion of the GHOST element last, this example contains ghost elements and causes a crash at launch



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5499 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-05 13:58:37 +00:00
scorpio810
8151563fec Add Turkish language for translations, minor update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5498 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-09-01 17:15:09 +00:00
blacksun
632cd0a75a fix warning
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5497 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-29 16:14:30 +00:00
nuri
f41205c734 Update german translation (minor)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5496 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-28 05:08:18 +00:00
scorpio810
008355ffeb Minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5495 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-26 01:08:33 +00:00
scorpio810
eb36891b84 Decrease QDataStream::Version enum for support Qt version 5.5.x (Ubuntu
Xenial)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5494 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-24 20:09:23 +00:00
blacksun
e4f3f284ea fix bug : if a xml definition of an element haven't got a uuid, the generated pixmap is false.
this commit it.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5493 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-23 20:58:41 +00:00
blacksun
e6d73977c1 1-Use the "implicite shared" of Qt for the QPicture and QPixmap of element (https://doc.qt.io/qt-5/implicit-sharing.html).
This avoid to parse the same element definition each time user drop the same element in the diagram.
Only the first element build the picture, all other get the created picture which is shared.

2- For use the "implicite shared" QPicture and QPixmap of element, now this isn't the element who build her picture, but a dedicated class who made only this job : build the QPicture and QPixmap of elements.

3- With the two previous novelty, the class CustomElement and GhostElement are became useless, and so was removed.
Some few member function of CustomElement was moved to Element.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5492 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-23 19:41:58 +00:00
alfredo
1d871e0625 Spanish Translation corrección menor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5489 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-22 22:21:18 +00:00
scorpio810
458ac072cd Fix bug 165
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5488 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-22 13:34:12 +00:00
alfredo
928b5d0775 Update_Spanish_translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5487 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-22 02:01:15 +00:00
scorpio810
e2b2dfa87a Add new symbols, thanks Alexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5486 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-20 22:09:01 +00:00
scorpio810
02863ee0d7 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5485 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-16 22:49:08 +00:00
scorpio810
a2d402b50a Improve previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5484 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-16 06:48:03 +00:00
scorpio810
85b0efbc68 Try to fix macOS FTBFS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5483 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-16 01:59:51 +00:00
scorpio810
4e9fb1b664 Fix FTBFS on cross-compiler for Windows
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5482 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-16 00:21:07 +00:00
blacksun
2ba5be7ecd Replace qetsingleapplication by singleApplication.
See : https://github.com/itay-grudev/SingleApplication


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5481 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-15 12:45:55 +00:00
ossau2mation
d2a6c23360 Danish translation reviewed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5480 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-13 17:57:33 +00:00
nuri
79076dae5d Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5479 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-13 05:38:52 +00:00
scorpio810
a9da802aa1 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5478 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-11 13:41:05 +00:00
scorpio810
77984bb10f Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5477 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-11 11:40:49 +00:00
ossau2mation
1c3685f588 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5476 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-11 08:28:23 +00:00
silvio
03ba86ef39 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5475 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-08 21:25:55 +00:00
scorpio810
43149b6c8b Arrangement elements of Schneider maufacturer folder
Add new elements, thanks Alexis


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5474 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-08 03:27:37 +00:00
scorpio810
118fa10810 Add tension-protocol key on elementInfoKeys
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5473 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-07 09:14:00 +00:00
scorpio810
69f769d5b3 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5472 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 17:38:30 +00:00
scorpio810
92a4d0f88e Add '%savedfilename' and '%savedfilepath' title block variables
They should be updated after file save or save as dialog is confirmed,
before file is saved.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5471 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 17:20:50 +00:00
dlee99
66a036ad2c Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5470 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 17:06:45 +00:00
scorpio810
6c6d78b84c Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5469 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 16:20:15 +00:00
scorpio810
4d720d04a6 '%saveddate' and '%savedtime' title block variables should be updated
after file save or save as dialog is confirmed, before file is saved.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5468 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 16:12:00 +00:00
scorpio810
54981b425e title block editor : add '%saveddate' and '%savedtime' as available
values, for moment only when user "save as" project


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5467 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 15:32:19 +00:00
scorpio810
233dd05227 Delete UTExportedTypeDeclarations in plist file : not useful for bundle
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5466 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-06 00:19:56 +00:00
scorpio810
7361823322 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5465 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-05 16:46:51 +00:00
scorpio810
ff7b2226e1 title block editor : show 'projectfilename' as available value
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5464 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-05 16:27:14 +00:00
scorpio810
bf974f1956 Fix bug 164 :
title block editor : show 'projectpath' as available value


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5463 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-05 15:04:15 +00:00
blacksun
e6c977e7d8 re-enable the possibility to define the path of elements collections.
Add variables for common and custom elements collections, to avoid multiple access to QSettings and so reduce the loading of collections.  


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5462 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-08-03 16:35:40 +00:00
scorpio810
30bee81432 Revert r5449 and disable r5452 momentary : Load time from elements is
very slow


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5461 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-30 15:24:29 +00:00
scorpio810
52e941f0fc Minor : disable dialog buttons for define the file system path of the
common and custom elements on macOS


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5460 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-28 12:09:00 +00:00
silvio
bf5fd86fa0 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5459 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-27 19:30:46 +00:00
scorpio810
1d5940a6a1 Disabling momentary for macOS bundle :
let user define the file system path of the common and custom elements
collections


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5458 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-27 14:41:23 +00:00
ossau2mation
3347983788 Danish translation reviewed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5457 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-27 07:37:49 +00:00
nuri
20769eda14 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5456 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-27 05:13:38 +00:00
ossau2mation
b3c501b2ed Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5455 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-26 13:51:32 +00:00
dlee99
4082dae763 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5454 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-25 18:49:23 +00:00
scorpio810
37c583de35 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5453 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-25 18:03:15 +00:00
blacksun
1ec4334308 let user define the file system path of the common and custom elements collections
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5452 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-25 17:34:50 +00:00
scorpio810
b97b01d63c Apply clang-tidy's modernize-use-auto
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5449 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-19 16:27:20 +00:00
scorpio810
e4b1ba9797 Apply clang-tidy's performance-unnecessary-value-param, performance-for-
range-copy


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5448 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-19 14:14:31 +00:00
nuri
05fea9b94a Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5447 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-18 11:50:14 +00:00
scorpio810
75803ae26a Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5446 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-17 15:07:35 +00:00
ossau2mation
cc8535cfee Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5445 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-17 14:40:20 +00:00
blacksun
18a295fa4a Element editor : add rounded rect
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5444 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-17 12:19:56 +00:00
alfredo
7befb793a2 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5443 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-17 02:16:56 +00:00
silvio
312947c862 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5442 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-16 22:04:48 +00:00
dlee99
16d0f03a13 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5441 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-16 17:26:22 +00:00
scorpio810
918e859ec4 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5440 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-16 14:32:05 +00:00
scorpio810
3f1a33a179 Fix bug #162
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5439 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-16 14:23:54 +00:00
nuri
b259dacc58 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5438 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-16 07:17:49 +00:00
blacksun
eeb49d5a18 QetShapeItem : rounded rect is saved in the .qet file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5437 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-14 11:10:23 +00:00
blacksun
0306bace46 QETshapeItem rectangle can have rounded corner.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5436 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-12 10:01:34 +00:00
blacksun
9db5c4fe9f Fix bug when resize the angle of a part arc with the handles.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5435 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-11 09:28:38 +00:00
dlee99
437b3c0ca1 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5434 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-09 19:22:50 +00:00
ossau2mation
780aa5d833 Danish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5433 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-09 13:33:55 +00:00
scorpio810
27ee2c6d50 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5432 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-08 23:36:23 +00:00
scorpio810
9bce5ec428 Fix bug #162
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5431 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-08 23:31:34 +00:00
silvio
ef5e40d048 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5430 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-08 20:29:52 +00:00
ossau2mation
901729865e Danish translation minor updates
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5429 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-07 20:07:17 +00:00
dlee99
d77914a63e Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5428 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-03 16:50:55 +00:00
blacksun
57e5ccd943 Mutualize code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5427 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-03 14:25:46 +00:00
nuri
ed7090f6fb Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5426 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-03 07:30:09 +00:00
ossau2mation
ffe0f1d4c7 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5425 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-02 19:12:01 +00:00
blacksun
e60b65546f fix "fail to build from source" with Qt < 5.7, and in the same occasion fix a memory leak
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5424 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-02 13:48:47 +00:00
msouabni
1cc79f59b1 Update Arabic Version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5423 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-02 09:26:16 +00:00
scorpio810
cd51146414 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5422 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-01 19:40:13 +00:00
blacksun
f118a1b513 Forget ChangeLog and description of the prvious comit :
Rev 5420 :
Diagram editor : add two new actions in context menu for insert or remove point of a selected polygon.



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5421 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-07-01 18:38:38 +00:00
blacksun
0f4a058e63 git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5420 bfdf4180-ca20-0410-9c96-a3a8aa849046 2018-07-01 18:35:03 +00:00
blacksun
28faaf12c5 Element editor : add two new actions in context menu for insert or remove point of a selected polygon.
All parts items : remove the 'open hand cursor' when hover a selected part.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5419 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-30 21:41:27 +00:00
blacksun
114c3cdcc3 title block editor : show 'projecttitle' as available value
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5418 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-29 20:36:21 +00:00
blacksun
3ff5b00953 Minor code refactoring
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5417 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-29 07:55:48 +00:00
nuri
a6e7004a0e Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5416 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-25 05:06:46 +00:00
dlee99
c685adc832 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5415 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 19:08:34 +00:00
ossau2mation
691ae0fc57 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5414 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 17:12:19 +00:00
aitolos
aab318ba59 Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5413 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 16:14:25 +00:00
scorpio810
d5c23e4163 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5412 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 12:36:28 +00:00
scorpio810
a84f84ad02 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5411 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 12:31:33 +00:00
blacksun
ea3b25fa75 Element text item group can now be framed.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5410 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-24 11:16:37 +00:00
pawel32640
deabf5f2ad update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5409 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-23 13:29:45 +00:00
blacksun
de9096d8a2 Widget used to edit text item group can edit the pos of the group.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5408 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 18:44:13 +00:00
blacksun
4cdd17e21f forget files from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5407 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 18:02:58 +00:00
blacksun
749e0e5e78 Fix : in some condition, dynamic text are not at the same position when open a project.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5406 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 17:57:33 +00:00
blacksun
2be0af2f43 minor fix : slave link dialog doesn't display the good label, when the label of master element is build from formula.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5405 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 15:36:03 +00:00
nuri
627f62f59e Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5404 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 11:24:56 +00:00
silvio
cfcb97d0ab update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5403 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-21 10:42:55 +00:00
blacksun
24812944eb Forget qet.cpp and qet.h from previous comit.
Add new function for create QAction used for edit the depth of items.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5402 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-20 18:35:06 +00:00
blacksun
8386002ef3 Clean (and reduce the size) the class QETDiagramEditor, mostly by replacing the connection syntax "signal -> slot" by "signal -> lambda".
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5401 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-20 18:03:39 +00:00
msouabni
98531b0f3f Update Arabic version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5400 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-20 07:23:59 +00:00
alfredo
40311d401b Translation to Spanish
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5399 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-19 02:26:24 +00:00
dlee99
a531773f56 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5398 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-18 19:28:06 +00:00
ossau2mation
f3ef89a59d Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5397 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-18 19:00:55 +00:00
scorpio810
ed27dce81d Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5396 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-17 23:52:13 +00:00
scorpio810
d1517bb5d7 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5395 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-17 23:49:51 +00:00
blacksun
52eb4b5f71 Diagram editor : add 4 tools for edit the depth (Z value) of items.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5394 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-17 18:21:56 +00:00
scorpio810
74ac93e171 Element translation, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5393 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-10 15:17:11 +00:00
scorpio810
a0aadd8201 Fix FTBFS on Qt 5.11
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5392 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-10 15:08:26 +00:00
ossau2mation
ee898f0be4 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5391 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-08 14:54:06 +00:00
scorpio810
f6a2ea3971 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5390 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-08 13:28:33 +00:00
blacksun
3225bdb371 minor fix : elements can't be moved up and left, when there rotation are different than 0.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5389 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-07 16:29:41 +00:00
scorpio810
6a8523961f Improve qet_tb_generator : add the full path of the current project as
an argument when calling the plug-in from QET if a project is open. 
If not a file dialog is showed to select the QET project.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5388 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-07 13:48:12 +00:00
scorpio810
c89d6b6ff7 Add the full path of the current project as an argument when calling the
plug-in "qet_tb_generator" from QET
qet_tb_generator menu entry was enabled only when a project is open


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5387 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-07 12:22:09 +00:00
alfredo
63a9defd52 Spanish translator
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5386 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-06 02:07:39 +00:00
blacksun
43f7bad2d0 Fix : clear the element texts when paste an element with the option "Do not store the labels of items in the copy paste" enabled
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5385 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-03 18:13:25 +00:00
scorpio810
14a0ad8f43 Update Brazilian Portuguese translation, thanks Gleisson
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5384 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-02 21:15:51 +00:00
blacksun
c19ec8c65a Bugfix :
1- When open a .qet by double click on it, QET ask user for open the backup file, of this .qet.
2- On windows, if user open a project from the recent files menu, when close QET the file is deleted :(  user lose her work


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5383 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-06-01 18:33:08 +00:00
silvio
2e32c75523 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5382 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-26 21:54:03 +00:00
dlee99
5e3fd2b53c Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5381 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 23:38:01 +00:00
dlee99
bf6e16ed1b Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5380 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 21:05:16 +00:00
scorpio810
f2f0803b00 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5379 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 14:10:44 +00:00
ossau2mation
f4699722f5 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5378 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 10:46:31 +00:00
scorpio810
cb899e35d3 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5377 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 09:18:23 +00:00
scorpio810
5a52e8658f Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5376 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 08:59:42 +00:00
scorpio810
c035f5f04d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5375 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-25 08:39:45 +00:00
blacksun
f19a794d4b Diagram editor, add two news feature:
1- QET create a backup file, use to restor the project when a crash occur
2- User can enable and edit autosave.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5374 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-24 18:08:06 +00:00
pawel32640
77662fb51b update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5373 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-24 13:40:54 +00:00
blacksun
89506df464 Diagram editor : add new context menu action "group the selected texts"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5372 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-18 21:46:36 +00:00
blacksun
bca58fa555 Conductor is an herited class of QGraphicsObject, instead of QObject and QGraphicsPathItem
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5371 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-18 19:36:27 +00:00
blacksun
cc9184c0b6 Fix : element text alignment work also when font size change.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5370 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-18 18:28:04 +00:00
scorpio810
eea142750f Add new symbols, thanks Mitzot
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5369 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-16 16:36:09 +00:00
ossau2mation
70b0bf3020 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5368 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-15 20:10:32 +00:00
dlee99
b8122df4f4 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5367 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-15 20:03:11 +00:00
nuri
d427f0d3f1 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5366 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-14 19:51:33 +00:00
dlee99
34a8c5094f Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5365 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-14 19:25:15 +00:00
silvio
045b1bac7a update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5364 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-14 17:21:42 +00:00
scorpio810
81811fb763 Upgrade *TS files
Upgrade changelog


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5363 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-14 14:54:30 +00:00
blacksun
31e6db8757 Element editor : alignment of text field can be edited
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5362 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-13 19:03:38 +00:00
alfredo
a0b26b847b spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5361 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-13 05:37:20 +00:00
alfredo
a1ba2b6d6b spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5360 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-13 05:34:41 +00:00
dlee99
84e6781ab3 Update Dutch translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5359 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 22:42:59 +00:00
pawel32640
df597fe4d7 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5358 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 16:42:46 +00:00
blacksun
f975cb4d3b Fix : element text item alignment work well when text rotation != 0.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5357 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 12:59:49 +00:00
blacksun
748986ceec fix crash when the properties of a element text item group
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5356 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 11:17:40 +00:00
ossau2mation
0a488f30d9 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5355 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 08:27:48 +00:00
scorpio810
cdbdff4c91 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5354 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-12 03:56:33 +00:00
blacksun
609fcc351f Dynamic element text item : add new feature -> alignment
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5353 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-11 18:14:41 +00:00
dlee99
bf12d337c9 Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5352 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-06 19:44:29 +00:00
nuri
e03aa0698b Element collection: changed code letter of signaling devices from H to P
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5351 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-05 05:35:44 +00:00
blacksun
bce0ee0fc7 Composite text dialog : The combobox propose every informations, not only these currently filled.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5350 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-03 09:33:30 +00:00
silvio
6553af3aee update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5349 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-02 21:32:06 +00:00
nuri
1be5a5a50c Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5348 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-05-01 04:55:18 +00:00
msouabni
c6f68cf5ef Update of the Arabic version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5347 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-30 18:32:22 +00:00
ossau2mation
02fc2d71c5 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5346 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-29 17:31:31 +00:00
dlee99
011d03acf4 Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5345 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-29 11:57:03 +00:00
scorpio810
48678c794b Update *TS files
Update changelog


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5344 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-28 15:25:33 +00:00
blacksun
aaea6968d0 fix bug
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5343 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-28 13:56:04 +00:00
blacksun
d53f830ad9 Text of conductor can be placed at top/bottom/left/right of conductor, and text never overlaps the conductor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5342 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-28 13:35:23 +00:00
blacksun
a975915428 forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5341 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-24 17:25:42 +00:00
blacksun
c96593e373 Multipaste : improve the conductor autonum, conductors are numerated from top to bottom, and left to right
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5340 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-24 17:23:27 +00:00
blacksun
9d2124f593 Multipaste dialog : add 'autonum pasted conductors' check box
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5339 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-23 13:50:36 +00:00
scorpio810
5fe1389f8b Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5338 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-22 12:23:53 +00:00
blacksun
5e15c597c1 Multipaste : auto-num of element work, even if the option "erase label on copy /paste" is enable.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5337 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-21 17:48:22 +00:00
blacksun
f4a7de8f37 Add element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5336 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-19 09:51:25 +00:00
blacksun
4986ec616e Bug fix : element editor, part text can't be edited directly.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5335 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-19 09:22:08 +00:00
blacksun
2cf181bf84 Element info widget : remove the check box 'visible'
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5334 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-14 12:21:07 +00:00
blacksun
e3930df5b5 multi past dialog : add check box for autonum the pasted element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5333 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-12 17:59:05 +00:00
dlee99
845fa934b7 Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5332 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-12 17:58:23 +00:00
blacksun
3228f3e5db Multi paste dialog : add a check box for allows auto connection of the pasted elements.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5331 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-12 16:24:44 +00:00
blacksun
ad7f52997d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5330 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-12 16:01:00 +00:00
blacksun
7b9fbb3382 dynamic element text item : "label" is not updated when report are unlinked, or when a folio is removed.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5329 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-11 17:47:45 +00:00
ossau2mation
60341b2207 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5328 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-10 19:27:25 +00:00
silvio
ab9f23713d update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5327 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 21:52:14 +00:00
msouabni
e0aa2e4b9a Update Arabic Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5326 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 21:41:35 +00:00
pawel32640
4216273423 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5325 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 18:28:36 +00:00
dlee99
77ae8bdf90 Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5324 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 18:19:36 +00:00
nuri
63fb8ce669 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5323 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 03:07:40 +00:00
scorpio810
5a41a10bee Update *TS file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5322 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-09 00:15:30 +00:00
scorpio810
d841346cad Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5321 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 21:35:46 +00:00
scorpio810
6ea2e2dcdf Add new symbols, thanks Friskolon
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5320 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 21:29:19 +00:00
blacksun
12e7a7002e Diagram editor : add new action in the context menu : multiple paste.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5319 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 16:50:52 +00:00
dlee99
b9e24cd08f Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5318 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 13:11:17 +00:00
dlee99
ccf7bf8adc Update Dutch Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5317 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 13:06:43 +00:00
dlee99
ef2a572568 Update Element Directory Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5316 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 12:50:57 +00:00
scorpio810
e672075f96 Add new symbol, thanks Friskolon
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5315 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 11:29:07 +00:00
scorpio810
d93cf60872 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5313 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-08 03:38:53 +00:00
scorpio810
02d1ac67ac Minor : forgot jump element in previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5312 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 19:09:34 +00:00
scorpio810
6209a36b8a Change propertie to terminal, fixed by commit svn 5307
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5311 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 19:06:27 +00:00
pawel32640
33b0508fa7 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5310 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 18:47:14 +00:00
msouabni
bd389104e2 Update Arabic Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5309 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 18:23:05 +00:00
scorpio810
2870ea3543 Update nl translations, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5308 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 17:16:07 +00:00
blacksun
8d56e7809c Function for search conductor at the same potential.
When the search function is searching in a terminal element, they search only for the first terminal found, no matter if the terminal element have more than two terminals.
So the list of conductors at the same potential is missing some conductors.
This commit fix it, now the search function search for every terminals of a terminal element 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5307 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-07 13:25:05 +00:00
silvio
27952d3a33 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5306 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-06 20:27:39 +00:00
ossau2mation
1cd6fea982 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5305 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-06 13:05:33 +00:00
aitolos
344fcd955a Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5304 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-06 10:07:13 +00:00
nuri
0b7bf89aff Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5303 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-06 09:37:01 +00:00
scorpio810
ab455652cc Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5302 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-06 03:55:38 +00:00
blacksun
fa547a34c8 Fix compilation warning (clang and gcc)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5301 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-05 18:49:28 +00:00
blacksun
5bfa58ad55 Fix missing "return"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5300 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-05 09:52:35 +00:00
blacksun
22f95c22f0 simplify some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5299 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-05 09:37:35 +00:00
nuri
9c96f2b6d7 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5298 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-05 08:10:06 +00:00
silvio
3afa35bad7 update .ts file ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5297 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-04 18:45:50 +00:00
blacksun
1450771081 diagram editor : undo/redo of a rotation is now animated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5296 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-04 16:55:59 +00:00
blacksun
f0c0e7c5d5 improve waiting dialog when open a project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5295 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-04 15:07:52 +00:00
blacksun
fb47a18b69 Remove, move and clean some functions of diagram view, among other things because it is not the role of the diagram view to provide these functions.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5294 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-04 11:02:40 +00:00
scorpio810
91bfa40401 Update nl translations, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5293 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-02 18:31:01 +00:00
ossau2mation
fc7b9f7fd5 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5291 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 17:09:11 +00:00
scorpio810
95c1226215 Minor : update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5290 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 15:13:46 +00:00
scorpio810
fcdc16245d Add translators in about qet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5289 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 15:13:10 +00:00
scorpio810
d8bd2b352b Update nl translation, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5288 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 14:52:43 +00:00
scorpio810
de00369769 Update nl translations, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5287 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 01:55:17 +00:00
scorpio810
e5b5a9d271 Update en, fr translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5286 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-04-01 01:50:01 +00:00
scorpio810
cc79b7edbc Update *.TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5285 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-31 21:20:42 +00:00
blacksun
1ec15c8426 Fix bug N° 157
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5284 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-31 11:40:55 +00:00
blacksun
250b2d42fe Element editor and diagram editor : context menu display only enabled actions
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5283 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-31 11:21:55 +00:00
blacksun
819c6c6f86 QetGraphicsItem, remove the function applyRotation and rotateBy, and use instead the native function of QGraphicsItem : setRotation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5281 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-27 19:04:43 +00:00
blacksun
da186f2efb Remove the class fixed element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5280 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-25 18:56:16 +00:00
blacksun
37ef43b97b clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5279 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-25 18:42:18 +00:00
blacksun
d44ead205b Fix : rotation of independent text item is not saved
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5278 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-25 18:20:54 +00:00
blacksun
6a958c668a remove the class comment item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5277 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-25 14:58:33 +00:00
blacksun
a7917bb5bb Remove the class element text item.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5276 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-25 14:33:49 +00:00
blacksun
8193687894 Remove some commented code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5275 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-24 14:35:32 +00:00
blacksun
0a4bca6acc Minor diagram editor : fix minor wrong behavior when naviagte with the arrow key
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5274 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-24 14:29:43 +00:00
blacksun
a58274c219 Minor : dynamic element text item, the undo is now animated when user edit the text from the dock widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5273 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-24 13:45:48 +00:00
blacksun
ae8f23f659 Element editor : improve the behavior with the arrow keys (depending to the current selection : nothing / one / several)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5272 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-20 10:59:39 +00:00
scorpio810
71faf02bb3 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5271 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-18 15:46:10 +00:00
msouabni
c45cff8000 Update Arabic translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5270 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-13 20:49:34 +00:00
blacksun
22f657e65f Fix : change made to a text group was not applyed when edited from the element properties dialog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5269 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-13 16:29:18 +00:00
blacksun
f2fd446bb5 Fix : Composite text dialog widget can't be selected when he is open by the element properties dialog widget
Fix : The ui freeze when use the drag and drop in the tab widget "texts" of element properties, when he is displayed by the element properties dialog widget.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5268 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-13 16:20:59 +00:00
blacksun
1077c91b6f Element editor : keep up to date the displayed text of dynamic text item when change the source of text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5267 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 16:26:02 +00:00
blacksun
d6f418fa83 fix indentation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5266 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 16:04:44 +00:00
blacksun
7f8c5ef2b5 Element editor : text field can now have a composite text as source of text
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5265 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 16:00:58 +00:00
blacksun
9b3c496fc5 Element editor : remove all sources code related to the old text field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5264 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 15:11:08 +00:00
blacksun
a6a875c7ce Element editor : Now every "old text" are converted to the new dynamic text, when open an element in the element editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5263 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 14:44:21 +00:00
scorpio810
bfa706ca29 Fix some Debian lintian spelling errors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5262 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 13:38:41 +00:00
blacksun
cbfd8fbc59 Fix compil fail, forget an include
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5261 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 13:10:49 +00:00
blacksun
275f20fa61 Element editor : dynamic text field can be set with element info as source of text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5260 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-11 12:59:53 +00:00
scorpio810
7384f22017 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5259 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-10 14:27:30 +00:00
scorpio810
4982aa8f40 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5258 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-09 00:20:05 +00:00
scorpio810
9af3b48f70 Add Gabberworld patch for fix bug N°153, thanks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5257 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-08 23:45:08 +00:00
scorpio810
33e460aa78 Element es translation, thanks Edgar
Add new symbol, thank Guillaume


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5253 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-03 03:34:10 +00:00
scorpio810
59730cb1ea Add new symbols, thanks Didierm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5251 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-02 13:51:56 +00:00
blacksun
eb8294cdbd Fix bug N°153
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5250 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-01 18:45:40 +00:00
blacksun
0fe955ec86 Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5249 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-01 18:38:37 +00:00
scorpio810
b94ed5674c Fix element mixed with link report properties on new dynamic text
grouping conversion.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5248 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-03-01 13:36:18 +00:00
blacksun
85a8a32106 Element editor : it is no longer required to have a text field, for save the edited element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5247 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-26 15:35:10 +00:00
blacksun
7a64f88341 Fix : Element text item doesn't display label, when autonum is used.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5246 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-26 15:27:42 +00:00
scorpio810
0559c01fa1 Update element translation en es, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5245 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-26 10:58:29 +00:00
alfredo
91768e985d Elements_translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5244 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-19 23:36:32 +00:00
scorpio810
bdefc88ccd Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5243 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-19 17:22:00 +00:00
scorpio810
1df3e12349 Enable Qt::AA_EnableHighDpiScaling and fix print bug, thanks Gabberworld for this patch.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5242 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-19 16:28:54 +00:00
scorpio810
0cb5de3ea3 Update element translation en es, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5241 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-18 17:18:52 +00:00
scorpio810
634d8b3709 Minor : update binary qet_cs.qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5240 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-18 12:39:47 +00:00
scorpio810
33dc476e69 Update element translation en, es, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5239 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-14 09:44:49 +00:00
scorpio810
fc05a2f2ec Add some colors for basic shapes inside dxf, thanks Gabberworld for this
patch


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5238 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-11 16:14:53 +00:00
pavelfric
5b584f3e58 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5237 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-10 21:12:49 +00:00
pavelfric
53745dc679 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5236 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-10 20:57:18 +00:00
scorpio810
45cbe170c9 Fix scroll mouse to lower it can flips the diagram, thanks Gabberworld for this patch
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5235 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-10 16:32:57 +00:00
blacksun
5445ae6b00 minor : update the alignment of group when he is created from an element text pattern
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5233 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-07 21:34:45 +00:00
scorpio810
8b4c3b68e3 Update en, fr translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5232 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-07 14:23:29 +00:00
scorpio810
ea8ee983df Fix crash if location text is so long (typo in code), thanks David666 to
report it


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5231 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-07 00:20:50 +00:00
scorpio810
b4c2fd2372 DXF export : fix some double items in dxf file, thanks to Gabberworld for this patch
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5230 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-06 16:12:33 +00:00
scorpio810
bd112eb92c Fix icon path
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5229 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-05 04:53:54 +00:00
scorpio810
855440118a Update rc file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5228 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-05 04:40:27 +00:00
scorpio810
b308f00b27 Try to fix HIDPI on Windows platform, thanks Gabberworld
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5227 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-04 18:32:42 +00:00
alfredo
f1d6d8ca38 “Update_Spanish_translations_elements_signaletiques”
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5226 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-03 03:06:58 +00:00
blacksun
a49769970e forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5225 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-01 18:42:26 +00:00
blacksun
70fbce280f Element text item group : add new property -> hold to bottom of the page
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5224 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-02-01 18:40:12 +00:00
blacksun
8e74d88e65 Fix wrong behavior when move a text item group, with rotation different than 0
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5223 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-28 11:16:09 +00:00
scorpio810
b626a1344e Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5222 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-27 23:55:25 +00:00
scorpio810
5034046c49 Update NL translations, thank Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5221 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-27 10:56:06 +00:00
blacksun
31fcec10ff Dynamic element text item : Add a new option "width" for define the width of the text.
If the text is wider than the defined width, the text is broken into multiple line.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5220 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-26 18:49:38 +00:00
msouabni
3e48da73b0 Update of the Arabic translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5219 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-26 17:50:09 +00:00
alfredo
804409451e Spanish translator elemnts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5218 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-26 05:56:25 +00:00
scorpio810
1874151c52 Fix bug #151
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5217 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-25 10:45:28 +00:00
blacksun
d85e395b46 Element text item with are now converted to dynamic element text item.
From now, the class ElementTextItem is not anymore use in qet. Every texts in a diagram are DynamicElementTextItem.
the Xref item was adapted to dynamic text.
Previously, the comment and location, displayed as a "static text" below the "old text" tagged "label" are now automaticaly converted to DynamicElementTextItem, so visually, these texts stay unchanged 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5216 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-19 12:17:20 +00:00
blacksun
649f8519c6 Fix crash : Sometime when finish the action of adding an element in a diagram, qet crash.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5212 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-08 23:50:45 +00:00
scorpio810
df079362d7 QFontDialog set default font to "Sans Serif", 9
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5211 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-08 19:28:01 +00:00
nuri
aa28b79c8e Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5210 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-05 05:31:27 +00:00
alfredo
0845510c78 qet_spanish_translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5209 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-04 18:44:30 +00:00
silvio
c0b805c391 IT translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5208 bfdf4180-ca20-0410-9c96-a3a8aa849046
2018-01-01 18:14:23 +00:00
scorpio810
5b31a014a6 Minor refresh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5207 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 17:19:43 +00:00
pawel32640
dd810a1190 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5206 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 17:10:13 +00:00
scorpio810
0d02662038 Add a "What's This?" for "launching DXFtoQET plugin" in menu
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5205 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 10:25:24 +00:00
scorpio810
34f07e69d3 Revert r5201
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5204 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 09:25:32 +00:00
ossau2mation
d4aee315cc Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5203 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 09:03:28 +00:00
scorpio810
ff8054dcc7 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5202 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 08:15:13 +00:00
scorpio810
c5793680d3 Add message box for launching DXFtoQET plugin
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5201 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 08:05:48 +00:00
scorpio810
d4edfb6414 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5200 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 00:57:12 +00:00
scorpio810
3d26842504 Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5199 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 00:53:55 +00:00
scorpio810
041b1c6f1e refresh binary Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5198 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 00:50:02 +00:00
scorpio810
1e9274e6ba Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5197 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 00:45:45 +00:00
scorpio810
ac1afe60b9 Add translation for message box "Error launching plugin"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5196 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-31 00:31:14 +00:00
blacksun
1b18b980a9 User can export / import the configuration of the texts and texts group of an element.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5195 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-30 14:41:25 +00:00
scorpio810
1137318384 Basic shape add new CustomDashLine style with
Dash Pattern (<< 10 << 10 );


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5194 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-29 23:13:35 +00:00
pavelfric
46bdb3f849 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5193 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-28 13:29:20 +00:00
scorpio810
fdaff6ccc5 Update macOS Info.plist
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5192 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-23 12:59:44 +00:00
blacksun
94d52880a7 Element texts group can be renamed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5191 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-18 20:05:00 +00:00
scorpio810
fd2a53bdd2 Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5190 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-17 18:53:55 +00:00
scorpio810
e9e83e81ce Add a button in config page for open a new Qfontdialog widget and choose
font for summarry pages (foliolist)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5189 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-17 14:43:39 +00:00
alfredo
9d555c0da2 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5188 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-15 01:53:47 +00:00
scorpio810
76c1be8c86 Element translation en es, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5186 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-14 21:24:16 +00:00
scorpio810
745c64d283 Add new symbols found on https://forum.gce-electronics.com
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5184 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-14 10:22:17 +00:00
silvio
f0232be3fe updating translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5183 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-14 07:25:40 +00:00
blacksun
3340489145 Dynamic element text item : remove the "tagg" property:
Tree Widget for edit the element text item :
-Change a value of a spinbox with the mouse wheel, apply the change in live (no need to press enter or leave focus).
-Remove the sub-level of source of text.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5182 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-13 21:15:05 +00:00
nuri
35d8ec562c Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5181 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-13 04:14:16 +00:00
ossau2mation
c8c9b56fe7 Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5180 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 19:44:57 +00:00
pawel32640
304263c4c6 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5179 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 19:10:30 +00:00
scorpio810
f873ab73c5 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5178 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 18:05:22 +00:00
scorpio810
e6838ddd13 Minor Update *TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5177 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 15:46:11 +00:00
alfredo
0e6c93c2f8 Spanish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5176 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 15:00:27 +00:00
nuri
333e3345bc Improve the button to choose the standard font used for text fields (those which are added on folio)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5175 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 06:52:44 +00:00
nuri
60617b28cd Minor GUI improvement in configdialog.cpp (better icons rendering)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5174 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 05:11:07 +00:00
nuri
4c8e45b57b Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5173 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-12 03:26:27 +00:00
pawel32640
fee0f4d4c5 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5172 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-11 19:49:50 +00:00
scorpio810
3f5acb74e6 Minor : fix Multiple translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5171 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-11 16:24:29 +00:00
scorpio810
d79815ee4e Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5170 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-11 14:37:35 +00:00
nuri
fe9f871661 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5169 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-11 01:40:07 +00:00
scorpio810
925b54920e Add a button in config page for open Qfontdialog widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5168 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-11 00:52:33 +00:00
alfredo
2d20fb3081 Update_Spanish_Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5167 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-10 22:05:57 +00:00
scorpio810
740b649976 Add a Qfontdialog for choose policy for independent text item, not
finished yet !


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5166 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-10 16:10:19 +00:00
blacksun
292c45166a Element text item group : Add new property for edit the adjustment of the space between texts
Dynamic element text item editor : Add new entry for edit the alignment, rotation and vertical adjustment of a group
Element Mover : Minor, remove the group texts from the moved content


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5165 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-10 14:31:27 +00:00
aitolos
c8efc1102f Update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5164 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-10 11:39:53 +00:00
scorpio810
7c8ea795e4 Dissociate fonts policy and size for independent text item
Possiblility to overide defaut settings by adding in QElectroTech.conf
diagramitemsize, diagramitemfont variable, for example: 
[General]
diagramitemsize=12
diagramitemfont=droid


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5163 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-10 01:03:36 +00:00
ossau2mation
4f366490b9 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5162 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 20:53:55 +00:00
pawel32640
ef88f41072 update polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5161 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 19:59:10 +00:00
scorpio810
e29b51fca7 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5160 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 16:23:17 +00:00
scorpio810
4d86670354 Improve dialogwaiting progressBar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5159 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 15:36:20 +00:00
scorpio810
8e2a0d4bb8 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5158 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 14:22:34 +00:00
scorpio810
8d23356796 MacOS minor add Thread Count in aboutqet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5157 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 14:05:42 +00:00
scorpio810
063ea4c531 MacOS fix can't close widget about QET : restore button close
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5156 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 13:19:15 +00:00
scorpio810
12edbf93be Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5155 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 12:38:08 +00:00
scorpio810
8ef41fdadd Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5154 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 01:38:19 +00:00
scorpio810
6a4520a4a1 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5153 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 01:17:17 +00:00
scorpio810
bcb84831a5 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5152 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-09 00:33:25 +00:00
scorpio810
308430351d Improve latest commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5151 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-08 23:43:37 +00:00
scorpio810
f63bfd6185 Add Thread Count in progress bar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5150 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-08 23:01:48 +00:00
scorpio810
f478f20b1d Improve aboutqet widget and layout
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5149 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-07 14:41:07 +00:00
scorpio810
b40fdcf573 projectconfigpages setMinimumWidth(680)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5147 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-05 22:27:46 +00:00
scorpio810
3e8065d373 Update element en, es translation, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5144 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-05 21:49:13 +00:00
blacksun
e8905793cc Texts group can be removed with the delete key of keybord
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5142 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-05 21:41:29 +00:00
blacksun
89c019a10e Texts group item can be rotate.
The keybord shortcut for texts group alignment change. Now it's ctrl + arrow-left/up/right


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5141 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-05 20:51:54 +00:00
blacksun
0f2f8f0f2f Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5139 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-05 12:29:44 +00:00
pawel32640
24d474b424 update polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5138 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-04 09:57:21 +00:00
alfredo
3e9a9e9bf1 “Update_Spanish_translations”
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5137 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-04 00:39:21 +00:00
alfredo
7b4bde7c88 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5136 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-04 00:05:50 +00:00
scorpio810
ce9766f411 Minor fix typo in element description name
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5134 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-03 17:36:41 +00:00
scorpio810
f4a233345a Minor icon for macOS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5133 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-02 20:34:16 +00:00
scorpio810
4502eee1ce Minor icon change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5132 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-02 19:37:37 +00:00
blacksun
9828f2be76 Dynamic element text editor : improve the gui
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5129 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-12-01 18:36:57 +00:00
blacksun
ea5cb340d5 Dynamic element text item editor : add entry for edit the rotation of the edited text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5125 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-29 19:17:02 +00:00
blacksun
4e440456fc Element texts group is fully managed by the undo stack
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5124 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-29 14:49:12 +00:00
scorpio810
12b30e7f30 Element translation en es, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5121 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-28 16:08:51 +00:00
nuri
553eadb332 icon theme: add new icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5120 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-27 23:41:24 +00:00
nuri
dbd867d604 icon theme: add new icons in element editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5119 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-27 20:27:49 +00:00
blacksun
1bf8ace205 Forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5118 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-27 19:43:02 +00:00
blacksun
2bf4e330f4 Add initial support of texts group
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5117 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-27 19:37:39 +00:00
nuri
d31d360340 icon theme: add missing icons in size 16x16px
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5116 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 22:20:35 +00:00
nuri
fc4ecb5587 icon theme: add missing icons in size 16x16px
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5115 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 21:13:56 +00:00
nuri
79b578dcf7 icon theme: add new icons for titleblock placement (bottom or right)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5114 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 08:03:26 +00:00
nuri
b0e185c506 icon theme: add missing icons in size 16x16px
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5113 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 07:13:14 +00:00
nuri
22756eff42 icon theme: add missing icons in size 16x16px
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5112 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 06:36:06 +00:00
nuri
e5ea6746cf icon theme: minor correction in .png filne name
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5111 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 05:36:31 +00:00
nuri
dd2c45ab64 icon theme: add dedicated icons for actions "show only this folder" and "show all folders" in the collection panel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5110 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 04:54:31 +00:00
nuri
947b933941 new icon theme: update subversion repository to the new folders and files used by the new theme
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5109 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-26 03:46:48 +00:00
nuri
9f3024545f Set the KDE "Breeze" icon theme as new icon theme for QElectroTech
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5108 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-25 07:44:38 +00:00
alfredo
5e44e6e8ad Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5106 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-18 19:23:04 +00:00
alfredo
d06410e696 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5105 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-18 05:21:36 +00:00
scorpio810
8d82fab36a Update elememts translations, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5103 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-17 17:47:18 +00:00
nuri
9d9e14b8e4 Revert previous commit and add an extra line in the csv exportation.
The new line is a new header containing ID numbers in order to universally identify columns.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5102 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-16 21:13:32 +00:00
scorpio810
0fb622fae5 Add UUID field in nomenclature export
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5101 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-16 18:57:16 +00:00
scorpio810
e16a287399 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5099 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-16 08:19:48 +00:00
scorpio810
324b488f09 Element spanish translation, thanks Edgar
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5098 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-13 20:46:50 +00:00
scorpio810
3a2bcd9490 Update changelog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5097 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-11 14:30:53 +00:00
blacksun
3e934b994b Part dynamic text field, set default color to black
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5095 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-10 17:48:46 +00:00
scorpio810
9045088d2c Minor : add a vertical spacer in dynamictextfieldeditor widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5094 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-09 16:29:27 +00:00
blacksun
6693bb6cad Dynamic element text can have a frame
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5093 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-07 18:35:26 +00:00
blacksun
d2d1b74fad Minor GUI improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5092 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-06 16:17:48 +00:00
scorpio810
33bc4e1072 Refresh symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5090 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-05 23:14:25 +00:00
blacksun
7fa942e3c1 Dynamic element text editor :
When add a new text, the item text in the tree view is selected and expanded.
When edit the pos of a text in the tree view, the new position is set directly, no need to lose focus or press enter key anymore for update the pos of the text.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5089 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-11-05 14:33:03 +00:00
blacksun
50fc46e162 Diagram editor : add in the tree widget use to edit the property of dynamic text item, two news items for edit the X and Y pos of the text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5088 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-29 10:43:34 +00:00
blacksun
5bb0a3f0a3 minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5087 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-27 18:44:37 +00:00
blacksun
e2a49e4872 Dynamic element text item : when the source of text is label or composite text with variable %{label}, and the label of the element is created from a formula,
the displayed text of the dynamic text item is up to date according to the formula 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5086 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-26 17:12:49 +00:00
blacksun
7e2134e0db When parse the defintion of an element in the diagram editor, befor parse anything, we get every DomElement with tagg "input".
If no one of these "input" have the attribute "tagg" set to "label", we set it to the first "input"  


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5084 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-21 12:05:57 +00:00
blacksun
02fb84caec Diagram editor :
1° When user drag and drop an element with text item (tagg input in the xml), the text item are converted to a dynamic text item.
2° When open an existing project, every texts item of elements in the project are converted to dynamic text field.

Note that the changes described upper don't work for the texts which have a tagg (for the moment)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5083 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-19 09:10:23 +00:00
nuri
055dbf84e6 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5082 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-14 06:27:03 +00:00
ossau2mation
8fc9d0a115 Danish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5081 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-13 19:11:30 +00:00
pawel32640
499a840f1d polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5080 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-12 16:25:26 +00:00
scorpio810
989d2877ee Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5079 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-12 12:52:26 +00:00
scorpio810
8cc143bb73 Minor : Update *.TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5078 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-11 19:40:47 +00:00
blacksun
9e9739bb4d Improve the previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5077 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-11 18:44:45 +00:00
scorpio810
2066092b47 Fix nomenclature export
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5076 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-11 18:24:39 +00:00
scorpio810
8dbd96d334 QetGraphicsHandlerItem reduce hoover size
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5075 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-11 15:37:40 +00:00
scorpio810
ad82ce07b7 Add new symbols en_60617, thanks Baboune41
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5074 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-11 13:39:59 +00:00
blacksun
8d333cbf1b Set the ItemIndexMethod of scene to NoIndex, according to some forum (Adress of forum are in the cpp file of this comit) they can be the sources of the crash occured by the conductor and shape "guost".
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5073 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-09 16:05:19 +00:00
nuri
374edc43be Change order of tabulations in folio properties widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5072 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-08 21:49:13 +00:00
aitolos
2383e3d609 Update Greek lang
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5071 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-08 16:32:10 +00:00
silvio
3fec215195 update IT translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5070 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-05 23:28:13 +00:00
nuri
2204c87242 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5069 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-05 19:05:32 +00:00
rdsivd
5f5834a2c2 Update translation BE-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5068 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-05 18:52:51 +00:00
ossau2mation
c1c1d52772 Danish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5067 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-05 15:45:28 +00:00
pawel32640
667823eb1a polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5066 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-05 09:30:52 +00:00
scorpio810
5c0edbd647 Update *TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5065 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-04 23:15:17 +00:00
scorpio810
c9dd9ee8a2 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5064 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-04 23:07:35 +00:00
pawel32640
1a2ec0aabe polish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5063 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-04 08:09:08 +00:00
scorpio810
96fd766596 Update fr, en translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5062 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-03 12:46:33 +00:00
scorpio810
9351ba63b7 Add new field Name of provider,
rename fields,
update *TS files


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5061 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-03 12:11:28 +00:00
blacksun
7f92c1af7d Fix crash when user try to move a non movable item.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5060 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-03 08:54:58 +00:00
scorpio810
9c24163556 Add new description field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5059 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-02 16:59:53 +00:00
scorpio810
ecd33d36c7 Add new symbols, thanks Wiktor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5058 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-02 14:46:26 +00:00
blacksun
bb39413992 Element editor : element informations (manufacturer, reference etc...) can be created directly from the element editor. For that go to the widget "Element Property"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5057 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-01 15:25:34 +00:00
rdsivd
d5699f6b67 minor modifications on translation be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5056 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-01 08:00:34 +00:00
scorpio810
5cd1fe2fc8 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5054 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-10-01 07:05:02 +00:00
scorpio810
2a8d4920a1 Change the minimum conductor text size to 3
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5053 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-28 07:51:58 +00:00
blacksun
2934f769c6 Fix fail to build for ubuntu trusty
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5052 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-27 18:59:17 +00:00
blacksun
ec1e778bff Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5051 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-27 15:31:57 +00:00
blacksun
8761d4768b Element editor : When open a .elmt file in the element editor, the texts field are converted to dynamic text field, except for text field with tagg : label, function and tension/protocol.
In other words every text without tagg are converted.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5050 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-27 15:26:47 +00:00
scorpio810
1933022b43 Update NL translations, thank Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5049 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-26 20:40:10 +00:00
blacksun
61c4b5d8ef Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5047 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-25 17:53:58 +00:00
blacksun
aa5241896c Element editor : dynamic text item can be added directly from the element editor (WIP)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5046 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-25 17:44:02 +00:00
scorpio810
0c01bc4406 Update NL translations, thank Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5044 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-24 17:04:22 +00:00
scorpio810
eb926c2a37 Update README.elements, thanks Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5043 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-22 09:46:38 +00:00
blacksun
2e389fb80f Dynamic element text item :
when text is owned by a folio report, the only information available to the text is :
the label (formula used for the Xref between linked report), the function of the potential and tension/protocol of the potential.
Unlike other elements there is no more information, because a report is not a real element.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5039 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-13 16:38:16 +00:00
scorpio810
e8b602915e Update NL translation, thank Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5038 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-05 09:31:38 +00:00
rdsivd
0424a73999 Adpater BE-NL
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5037 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-03 19:22:01 +00:00
pavelfric
211d6c45c2 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5036 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-09-01 19:34:18 +00:00
blacksun
5248c891f4 Dynamic element text item :
First : If the parent element of the text item is a slave,
the info use to create the text (both if option are 'element info' or 'composite text') are taken to the linked master element, and not the slave.
If the salve element is not linked, no information is taken.
Second : if the text is composed with the variable 'label' of the master (both if text from are 'element info' or 'composite text') double click on the text, act like a link and go to the master.



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5035 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-29 14:54:27 +00:00
blacksun
31775871a4 When we link two reports together, if the text is the same for every conductors, we don't ask to user what to do, even if the function or the tension/protocol are not identical.
Now we check : text, function and tension/protocol, if one of these three values is not identical, we ask to user what to do.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5032 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-27 11:27:41 +00:00
scorpio810
48778d901c Update splash version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5031 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-25 07:28:30 +00:00
blacksun
6419f84d9c Keep up to date the model when a dynamic text item change, for exemple after an undo command
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5030 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-24 17:35:40 +00:00
blacksun
99eac96475 Conductor : double click on an handler open the property editor of the conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5029 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-24 14:55:13 +00:00
blacksun
57f34b4ee2 Minor : remove the QetGraphicsItemHandler returned by the function zValue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5028 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-24 14:48:58 +00:00
blacksun
78a2b8a301 Enclose a class function into a macro because available since Qt 5.3
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5027 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-24 12:38:35 +00:00
scorpio810
f202493e11 Update Dutch translation, thank Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5025 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-23 11:03:57 +00:00
blacksun
53ae49b3c7 When we select an element dynamic text, the element properties widget switch to the tab of dynamics text and expand and select the item in the tree that represent the dynamic text.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5024 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-22 18:27:23 +00:00
blacksun
fe46dc29a6 Fix ftbfs for ubuntu 14.04
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5023 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-22 17:24:51 +00:00
blacksun
fbb07bf2b8 Commit 5005 break the change made in commit 5003 : fix it
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5022 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-16 14:32:34 +00:00
blacksun
29748874fd Dynamic element text item, can have for source of text a composite text, a text composed both by user typed text and element info.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5021 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-16 13:52:15 +00:00
scorpio810
f94b7a04dd Fix typo on qet_tb_generator warning msgbox
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5019 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-15 01:38:31 +00:00
scorpio810
0011213314 Add new symbols thanks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5016 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-10 12:30:38 +00:00
scorpio810
afb96798b9 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5015 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-10 12:25:37 +00:00
scorpio810
a891b993d3 Add new symbols, thanks shateks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5014 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-10 12:24:31 +00:00
scorpio810
2d57cde7e1 Add new symbols, thanks Szateks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5013 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-10 12:22:04 +00:00
blacksun
3c535b2904 Minor : fix warning
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5012 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-09 09:03:04 +00:00
blacksun
e71fc99464 Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5011 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-06 11:35:01 +00:00
blacksun
6e2ed873bb Dynamic element text item can display information of parent element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5010 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-06 10:18:33 +00:00
scorpio810
31f36b8625 Modernize-use-override refactors code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5009 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-05 02:10:01 +00:00
scorpio810
9f9b127c04 Modernize-use-nullptr refactors code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5008 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-05 02:06:59 +00:00
scorpio810
876d05a338 Update Dutch translation, thank Dik
Minor reorganize some elements


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5007 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-04 13:36:57 +00:00
scorpio810
861cb1e83a Update Version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5006 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-04 13:26:08 +00:00
blacksun
3ef55906a4 First step for the dynamic element text : Now user can add directly from the diagram editor an editable text of an element.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5005 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-03 17:36:08 +00:00
blacksun
0df5391491 Fix the left margin of the diagram : In some condition, (most of time when use copy and paste) a margin appear in the left of the folio.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5004 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-03 17:04:08 +00:00
blacksun
fec5c95682 Improve the behavior of the feature "zoom out beyond of folio" : drag the scene is now more user-friendly
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5003 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-03 16:53:43 +00:00
blacksun
f4f14ff4db Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5002 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-03 16:47:40 +00:00
blacksun
618683d962 Toatly revamp of the handlers use to modify primitves, shapes and conductors.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5001 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-02 15:26:14 +00:00
blacksun
86cb13f74d Element editor : Element primitive decorator doesn't manage anymore the text field when a single text is selected
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5000 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-01 19:37:04 +00:00
blacksun
b9013a8914 Add bicolor conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4999 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-08-01 19:09:31 +00:00
blacksun
5d4fcfa932 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4997 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-31 17:54:22 +00:00
blacksun
fbae3da33f Element editor : clear the event interface befor save, to avoid the save of the primitive owned by the interface.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4996 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-31 17:41:48 +00:00
scorpio810
ecfb49c227 Fix libpng warning: iCCP: known incorrect sRGB profile, thanks LETARTARE
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4995 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-27 21:46:34 +00:00
blacksun
b800d466f5 Fix windows vista warning.
Thanks LETARTARE


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4994 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-27 20:26:13 +00:00
blacksun
a69e39cd2f Fix crash: In Xref link widget, If there is an element being added (element pose mode), and this one is compatible with the type of Xref sought by the widget, then the widget show this element.
When user finish the element pose mode, the element under the cursor is deleted, but continue to be show by the widget.
So, click on this element in the widget cause a crash.
This case come when user add element and go to another diagram without finish the pose mode, and open Xref link widget from an element in this other diagram. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4993 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-26 08:55:32 +00:00
blacksun
4c56ebf353 Fix crash. Close a project with a selected linkable element (master, slave, report) cause a crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4992 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-20 12:40:30 +00:00
scorpio810
9fdcf1a4ad Add new symbol, thanks Shateks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4991 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-20 12:35:02 +00:00
scorpio810
f4025e1ef0 Add new symbols, thanks Galexis
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4990 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-16 17:54:47 +00:00
scorpio810
64f49be4e9 Update Polish translations, thanks Pawel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4987 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-12 18:10:04 +00:00
scorpio810
0505dd18b2 Add new symbols, thanks Marcin
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4984 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-07-08 20:19:19 +00:00
scorpio810
7d25cda29c Remove unused macOS compiler flags
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4983 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-30 14:15:32 +00:00
scorpio810
af7179091e Add clang version in compilation informations for macOS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4982 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-27 15:48:26 +00:00
scorpio810
06eefc793a Move to Clang compiler, replace gcp command
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4981 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-27 14:49:46 +00:00
blacksun
f390c750d5 Fix behavior :
In some condition, label of report element are not up to date.
In some condition, the title of tabs widget of folios are not up to date


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4980 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-20 19:15:39 +00:00
scorpio810
9fdb5ff4fe Refresh icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4979 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-14 13:32:52 +00:00
scorpio810
e37a7450b4 Convert svg icons to png
Workaround to fix segfault on Fedora, thanks Remi for reporting this issue
see : https://bugzilla.redhat.com/show_bug.cgi?id=1461390



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4978 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-14 11:56:32 +00:00
scorpio810
d3f5352a03 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4977 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-13 14:38:50 +00:00
scorpio810
77ebe00105 Update displayed Version and Splash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4975 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-06-13 09:38:46 +00:00
rdsivd
a0ed144307 minor correction be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4971 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-27 08:07:24 +00:00
rdsivd
9ea0143c1a update be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4967 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-21 06:30:33 +00:00
scorpio810
60c524842c Re enable HDPI for macOS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4966 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-19 00:42:46 +00:00
scorpio810
9c8b1a7371 Disable High Dpi Scaling
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4965 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-18 16:34:37 +00:00
scorpio810
b18636bdfe Revert
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4964 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-18 01:31:27 +00:00
scorpio810
39e5edfb51 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4963 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-18 01:02:43 +00:00
scorpio810
e02aaab4a7 Set HDPI scaling to disable
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4962 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-18 00:24:42 +00:00
scorpio810
1dd8b2a4db Fix bug 0000139
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4961 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-17 14:21:52 +00:00
scorpio810
c06a9544b2 Update Dutch translation, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4960 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-17 00:57:15 +00:00
blacksun
fee0c55d9c In rare case in the diagram editor, when we add an element in the diagram and quickly click left, qet crash.
This commit try to avoid this crash, but without any certitude because the crash is very difficult to reproduce


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4959 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-13 16:01:47 +00:00
scorpio810
2c9e1898c2 Update Dutch translation, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4958 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-07 18:54:40 +00:00
scorpio810
d6d882d2ad Update Dutch translation, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4957 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-05 23:41:12 +00:00
scorpio810
1650ba4613 Update Dutch translation, thanks Dik
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4956 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-03 22:43:50 +00:00
blacksun
1a9c27b017 Improve last comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4955 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-01 16:22:34 +00:00
blacksun
310ce75089 Minor fix : Elements collection widget doesn't load automatically when the parent dock widget is detached
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4954 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-01 15:47:28 +00:00
blacksun
a12198294f Re-enable the button "find element in panel".
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4953 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-05-01 11:42:55 +00:00
blacksun
0e003b27a5 Fix crash : Qet crash when we save a project and the element collection is not loaded.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4951 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-29 17:51:55 +00:00
alfredo
62b82f6599 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4949 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-28 20:08:17 +00:00
pavelfric
b7b75d439d Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4948 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-25 18:39:49 +00:00
scorpio810
919cea677f Add new symbols, thank Ivan
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4947 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-24 22:55:28 +00:00
scorpio810
c5b71bbe17 Tag 0.6 RC1
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4945 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-23 15:01:56 +00:00
scorpio810
fc126df92c Update CS qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4944 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-19 04:42:47 +00:00
scorpio810
59f10a2ca3 Update Polish translation, thanks Pawel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4943 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-18 20:35:08 +00:00
rdsivd
7513778d5c update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4941 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-04-02 14:01:05 +00:00
blacksun
c03a862151 Fix the lose of the text of element text item tagged "label" in some case.
See the diff for more information.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4940 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-31 17:09:04 +00:00
alfredo
41040ef97c Spanish translation qet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4939 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-31 15:48:14 +00:00
silvio
8703646e0e updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4938 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-22 14:33:45 +00:00
nuri
179b4b9b27 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4937 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-22 09:47:03 +00:00
scorpio810
7cfc679cf2 Update translations en and fr
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4936 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-21 18:17:51 +00:00
scorpio810
972121ed27 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4935 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-21 18:07:02 +00:00
blacksun
37ec39b512 Remove some unused methods
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4933 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-19 15:23:07 +00:00
blacksun
a3b9c5d6c9 minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4930 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-14 16:40:41 +00:00
blacksun
57f58d78ad Update the behavior of the option "Do not store the labels of items in the copy paste", to work well with the formula.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4928 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-10 22:53:29 +00:00
blacksun
34d7d134d3 Simplify how the diagrams are saved
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4927 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-05 13:10:47 +00:00
blacksun
878e3d5bf0 Remove some unused or obsolete code.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4926 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-05 12:24:33 +00:00
blacksun
f4acaff7be Autonumbering dock widget : add a "configure" push button to quickly open the dialog used for create the auto numbering rules.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4925 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-03-01 15:03:56 +00:00
blacksun
3f601ebc7e Fix regression : Autonum doesn't work for terminal element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4924 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-28 18:52:48 +00:00
blacksun
257fc42e35 Remove unused class
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4923 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-27 17:04:47 +00:00
blacksun
edd18042ec Improve some widget and layout
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4922 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-27 16:58:05 +00:00
blacksun
ce7f1cb3ad Improve some widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4921 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-26 19:39:36 +00:00
blacksun
945d8562ca Improve some layout and widget item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4920 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-26 18:30:34 +00:00
rdsivd
7f5f2b0081 translattion correction on be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4919 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-25 21:59:56 +00:00
blacksun
a4d213e8f4 Project view : prepend the positon number or the folio label (acording the configuration of qet) in the title of each diagram view tabs.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4918 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-18 13:30:38 +00:00
blacksun
5d52605b38 Replace deprecated qSort function
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4917 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-16 14:10:30 +00:00
blacksun
070c601f7b Switch the header label : Folio label or Folio number, according to the curent settings of qet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4916 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-16 13:27:26 +00:00
blacksun
07be603a1f Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4915 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-15 16:10:07 +00:00
alfredo
f4c2f375d7 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4914 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-14 23:53:30 +00:00
scorpio810
2137ca744a Fix autonumbering menu cano assign formulas to custom element label.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4913 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-14 03:41:25 +00:00
scorpio810
7a62fe8356 Remove previous commits
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4912 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-13 20:49:31 +00:00
scorpio810
75140b63a4 Improve autonumbering to assign formulas to custom element label.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4911 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-13 19:26:09 +00:00
scorpio810
1d523e0aea Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4910 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-13 11:43:04 +00:00
scorpio810
70b047a101 Element autonumbering. Add autonumbering menu to assign formulas to
custom element label. 
(~/.qet/elements/qet_labels.xml)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4909 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-13 11:40:33 +00:00
scorpio810
c2d323a818 Add Raul in author tab
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4908 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-12 13:13:50 +00:00
scorpio810
31e99d2830 Add new symbols, thanks dekeukelare
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4907 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-12 10:40:16 +00:00
blacksun
1b120550e8 Fix bugtracker report N° 119 : Variable %F (of several element Xref) is not always up to date when the corresponding value of titleblock change.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4906 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-11 11:42:52 +00:00
aitolos
9265839411 Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4905 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-09 19:00:29 +00:00
blacksun
9792e95e6f Minor : remove a signal in diagram and use directly a signal of qetproject
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4904 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-09 11:07:45 +00:00
rdsivd
4b56501d1e update be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4903 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-06 20:45:55 +00:00
scorpio810
41659fa6fd Revert r4900
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4902 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-05 16:18:50 +00:00
ossau2mation
e233d7ad77 Minor update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4901 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-05 07:51:57 +00:00
scorpio810
6422dd096f Replace foreach function by for, please try and report problem
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4900 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-04 21:43:23 +00:00
scorpio810
6ed750b355 Minor : typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4899 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-03 19:26:13 +00:00
scorpio810
aded80e4ae Replace QSort function has been deprecated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4898 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-03 13:48:42 +00:00
scorpio810
902037d278 Link single element widget : use folio label/ID switch for show or hide
columns in the QTreeWidgetItem


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4897 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-02 18:00:53 +00:00
scorpio810
c5649edd39 Add new symbols, thanks Babounne
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4896 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-02-02 10:01:40 +00:00
scorpio810
66c24c51ed Fix FTBFS if QT VERSION < 5.5.0
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4895 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-31 15:50:43 +00:00
silvio
5b4fa3ecf2 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4894 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-31 14:28:19 +00:00
pawel32640
0f1f86877b polish translation update - .ts .qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4893 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-31 12:35:20 +00:00
pawel32640
6245486f3b polish translation update - .ts .qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4892 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 19:34:23 +00:00
pawel32640
6eb036c54e polish translation update - .ts .qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4891 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 19:13:43 +00:00
nuri
4ed25640b1 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4890 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 18:17:05 +00:00
scorpio810
b8e0a33154 Updated EN, FR translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4889 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 16:15:00 +00:00
scorpio810
d99c26fa99 Update * TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4888 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 16:09:00 +00:00
blacksun
7569c5cc99 Master, slave and report QTreeWidget used for Xref :
The header of the QTreeWidget have a context menu used to save the current state of the columns (size and position).


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4887 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-30 14:29:01 +00:00
blacksun
4f17eaa9c3 Link single element widget : when link a folio report, add columns for the values : Conductor text, function, tension/protocole
Add a line edit used to filter the QTreeWidgetItem. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4886 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-29 18:43:42 +00:00
blacksun
37e7477d09 Unlink a slave element, reset her text to "_".
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4885 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-29 13:57:17 +00:00
scorpio810
0f53d5e69e Minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4884 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-27 21:03:06 +00:00
scorpio810
a906a38c1e Minor, Link single element widget : move folio title to rightmost
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4883 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-27 20:11:28 +00:00
scorpio810
0460876b88 Remove files protect to settings
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4882 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-27 17:42:58 +00:00
silvio
1725efabff updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4881 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 21:01:26 +00:00
nuri
8fc94eef94 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4880 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 20:28:21 +00:00
rdsivd
15cbe48ace update be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4879 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 20:06:52 +00:00
scorpio810
cbee2d4c3c Update EN, FR translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4878 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 19:09:27 +00:00
scorpio810
94ee24bf69 Update * TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4877 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 18:59:08 +00:00
scorpio810
7824df7804 Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4876 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 18:56:49 +00:00
scorpio810
df5557407e Minor, protect mode : improve message
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4875 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 16:05:43 +00:00
blacksun
0b943ed52d Link single element widget : revamp the widget (use a QTreeWidget instead of a list of widgets) and add the variable %F to the value displayed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4874 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-26 10:09:07 +00:00
scorpio810
73dd8b6b57 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4873 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-25 18:46:11 +00:00
scorpio810
15c3bf1a39 Add new QCheckBox in QET settings for Keep projects in read-only, their
files will cannot be over written


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4872 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-25 16:53:09 +00:00
scorpio810
f40950d714 Minor : Increase widget Minimum Size (800, 390) to (800, 590)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4871 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-25 11:08:21 +00:00
scorpio810
a3be18280b Export Dialog : add the %idx as a prefix to exported file names
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4870 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-24 17:05:02 +00:00
scorpio810
40bb3fe2c6 Improve dxf export for folio list
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4869 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-24 08:08:08 +00:00
blacksun
a4ba895e02 Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4868 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-22 16:47:18 +00:00
blacksun
f97b9bcc84 Add variable %F in the widget used to link master element.
Revamp the widget : replace QListWidget by QTreeWidget


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4867 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-22 13:48:58 +00:00
rdsivd
7e284311a6 update langue BE-NL
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4866 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 21:39:43 +00:00
silvio
80354ac695 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4865 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 11:53:08 +00:00
nuri
f8f9082a41 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4864 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 08:12:06 +00:00
scorpio810
c910b9fb9c Update FR, EN translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4863 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 06:49:26 +00:00
scorpio810
a7d276d91a Update * TS files (minor)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4862 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 06:45:58 +00:00
scorpio810
73472dccc4 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4861 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-21 06:38:04 +00:00
scorpio810
54c85db29c Minor update Copyright year
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4860 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-20 10:55:49 +00:00
blacksun
43dbc4aa0a Minor fix : Element keep up to date there label, when the formula contain the variable %F, and the text pointed by %F contain the variable %id
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4859 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-19 14:55:19 +00:00
blacksun
eee1095761 Minor fix : Conductor keep up to date there label, when the formula contain the variable %F, and the text pointed by %F contain the variable %id
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4858 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-19 14:18:41 +00:00
blacksun
49b9d598db Fix : in nomenclature .csv file, the variables of the value in column "label of folio" isn't assigned.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4857 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-19 12:43:40 +00:00
silvio
da1ffeaaf2 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4856 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-18 18:35:11 +00:00
ossau2mation
ed8ffc638e Updated Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4855 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-18 16:14:30 +00:00
nuri
b36bb1236e Correct some typo in the qet_directory file of the QET collection at:
10_electric/10_allpole/330_transformers&power_supplies


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4854 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-18 15:52:46 +00:00
nuri
7b5f7fc524 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4853 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-17 07:28:41 +00:00
alfredo
3d38ede75f Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4852 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-15 22:13:05 +00:00
scorpio810
2a971d3320 Update *TS files, French and English translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4850 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-15 19:36:40 +00:00
scorpio810
4172a2a06e Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4849 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-15 19:29:10 +00:00
blacksun
8f30a51945 Add a dialog to change the formula when two potentials is linked by a folio report, and the new potential have incompatible variables like %id.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4848 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-15 12:23:05 +00:00
silvio
c021c3c296 ITA translation - some fixes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4847 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-14 17:45:46 +00:00
silvio
d59b26fedd updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4846 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-14 17:41:01 +00:00
blacksun
7bad2f1b50 Text of conductor is updated when folio position change, if formula contain the variable %id.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4845 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-14 15:01:49 +00:00
scorpio810
7dcd919695 Minor : save file set enabled only when opened a project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4842 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-11 00:04:43 +00:00
scorpio810
e0bc9d9d05 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4841 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-10 20:22:34 +00:00
scorpio810
e329da0df8 Minor : Save file has always enabled
Project path argument is now always displayed on diagram view


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4840 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-10 14:56:34 +00:00
blacksun
521c495ef0 Minor : Element info widget : when editing the field formula, the field label must be disable.
Only work when element info widget is in the dock, but not with the dialog : fix it.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4839 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-10 09:09:30 +00:00
scorpio810
0b062b3fc7 Add project path argument when a project has modified in the displayed
project title in diagram view


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4838 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-10 01:35:44 +00:00
blacksun
a6ace77052 Minor fix : in some condition when open a project, the conductors properties aren't well apply
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4836 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-08 11:01:03 +00:00
blacksun
33a944b3cc Minor revamp
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4834 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-05 19:32:52 +00:00
blacksun
eb418ddaf8 Continue to fix bug tracker N°118
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4833 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-05 15:25:07 +00:00
blacksun
6f498977c5 Bad behavior fix : in element collection tree, when user drop a directory into itself, this directory is copied in recursive way infinitely.
See bug report N° 121


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4831 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-03 16:47:39 +00:00
blacksun
caf81b924b Fix wrong conductor autonum/formula when linking two folio report with two existing potential.
The new potential number isn't apply well.
This commit should be the last step for fix the bug report N° 118. 



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4830 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-02 18:46:19 +00:00
blacksun
1072d0da93 Fix bug report N° 122, and fix a memory leak
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4829 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-02 18:15:18 +00:00
blacksun
15fb7e94bd Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4828 bfdf4180-ca20-0410-9c96-a3a8aa849046
2017-01-02 13:42:16 +00:00
blacksun
1b8b901ef6 Minor fix : In some case, add a conductor in an existing potential, with a formula, display the formula instead of the final numerotation.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4826 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-30 20:15:18 +00:00
blacksun
14f02d4ed1 revert and merge rev 4823.
Fix : in old projects without the conductors formula, the conductors texts aren't loaded and displayed
Fix it in method void Conductor::refreshText()


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4825 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-28 10:03:47 +00:00
scorpio810
52f911887d Revert rev 4814 and 4820 momentarily
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4823 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-24 12:48:44 +00:00
scorpio810
7f46479222 Minor : merge old translations into previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4822 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-23 19:12:08 +00:00
scorpio810
1681c5a1f2 Merge symbols, thanks Baboune
But lose these translations


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4821 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-23 18:17:22 +00:00
scorpio810
ee9ffb988d Minor : conductor properties widget change focus to formula field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4820 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-23 16:38:24 +00:00
blacksun
d8a374629b Modifie the text item of a conductor directly on a diagram also change the value of formula and label of the conductor property.
The change is apply for every conductors in the same potential


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4814 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-19 15:57:20 +00:00
scorpio810
1698d0bebd Minor fix : Can't convert string from 'UTF-8' to native encoding
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4813 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-19 01:14:36 +00:00
scorpio810
11c12be017 Add new symbols, thanks baboune
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4812 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-18 21:10:48 +00:00
scorpio810
01b75451cd Add new symbols, thanks Pai and Baboune
Update qet_cs.qm


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4811 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-18 20:50:51 +00:00
blacksun
988b4c3146 Fix lack of last folio list.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4810 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-14 21:44:51 +00:00
pavelfric
89f38f6b77 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4809 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-13 22:06:16 +00:00
scorpio810
594a770af8 Add new symbol, thank Pietro
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4808 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-13 00:52:18 +00:00
blacksun
543578c3dc Conductor :
Use method toXml and fromXml of sequentialNumbers.
Use m_freeze_label instead of m_frozen_label to save the frozen status of the text item.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4807 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-12 10:52:44 +00:00
scorpio810
9ceae5b141 Add new symbols, thanks Pai and Baboune
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4806 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-12 07:14:50 +00:00
blacksun
4f192940b3 Element : change freeze label variable from a string to a bool.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4805 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-10 12:00:52 +00:00
blacksun
ae2afe8424 Element : edit an element text item (with tagg) directly on the folio, also update the information of the element.
For exemple, edit the element text item tagged "label", update the value with key "label" of element information. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4804 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-08 16:54:41 +00:00
blacksun
9f014d55af Revamp struct sequenceStruct to class sequentialNumbers.
Element now use methods (toXml and fromXml) of sequentialNumbers to store and load sequential.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4803 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-08 15:06:46 +00:00
blacksun
18df62cea1 Conductor autonum : use a default QUndoCommand as parent of other inherited QUndoCommand.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4802 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-07 18:56:31 +00:00
scorpio810
93bec37c40 Update translations {es, ca}, thanks Joan
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4801 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-07 02:36:47 +00:00
blacksun
6480a7b120 Forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4800 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-06 19:57:22 +00:00
blacksun
7ab0115c62 Conductor : formula and text is now two different things.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4799 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-06 19:49:18 +00:00
scorpio810
c0b5aa7a59 Minor: RichTextEditor : add action to Create superscript or subscript
text or numbers


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4798 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-04 03:50:12 +00:00
scorpio810
8ba1324b85 Add new symbols, thanks Chajo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4797 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-03 15:49:02 +00:00
scorpio810
7394abfbd5 Update macOS packaging
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4796 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-02 11:58:38 +00:00
blacksun
c811b02516 Element now use the pattern and variable of formula to create the label, both stored in diagram context (instead of the label with a pattern and formula, to create the final label)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4795 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-12-01 09:09:50 +00:00
blacksun
a495675b71 Bug fix : crash if an embedded element haven't got directory "import" as parent
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4794 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-29 20:24:27 +00:00
blacksun
489f2c2035 Move code use to find prefix of element from element class, to autonum namespace
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4793 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-26 19:30:59 +00:00
blacksun
01af4c52e5 Revamp, and minor improvement about element autonum / formula.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4792 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-26 17:12:31 +00:00
blacksun
60c7b9302e Start to revamp the code about formula and label of elements and conductors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4791 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-24 16:45:55 +00:00
blacksun
543c7b6b3e Move methods used for autonum and sequential value, from conductor and element class, to autonum namespace.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4790 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-22 17:21:53 +00:00
scorpio810
d708b7b4e5 Restore translation deleted by commit 4782
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4789 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-22 00:41:03 +00:00
ossau2mation
16c6c77d38 Update Danish translation - minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4788 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-21 16:00:36 +00:00
rdsivd
0e67615fff update BE-NL
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4787 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-19 10:58:57 +00:00
blacksun
261c7ecf51 Cross ref item : clickable link work when Xref is displayed as a cross
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4786 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-17 14:42:07 +00:00
ossau2mation
2064318da5 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4785 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-16 21:11:28 +00:00
blacksun
b08ae5e1c1 Cross ref item : Double click in a contact of the Xref, go to the real contact. (only available for Xref draw as contacts)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4784 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-16 18:37:31 +00:00
blacksun
11d38c6091 Cross ref item minir fix :
Some variable was not assigned.
Improve the bounding rect to be more accurate


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4783 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-16 16:01:53 +00:00
silvio
743d2b7ace updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4782 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-15 23:41:46 +00:00
blacksun
103f2d3db0 Minor fix : set a correct size of the pixmap displayed in the element properties widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4781 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-15 16:27:41 +00:00
blacksun
ae9f4b1590 minor fix : master element doesn't properly update her tagged text 'label' when he contain %F and %F contain himself %f or %id.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4780 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-15 10:18:32 +00:00
blacksun
151d63c1a3 Minor fix : project panel doesn't convert the variable %id of folio.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4779 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-15 09:23:36 +00:00
nuri
54236ebcb5 Update german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4778 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-14 07:12:53 +00:00
scorpio810
8b133a264f Update *.TS files and english and french translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4777 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-13 21:41:05 +00:00
blacksun
7f873bc450 Fix minor regression : in some case, %id isn't replaced by the folio index, in label of element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4776 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-13 19:12:15 +00:00
blacksun
1c5c0425fb Conductor : variable assignement of label is now managed by an external class instead of the conductor itself
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4775 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-11 16:37:37 +00:00
scorpio810
7d6e9aa24d Fix marnings assignvariables
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4774 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-11 14:55:30 +00:00
blacksun
ce638c770d Display the name of the current hovered element of the element collection tree, in the status bar.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4773 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-10 19:49:33 +00:00
blacksun
bb2fff7e5f Element : variable assignement of label is now managed by an external class instead of the element itself
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4772 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-09 16:06:04 +00:00
blacksun
2b952f4189 Move files related to autonum in autoNum directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4771 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-07 15:11:12 +00:00
scorpio810
f21034fcbe Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4770 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-04 12:23:49 +00:00
blacksun
df876cc509 Make directory for autonum class
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4769 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-04 10:11:10 +00:00
scorpio810
bb229dce8e Elements translation En Fr
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4768 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-02 00:42:11 +00:00
scorpio810
048b2199bf Elements translation En Fr
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4767 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-02 00:31:15 +00:00
scorpio810
70c88f38a9 element translation En Fr
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4766 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-11-01 23:53:57 +00:00
scorpio810
87246b9ed2 Minor : change static URL by new HTML pages for get latest developer
version download link (only for MS Windows and macOS)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4765 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-30 13:29:16 +00:00
nuri
d460c6ac73 Corrected english translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4764 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-28 08:43:13 +00:00
nuri
3833f1d27f Corrected english translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4763 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-28 08:28:57 +00:00
blacksun
b09cd6898c Bug fix : conductor don't apply text to text item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4762 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-26 16:26:05 +00:00
rdsivd
e48bdc74b8 update BE-NL
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4761 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-24 19:37:40 +00:00
scorpio810
9a5b8cb312 Remove old and duplicates symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4760 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-24 07:14:40 +00:00
scorpio810
774de301a8 Minor : add UUID for these elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4759 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-23 20:45:11 +00:00
scorpio810
24a21b99f9 Minor : rename folder for UTF-8 encoding
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4758 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-23 16:50:27 +00:00
scorpio810
01938f662a Add new symbols : 1041 elements in 49 folders, thanks a lot Rafael
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4757 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-23 16:25:22 +00:00
nuri
a8c538966d Element collection: change "sheet referencing" in "folio referencing"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4756 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-21 11:50:05 +00:00
blacksun
b143675ba1 minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4755 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-20 19:01:15 +00:00
blacksun
1dece5cb77 Revert change because we can't select handler for ellipse
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4754 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-20 18:57:22 +00:00
blacksun
537c0ad95a Minor : imrpove method
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4753 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-20 17:48:10 +00:00
blacksun
ea27c6f823 Probably fix the fucking crash of ghost conductor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4752 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-20 12:35:44 +00:00
scorpio810
97294a0ddf Fixes builds on non-Linux non-OSX Unix platforms, thank Tamas
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4751 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-19 19:41:14 +00:00
blacksun
e3d14ea0bc Minor : reset value when needed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4750 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-19 16:39:50 +00:00
nuri
b82de9db83 Corrected english translation (BugTracker ID 0000096)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4749 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-19 06:30:13 +00:00
blacksun
0ea8b45f70 Fix wrong way to save number value in xml file. (store without local formating)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4748 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-17 19:41:44 +00:00
blacksun
c5f5a55875 Fix weird behavior : use QString::number to store a number in a xml.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4747 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-17 19:08:52 +00:00
blacksun
6ea169e1f7 Bug fix : Conductor text with formula that contain %id isn't good when open project (variable %id is replaced by 0 in each folio)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4746 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-17 14:26:13 +00:00
blacksun
ccf7e1dbde Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4745 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-17 12:44:56 +00:00
blacksun
ca65ac5adb Keep up to date the label of element when folio position change (Formula contain %id)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4744 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-17 12:17:45 +00:00
blacksun
e1ea01bd81 Elements collection widget: add entry 'directory propertie' in the context menu
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4743 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-15 13:39:02 +00:00
scorpio810
3bf30dcd26 MacQetDeploy packaging script add only binary translation into package
need brew and coreutils installed


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4742 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-14 14:59:18 +00:00
scorpio810
4386bc5522 Improve MacQetDeploy packaging script : add Qt5.6.x translations for dialog in package
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4741 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-14 00:23:00 +00:00
blacksun
c50e8cd9ae Use QUndoCommand with childs, as recommended by Qt documentation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4740 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-13 18:00:31 +00:00
scorpio810
415996631a Add PATH for launch DXFtoQET plugin on QET element editor file menu for
macOSX platform


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4739 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-13 01:41:43 +00:00
scorpio810
c7651af599 Add PATH for run qet_tb_generator plugin in macOSX platform
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4738 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-13 00:08:29 +00:00
scorpio810
bf157daed3 Add new symbols, thanks Pekka and Nikus
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4737 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-12 21:32:39 +00:00
blacksun
a7ac265465 Fix crash : Element editor crash when we close it and several part of the same type (for exemple ellipse) are selected.
Thanks Morganol for find this crash


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4736 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-11 18:34:02 +00:00
scorpio810
70d3702655 Update en translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4735 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-11 13:06:47 +00:00
blacksun
5c4ad9a0fd Fix bug 086: print text of conductor on top of conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4734 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-06 20:01:08 +00:00
scorpio810
dbacd060bc Minor : En translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4733 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-05 07:22:43 +00:00
scorpio810
9fe3f85d06 Improve latest commit for MAC OS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4732 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-04 10:37:02 +00:00
scorpio810
f15664cc8f Fix bug 0000086: Unable to open elements directory with the elements
panel in new KF5 with  
QUrl("file:///" translated to smb://


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4731 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-04 00:54:13 +00:00
scorpio810
43d07c7c12 Minor : En translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4730 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-02 22:05:19 +00:00
ossau2mation
139a13cbfa Danish translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4729 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-10-02 08:13:51 +00:00
scorpio810
5c94f6ce3f Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4728 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-28 20:25:58 +00:00
scorpio810
0c91301315 Minor : refresh example, thanks David
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4727 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-28 20:21:26 +00:00
scorpio810
d87c4818c3 Bug fix : Picture insert file choose dialog do not display *.jpeg files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4726 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-26 18:54:50 +00:00
scorpio810
1c78051450 Add new action in help menu : link for download latest devel build for
MAC OS (only visible on MAC OS platform)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4725 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-26 00:46:02 +00:00
scorpio810
e1f1730c49 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4724 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-25 16:57:12 +00:00
blacksun
40eb915e56 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4723 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-25 10:44:38 +00:00
blacksun
bd4a472b7d Element editor : add new handler for arc to resize angle with mouse.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4722 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-25 08:14:29 +00:00
scorpio810
55c094d663 Minor : fix element, thanks Mario
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4721 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-20 02:28:07 +00:00
pawel32640
471c0e6602 polish translation update - .ts .qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4720 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-16 10:54:43 +00:00
nuri
cc6e2eb3ad Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4719 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 20:00:45 +00:00
silvio
f2f93b08f2 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4718 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 19:54:33 +00:00
ossau2mation
8c20a23744 Danish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4717 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 16:26:40 +00:00
scorpio810
707b440604 Minor update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4716 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:32:28 +00:00
scorpio810
17c401b96c Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4715 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:29:21 +00:00
scorpio810
6a47f90693 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4714 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:19:36 +00:00
scorpio810
b8a7aa68f3 Update en and fr translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4713 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:17:50 +00:00
scorpio810
3cf1a47ca3 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4712 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:11:36 +00:00
scorpio810
6fc732aa09 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4711 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 15:09:26 +00:00
scorpio810
5e72bff588 Minor : add a link to QET Youtube channel
Add a shortcut F1 for open manual online
Add a link for download latest devel build for Windows (only visible on
Win platform)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4710 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 11:48:34 +00:00
scorpio810
c8d9acfd5c Minor : add donate link
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4709 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 04:35:07 +00:00
scorpio810
54093fe2b1 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4708 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 03:42:01 +00:00
scorpio810
76205b0de6 Add new action in help menu for launch the Manual online with browser by
default


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4707 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-15 03:02:56 +00:00
blacksun
e46c3d0243 Keep up to date the string of folio in the old element panel, when user change the option "Use labels of folio instead of their ID" in the Configure QElectroTech Dialog
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4706 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-14 13:58:44 +00:00
nuri
6ac887fdf4 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4705 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-14 02:48:17 +00:00
blacksun
01a1d13c41 Minor : minor change about Xref offset
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4704 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-13 16:32:02 +00:00
blacksun
bb8cb53144 Minor : Configure qet dialog is bigger than screen (for little screen) and can't be resized, remove minimum size property
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4703 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-13 14:55:40 +00:00
scorpio810
f575335a18 Minor : fix element fleche2 with bad hotspot coordinates
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4702 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-13 12:09:03 +00:00
dfochi
8e620365e3 Fix user created element crash when parsing label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4701 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-12 17:11:06 +00:00
ossau2mation
4a4b602f47 Danish translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4700 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-11 14:56:00 +00:00
ossau2mation
f013915e0e Danish translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4699 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-11 14:44:54 +00:00
blacksun
9536a965fd Minor fix: Unable to open elements directory with the elements panel in windows
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4698 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-10 15:16:35 +00:00
blacksun
0a9f2bbccc Add new elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4697 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-08 09:05:17 +00:00
scorpio810
9ecc97a2e4 Minor : added for Autonum formula, terminal element located alsoin user
collection


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4696 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-08 01:55:44 +00:00
scorpio810
31b89d4994 Elementspanel widget remove old action reload in context menu
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4695 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-07 21:45:02 +00:00
pawel32640
1ebd39c1fd updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4694 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-06 08:51:41 +00:00
dfochi
b1c465528d Bug Fix: correct Folio List folio display. Bug Fix: correct arrow key move behavior
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4693 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 21:19:00 +00:00
silvio
f9a0f5a13d updated ITA translation of new elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4692 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 21:09:27 +00:00
silvio
8b3172a493 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4691 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 20:46:12 +00:00
ossau2mation
d49bd75415 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4690 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 18:56:54 +00:00
scorpio810
24df870700 Minor : Assign new variables %M and %LM to Conductor Autonum
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4689 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 16:49:16 +00:00
pawel32640
bdffd05cd6 updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4688 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 11:24:10 +00:00
scorpio810
8f81049fc9 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4687 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-05 01:15:34 +00:00
dfochi
0f22bf4774 Fix Undo(Ctrl+Z) crash related with conductor frozen label. Prevent freezing blank label in conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4686 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-04 18:14:26 +00:00
scorpio810
a64840cb5f Add new option for export or not terminal elements in nomenclature
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4685 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-04 15:19:36 +00:00
scorpio810
378a97bfe4 Terminal element folder : minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4684 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-03 18:39:15 +00:00
scorpio810
964ba94109 Add Autonum for terminals element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4683 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-03 18:22:14 +00:00
scorpio810
9ff5e3d7dc Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4682 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-03 11:00:48 +00:00
scorpio810
db458143bf Element Terminale add label
Nomenclature Add terminal element


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4681 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-02 05:28:26 +00:00
dfochi
30a9aa9cfe Update Policy now works with conductor autonumberings
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4680 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-09-01 19:41:49 +00:00
dfochi
47b0fd7f10 Updated qet_labels xml. Element formula now works with all elements types (logic, hydraulic, pneumatic and energy)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4679 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-31 19:58:58 +00:00
scorpio810
96d2f1c131 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4678 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-30 23:47:25 +00:00
scorpio810
7555381db4 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4677 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-30 22:42:23 +00:00
scorpio810
2150c62181 Added new entry for launch plugin qet_tb_generator
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4676 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-30 21:42:35 +00:00
pawel32640
44ce270a34 updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4675 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-30 14:26:02 +00:00
dfochi
230700f845 Conductor Autonum now works with variables. Folio Autonumberings added to conductor autonum
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4674 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-29 15:37:42 +00:00
msouabni
342b69b210 Update Arabic Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4673 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 19:44:15 +00:00
scorpio810
673f399ff9 Add new symbols, thanks Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4672 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 17:02:34 +00:00
pawel32640
98f680c522 updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4671 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 12:23:03 +00:00
scorpio810
4c4b094d3c m_properties_dialog restore Minimum Height(690);
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4670 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 10:35:19 +00:00
pawel32640
e8f275250f updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4669 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 09:50:48 +00:00
nuri
e43ccd3700 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4668 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-26 06:44:32 +00:00
silvio
4300b249a2 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4667 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 20:50:18 +00:00
dfochi
1ad45dbc80 Fix Multiple Folio Sequential Autonumberings. Corrects save/open behavior for folio sequentials in projects with multiple autonums
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4666 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 16:28:11 +00:00
scorpio810
5575959a9e Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4665 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 11:15:54 +00:00
scorpio810
8f5ffc6b9e Update en translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4664 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 10:39:48 +00:00
scorpio810
159830ddc8 Update fr translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4663 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 10:35:05 +00:00
scorpio810
5775f4e68f Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4662 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 10:30:01 +00:00
scorpio810
26bead4041 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4661 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 10:28:50 +00:00
scorpio810
ed2e2bb290 Minor : remove old code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4660 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 01:57:20 +00:00
scorpio810
763b031fa3 Minor : remove post script export, not suported in Qt5
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4659 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-25 01:51:11 +00:00
pavelfric
c5ce727ac9 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4658 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-24 19:24:01 +00:00
scorpio810
2cf6a1adcf Update french translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4657 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-24 14:05:20 +00:00
scorpio810
2b8fa3deaf Update french translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4656 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-24 13:56:23 +00:00
scorpio810
d6e652bc47 Minor : resize autonumberingmanagementw widget for long translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4655 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-24 13:44:39 +00:00
scorpio810
6baaeed48e Update french translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4654 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-23 14:29:05 +00:00
ossau2mation
daa03b95a3 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4653 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-23 12:09:15 +00:00
nuri
0c964b2547 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4652 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-23 07:04:58 +00:00
scorpio810
23f36baa6f Minor: Fix bug #76
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4651 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-23 00:10:33 +00:00
ossau2mation
1bbe0fe559 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4650 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-22 13:59:30 +00:00
ossau2mation
1a4291513b Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4649 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-22 13:32:59 +00:00
scorpio810
e3d937ed19 Upgrade English translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4648 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-22 13:18:08 +00:00
silvio
e14d96159d updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4647 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-22 12:57:41 +00:00
scorpio810
981300cc1a Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4646 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-22 12:24:05 +00:00
scorpio810
30f3973d85 Minor : rename QDockWidgets to Project and Collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4645 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-21 20:50:52 +00:00
scorpio810
241229d320 Minor: rename QDockWidget Panel d'éléments to Panel projets
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4644 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-21 20:32:05 +00:00
scorpio810
cfa0dd5b02 Add signal to refresh folio label in panel tree view when user change
folio label in titleBlock property


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4643 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-21 19:37:32 +00:00
alfredo
bf87625e8e Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4642 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-21 03:21:11 +00:00
scorpio810
fd951821af GenericPanel : add switch for folio ID or folio label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4641 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-20 12:52:57 +00:00
scorpio810
7ea7b155da Diagram Folio List : add switch for folio ID or folio label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4640 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-19 14:55:28 +00:00
scorpio810
741426a2d4 Minor : add Nuri icon for grid
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4639 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-19 11:33:23 +00:00
scorpio810
d8f5fa0dac Minor : fix warning
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4638 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-19 11:13:55 +00:00
blacksun
d63bde3930 QetDiagramEditor : add option 'Display grid'
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4637 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-18 16:30:24 +00:00
blacksun
ea7780540e Bug fix : crash when edit the titleblock properties of an empty project (project without folio)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4636 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 13:00:32 +00:00
scorpio810
12477553a8 Bug fix : in FolioTab autonum set disable N° folio item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4635 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 12:41:49 +00:00
ossau2mation
f27b6b7c8d Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4634 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 06:39:54 +00:00
scorpio810
5873ba670f CrossRefItem increase displayed text
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4633 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 06:21:21 +00:00
scorpio810
a0c55ea4ad Add variable for properties %machine and %locmach
can now be called in the xref propertie widget (run now for slave and
master)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4632 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 06:04:37 +00:00
scorpio810
1f627708ce Minor : Add information variable for properties %machine and %locmach
can now be called in the xref propertie widget (run only for slave
contact)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4631 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 05:04:41 +00:00
scorpio810
0fe2ed8c7b Minor : Add information variable for properties %machine and %locmach
can now be called in the report propertie widget


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4630 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-17 04:19:14 +00:00
blacksun
dde2ac145a Bug fix : Crash when drag an item from the element panel, which represent an element embedded by a project, and drop it in a folio of another project.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4629 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-16 20:25:27 +00:00
scorpio810
6868dae08b New fields titleblock properties %machine and %locmach can now be called
in the element rules autonum


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4628 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-16 13:43:46 +00:00
scorpio810
45f199764b Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4627 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-13 21:41:54 +00:00
scorpio810
928c2938e1 Titleblock properties rename properties %loc to %locmach
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4626 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-12 11:32:56 +00:00
scorpio810
1f7bc1eb3b Titleblock properties add new toolTip
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4625 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-12 10:45:18 +00:00
nuri
31d383dd46 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4624 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-12 10:04:12 +00:00
scorpio810
f8a9d8156b Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4623 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-11 22:32:59 +00:00
scorpio810
ca1472ab2e Refresh diagram folio list, add new fields titleblock properties
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4622 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-11 18:32:08 +00:00
ossau2mation
7ca0246155 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4621 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 16:48:18 +00:00
scorpio810
314263fd8c TitleBlockProperties add new variable %version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4620 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 12:25:47 +00:00
ossau2mation
fd83a94f76 Danish translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4619 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 08:46:41 +00:00
blacksun
8780b6c489 titleblockpropertieswidget : edit and duplicate titleblock work in every case.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4618 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 06:55:16 +00:00
scorpio810
74553c4093 Minor : fix element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4617 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 06:43:51 +00:00
blacksun
72b613f348 When add a new project, load only items of project, instead of reload every items owned by the model
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4616 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-10 05:23:48 +00:00
pawel32640
bb944ea54d updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4615 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-09 20:00:07 +00:00
pawel32640
8dfcc3cabd updated polish translation - ts/qm (part)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4614 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-09 17:47:28 +00:00
dfochi
8f8ede0e6c Fix Home and End Buttons Handling and DiagramEditor Scroll
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4613 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-08 16:42:47 +00:00
silvio
412007bb0d updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4612 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-08 16:17:50 +00:00
scorpio810
617e0bb15e Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4611 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-08 14:37:37 +00:00
scorpio810
8b5d54e424 Minor : Conductor properties restore tab priority to tab "Type"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4610 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-08 09:32:56 +00:00
scorpio810
0dc8592a46 Editor element primitive change setRange -1000 1000 to -5000 5000
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4609 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-08 08:15:22 +00:00
scorpio810
45c63710ad Add new symbol, thanks Mario
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4608 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-07 15:47:46 +00:00
scorpio810
f13b329624 Fix ability conductor size less than 1, thanks Timbul Widodo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4607 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-06 10:58:56 +00:00
scorpio810
4ed18b28aa Center cross junction ellipse, thank Timbul Widodo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4606 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-05 15:41:46 +00:00
scorpio810
49fc5c61e3 Add ability conductor size less than 1, thank Timbul Widodo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4605 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-05 12:15:59 +00:00
ossau2mation
49ec155fe1 Minor Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4604 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-04 17:07:53 +00:00
dfochi
e3b4e3054b Autonumbering Context does not reset when typing in title field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4603 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-04 12:52:17 +00:00
scorpio810
f88cea8847 Improve latest commit : add reset the text of conductors if checkbox
save_label isn't checked


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4602 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-04 12:29:35 +00:00
scorpio810
96f87271da Add new settings value for save or not elements informations in copy/
paste


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4601 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-04 09:54:43 +00:00
dfochi
13b8a2e6a0 Slave Elements now work with Master sequentials
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4600 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-08-02 01:35:55 +00:00
dfochi
6355611947 Copy/Paste now works with Element Label Variables
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4599 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-31 01:30:42 +00:00
blacksun
bb992f3868 Don't clear the texts of pasted elements.
For report element, clear the function and tension-protocol texts


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4598 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-30 13:36:24 +00:00
scorpio810
6b30ee6284 Refresh and add new symbols, thanks Mario
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4597 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-28 15:48:35 +00:00
pawel32640
e5c39d90be updated polish translation (elmt)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4596 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-28 09:32:48 +00:00
dfochi
340e597c3c Fix Autonumbering type load when selecting autonumbering
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4595 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-27 14:24:44 +00:00
scorpio810
951feb2b65 Add new symbols, thanks Mario
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4594 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-27 09:50:00 +00:00
dfochi
4814ac812d Fix copy and paste crash of Elements with Sequential Autonum
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4593 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-26 20:40:54 +00:00
dfochi
d6f1381631 Creation of folio sequential type for Element Autonumbering. Correction of autonumbering type handling in numparteditorw.cpp
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4592 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-26 18:52:49 +00:00
dfochi
52e33787a8 Fix Element Label when opening older QET versions. Fix old user created element label's handling on newer QET versions
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4591 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-25 19:18:26 +00:00
dfochi
138505a14e Fix Terminal Crash and corrected Terminal prefix behavior.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4590 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-25 14:17:54 +00:00
alfredo
86ec96ca32 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4589 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-25 03:15:51 +00:00
blacksun
74eea1202f Remove unused class
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4588 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-23 10:01:25 +00:00
scorpio810
4d2e9e8840 Add news symbols, thanks Frédéric
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4587 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-22 09:35:55 +00:00
dfochi
989905da01 Conductor now support variables. (%F, %id, %total, %f and titleblock and project variables). Minor: labels that use %F update when folio field is changed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4586 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-20 21:54:54 +00:00
dfochi
3a7d210bcb Added AutoNumbering Management Tab. Update Policy support to Element.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4585 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-20 15:07:21 +00:00
alfredo
302d54d035 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4584 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-20 03:49:26 +00:00
blacksun
b71d3a4c7d Element editor : graphic part
Diagram editor : shape item
Gain a new way to be resized: mirror resizing. Click on the item for switch the resize mode


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4583 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-19 17:12:30 +00:00
blacksun
d7a2350a0f Remove unused class
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4582 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-19 14:37:08 +00:00
blacksun
371b8cb591 Allow copy of elements from a project to another with the actions copy/paste
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4581 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-18 17:37:02 +00:00
dfochi
cd3723920e Allow blank selection in Auto Numbering Dock
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4580 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-18 15:23:30 +00:00
blacksun
5cd00517c5 Fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4579 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-17 10:16:37 +00:00
msouabni
5b94654ed7 Update Arabic translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4578 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-16 10:19:46 +00:00
dfochi
38b69e9f2f %seq is not hardcoded anymore. Autonums with the same formula are not conflicted anymore.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4577 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-14 17:16:14 +00:00
blacksun
df1db0adc3 ElementsCollectionModel : model use multithreading itself for load collections
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4576 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-14 11:58:56 +00:00
dfochi
66371ae866 Minor: Add element prefix to project file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4575 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-13 23:28:00 +00:00
dfochi
ec67d8c408 Minor: %prefix is not hardcoded anymore. Zoom in and out with Ctrl + and Ctrl -
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4574 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-13 21:25:29 +00:00
dfochi
7d3e4e18ce Added AutoNumbering Dock Widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4573 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-13 14:57:27 +00:00
scorpio810
e218228ea9 Increase size of the conductors junction points
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4572 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-13 04:57:02 +00:00
scorpio810
c762106e8a Fix Plus and Minus buttons zoom in and out of the editor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4571 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-12 18:07:32 +00:00
dfochi
77a9dd666e Corrected element autonumbering sequential format 01 and 001. Corrected nameless element autonumbering treatment.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4570 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-11 13:03:30 +00:00
dfochi
f8a829d328 Element Autonumbering now has sequential variables and selectautonum widget. Renamed autonumbering variables.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4569 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-10 01:33:49 +00:00
blacksun
518f0efd46 Project embedded collection, Clean unused elements and empty directory work again
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4568 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-09 18:24:40 +00:00
scorpio810
b6816c9e49 Revert test
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4567 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-07 12:45:01 +00:00
scorpio810
318843ccee Test : change UI locale to English
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4566 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-07 12:02:04 +00:00
dfochi
ac02375976 Element Auto Numbering now works for all languages.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4565 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-06 15:19:44 +00:00
dfochi
d17ef77cc2 Hard code fix for preventing element autonumbering crashing QElectro until correction. Minor: assign project variables to element label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4564 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-06 14:46:53 +00:00
dfochi
522759e8b3 Element autonumbering. New tab inside autonumbering menu to assign formulas to element label. XML containing elements labels according ISO/IEC 81346 (./elements/10_electric/qet_labels.xml
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4563 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-05 20:14:14 +00:00
scorpio810
7a1fec591a XREF improve drawing delay type contact
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4562 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-07-03 12:00:27 +00:00
blacksun
438ce78c4f element collection widget : highlight unused element in a project.
the feature "clean project" does not clean unused elements yet


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4561 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-30 09:12:25 +00:00
scorpio810
62c2806e31 Add new symbols, thank Sergio
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4560 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-28 16:20:53 +00:00
scorpio810
4f547526f3 Windows NSIS packaging remove conf file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4559 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-22 10:05:54 +00:00
blacksun
5fbbd71f6f Remove the check box "integrate element to project"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4558 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-20 15:39:14 +00:00
scorpio810
50686f112b Fix clang FTBFS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4557 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-19 20:19:28 +00:00
blacksun
32c6d00bce Element panel widget : Add item to the QTreeView when create a new element or a new directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4556 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-17 09:09:46 +00:00
blacksun
18f56b6540 Element panel widget : improve how an item is updated or added after editing an element with the Qet Element Editor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4555 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-17 08:41:09 +00:00
scorpio810
d53f7f84ff Update qet_cs.qm, please send *qm file with *ts update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4554 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-15 08:21:40 +00:00
scorpio810
96fa1d33c7 AboutQET Widget : add button to close the dialog box
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4553 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-12 22:42:24 +00:00
rdsivd
29727dfea3 update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4552 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-12 13:44:49 +00:00
dfochi
90c954d2e1 Minor: Enable XRef Offset Spinbox only when Snap to Bottom is selected
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4551 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-10 16:46:15 +00:00
blacksun
e2e0aad9bc Elements collection widget : improve the search
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4550 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-10 16:20:01 +00:00
dfochi
44e96a6ea7 Moving elements with keyboard arrows scrolls editor and expands scene to right or below the editor. Element movement to the left and above the editor is impeded. Plus and Minus buttons zoom in and out of the editor.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4549 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-09 20:46:27 +00:00
dfochi
130cbf75f8 Minor: minimum XRef offset corrected. Assign variables to XRef link menu
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4548 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-07 17:24:33 +00:00
dfochi
373f3bf5a6 Xref: Change Vertical Offset of Cross References
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4547 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-07 17:01:59 +00:00
dfochi
46464a67a6 Display Location Field in Diagram and assign Folio Variables to Element's Information Fields
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4546 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-07 12:55:05 +00:00
nuri
b4b63446c7 Add new elements to /electric/manufacturers_articles
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4545 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-07 11:07:34 +00:00
blacksun
c8bf63c26a Remove the flag Qt::WindowStaysOnTopHint of the splash screen
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4544 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-06 19:15:31 +00:00
blacksun
646f9e7dc6 Fix crash when open Qet with a .qet file has argument
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4543 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-06 19:07:13 +00:00
blacksun
2ec0278213 Use multithreading for loading the element collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4542 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-06 18:34:34 +00:00
blacksun
e6c2ed8d5f Minor change to be able to compile with Qt < 5.4
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4541 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-05 19:55:41 +00:00
pawel32640
0261c5fa5e updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4540 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-05 17:00:55 +00:00
scorpio810
53d5e174d5 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4539 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-05 16:55:25 +00:00
blacksun
1b00a457d7 elements collection model : use QStandardItemModel has base class instead of QAbstractItemModel.
Add minor improvement.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4538 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-05 16:34:46 +00:00
scorpio810
9a0e14161f Clean qelectrotech.pro
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4537 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-06-05 16:17:23 +00:00
blacksun
8f83131852 Element panel search field : add the "+" character used for search multicritere
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4536 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-31 09:06:04 +00:00
aitolos
fefae184d2 Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4535 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-29 15:25:06 +00:00
pavelfric
38a958e2b4 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4534 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-29 05:50:10 +00:00
blacksun
af682ba76d Remove unused classes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4533 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-28 12:59:01 +00:00
scorpio810
6c773e305d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4532 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-27 22:01:13 +00:00
pawel32640
0ee944b47c updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4531 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-27 16:32:36 +00:00
blacksun
732f1c5e17 Minor : change some include
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4530 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-27 12:59:24 +00:00
blacksun
ef555c5424 Old element panel : Remove the management of the elements collection. Now the element panel only manage the title block and folio.
Remove the management of custom and common elements collection in the class qetapp. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4529 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-27 12:44:24 +00:00
silvio
1ec0538e71 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4528 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-26 21:26:38 +00:00
blacksun
5609b20fdb Element panel widget : remove all action used for interact with elements collection
Remove all classes become unused


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4527 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-26 17:12:12 +00:00
zheka
8af30862ea QET_RU updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4526 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-26 09:00:05 +00:00
ossau2mation
2714b7e3fe Update Danish translation minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4525 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 18:48:47 +00:00
blacksun
33cb89fbbb Remove old classes used to manage the xml elements collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4524 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 18:11:05 +00:00
blacksun
0b1fdb1564 Old element panel doesn't manage the embedded collection of project anymore.
Remove unused classes (become unused since the old panel doesn't manage embedded collection)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4523 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 15:12:01 +00:00
scorpio810
8aa79b165a Improve painter draw Text for XREF
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4522 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 14:53:07 +00:00
dfochi
86244e35f0 Nomenclature export(all fields exported to csv) and Comment field(displayed on editor) handle position and folio variables
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4521 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 14:49:33 +00:00
nuri
1a3d0b9ebc Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4520 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-25 06:32:17 +00:00
pawel32640
1e7eec91f9 updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4519 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 21:04:00 +00:00
blacksun
a218cf5249 Remove unused methods
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4518 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 20:59:45 +00:00
blacksun
e5f85c542c Remove unused methods in generic panel and elements panel.
Remove the class tree color animation


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4517 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 20:06:04 +00:00
zheka
cd9fb540b9 Partly updated QET_RU
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4516 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 19:15:47 +00:00
ossau2mation
f105b19d11 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4515 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 18:58:22 +00:00
dfochi
b94e3740ba Added position and folios variables handling to Elements (Master, Slave and Simple) Label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4514 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 18:21:52 +00:00
scorpio810
8ef30f4d33 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4513 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 13:29:39 +00:00
scorpio810
c0abc82aec Translate widget to French
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4512 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-24 13:19:42 +00:00
dfochi
ada71484e8 Added Cross Reference Labels for Master and Slave Element. Removed View Mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4511 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 22:01:22 +00:00
ossau2mation
7229109ff4 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4510 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 19:51:54 +00:00
nuri
5a3d8eca5f Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4509 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 19:00:28 +00:00
ossau2mation
8d3707f0e9 Update Danish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4508 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 17:55:02 +00:00
aitolos
312db924ca Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4507 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 16:26:29 +00:00
blacksun
167cba85e2 Change the Z value of conducteur (11) to be upper than an element (10).
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4506 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 13:57:01 +00:00
pawel32640
520d542cda updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4505 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 10:34:09 +00:00
scorpio810
5bb6050291 Update qet_pt_br.ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4504 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 02:19:24 +00:00
scorpio810
96b195ef9c Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4503 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 02:13:47 +00:00
scorpio810
47c908e6b6 Add new contributor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4502 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 01:16:07 +00:00
scorpio810
dd87737df4 Translate to French widgets
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4501 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-23 01:09:34 +00:00
blacksun
8555b1a1f2 New element panel : Fix double insertion of item when drop an item in the embedded collection of project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4500 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-22 16:28:40 +00:00
blacksun
ea69d0b33c minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4499 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-22 16:13:08 +00:00
blacksun
3b2f5abc30 Bugfix : can't add element dragged from an embedded collection
New element panel, D&D : the pixmap of dragged element is used instead of the Qt default pixmap 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4498 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-22 14:51:09 +00:00
ossau2mation
e6cdf80f3e Update Danish translation titleblocks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4497 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-22 11:08:48 +00:00
scorpio810
baa871c45e Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4496 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-22 00:42:52 +00:00
scorpio810
dd25b4907f Add a signal to update slave label if XREF properties has changed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4495 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-21 21:30:14 +00:00
dfochi
a72c5beed1 View mode works with Slave Element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4494 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-21 20:28:25 +00:00
dfochi
aa45a98ad5 Added view mode in Cross References - included Folio Field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4493 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-20 20:31:55 +00:00
dfochi
99f1a0e83a Reverted commit due to change in lang/qet_en.ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4492 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-20 20:22:44 +00:00
dfochi
940a7230e3 Added view mode in Cross References - included Folio Field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4491 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-20 20:16:28 +00:00
scorpio810
90caaaffb9 Add Auto Folio Numbering Label to reportelement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4490 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-19 02:08:42 +00:00
scorpio810
f5c39e995c Add Auto Folio Numbering Label to nomenclature export
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4489 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-18 05:39:42 +00:00
dfochi
2d3298fe41 Auto Folio Numbering - Create specific number of new folios with a folio autonumbering or Auto Number selected Folios
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4488 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-17 19:19:11 +00:00
aitolos
b5d12cc232 Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4487 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-17 15:29:46 +00:00
scorpio810
1e221bd59d Memory Leak Fix, thanks Mehdi
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4486 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-16 08:17:22 +00:00
ossau2mation
ab2d867188 Update Danish translation default titleblock
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4485 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-15 18:29:58 +00:00
blacksun
8dd3e7394a New Element Wizard : tree view only display directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4484 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-15 14:46:01 +00:00
blacksun
3261809227 NewElementWizard class : remove the use of ElementsCategoriesWidget and ElementsCategory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4483 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-14 17:10:03 +00:00
blacksun
d36fe97611 Remove the class IntegrationMoveElementsHandler
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4482 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-14 14:48:55 +00:00
scorpio810
025fa64f67 Minor : update Copyright date
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4481 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 17:40:36 +00:00
scorpio810
eeffe078cc Minor : delete qelectrotech.pro.user file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4480 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 15:16:40 +00:00
dfochi
a1fdff6fdd Titleblocks/default.titleblock - Enable custom text in Folio Field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4479 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 15:10:55 +00:00
scorpio810
662e3b20d2 Restore commit 4476
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4478 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 15:00:22 +00:00
dfochi
f077361856 Reverting previous commit and going back to revision 4475.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4477 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 13:48:36 +00:00
dfochi
fa4714b95d 1) Use arrow keys to navigate through the diagram editor. 2) Use PgUp, PgDn, Home and End keys to navigate through open folios. 3)Use Delete Key inside elements panel widget to delete diagrams. 4) Added a scroll area in auto numbering page.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4476 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-13 13:10:32 +00:00
blacksun
5f93966984 ElementsCategoryEditor : remove the use of ElementsCategory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4475 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-12 15:41:55 +00:00
scorpio810
432ab44c28 Rename Brazilian files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4474 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-08 17:28:13 +00:00
scorpio810
ba3c365c7c Add translator information
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4473 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-07 10:23:23 +00:00
rdsivd
a03101b144 update translation be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4472 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-07 07:52:59 +00:00
scorpio810
a7d49968a8 Fix FTBFS if QT_VERSION < 0x050400
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4471 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-07 00:52:04 +00:00
scorpio810
9954f3cad0 Add Brazilian translation, thanks Hilario
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4470 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-06 18:04:05 +00:00
ossau2mation
d1d4474c93 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4469 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-05 14:35:31 +00:00
blacksun
168467abb0 Improve the way how an element is updated in the new element panel.
Now Qet only use the new embbeded collection (XmlElementCollection).
No need to reload the old element panel for add a new element created by the new element panel
Elements are always imported to the embbeded collection of a project


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4468 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-05 13:31:04 +00:00
scorpio810
dd1bfabe2d Delete qet_pt_BR.ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4467 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-04 13:45:25 +00:00
blacksun
4c245e0772 Use XmlElementCollection instead of XmlElementsCollection, to write the embedded collection in the method toXml
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4466 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-05-02 09:00:23 +00:00
rdsivd
f8d9e7a340 update be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4465 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-30 07:04:52 +00:00
scorpio810
ff1f3300df Preparing for adding Brazilian language
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4464 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-27 01:06:56 +00:00
rdsivd
35b00abd7b update bl-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4463 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-25 18:19:12 +00:00
scorpio810
266906639c Fix MAC OS X build
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4462 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-25 03:42:27 +00:00
pavelfric
3d1ffc5273 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4461 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-21 19:04:11 +00:00
aitolos
ad198c999c Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4460 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-21 17:25:50 +00:00
alfredo
b8ac56c997 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4459 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-21 04:38:38 +00:00
alfredo
dbbc9ea021 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4458 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-21 04:26:56 +00:00
ossau2mation
f9d8197de6 Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4457 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-20 17:44:17 +00:00
blacksun
1d9735d0e3 Element dialog : Remove ElementsCategoriesList and use QTreeView with ElementsCollectionModel instead
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4456 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-19 09:29:40 +00:00
silvio
c0a8b60dbb updated element translation ITA
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4455 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-18 21:30:45 +00:00
silvio
a8743f7b66 updated ITA translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4454 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-18 21:23:14 +00:00
ossau2mation
1116ba67cb Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4453 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-18 18:55:32 +00:00
nuri
92475194a8 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4452 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-18 06:04:28 +00:00
scorpio810
2ced492d58 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4451 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-18 01:03:39 +00:00
ossau2mation
1358410d2e Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4450 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 17:14:22 +00:00
zheka
fa1e61755b Russian translation updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4449 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 15:54:39 +00:00
scorpio810
06efaa4e97 Nsis script for Windows installer add missing translation directory file in SubSection "$(Energy)"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4448 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 13:43:08 +00:00
pawel32640
2dbff3e122 updated polish translation - ts/qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4447 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 13:18:17 +00:00
ossau2mation
78f2c5cbae Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4446 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 13:16:56 +00:00
scorpio810
1cf2524d87 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4445 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 12:15:48 +00:00
scorpio810
e5c6dffda0 Minor,add missing translation string for rename_label, thank OSSau2mation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4444 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 12:12:13 +00:00
scorpio810
74360ce2d5 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4443 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-17 11:16:15 +00:00
scorpio810
b6886defbd Fix GCC 6 warnings, thanks Remi Collet
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4442 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-16 17:45:56 +00:00
scorpio810
f7f75be332 Fix GCC 6 warnings, thanks Remi Collet for this patch
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4441 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-16 17:20:57 +00:00
ossau2mation
56b59f799f Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4440 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-16 11:56:45 +00:00
ossau2mation
e807040089 Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4439 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-16 11:41:27 +00:00
ossau2mation
be1741c797 Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4438 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-14 17:51:23 +00:00
ossau2mation
4274f7ac86 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4437 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-12 18:07:00 +00:00
ossau2mation
51ced66443 Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4436 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-12 17:43:30 +00:00
blacksun
f1ae6c2307 ElementLocation : Fix addToPath.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4435 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-09 10:45:15 +00:00
scorpio810
0a1e2c0a40 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4434 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 23:50:36 +00:00
scorpio810
2eaef8a3d7 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4433 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 23:11:18 +00:00
ossau2mation
0516e20e4b Danish Translation phrases
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4432 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 17:34:02 +00:00
ossau2mation
80a975c9aa Danish Translation minor update + phrases
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4431 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 17:23:02 +00:00
scorpio810
91be2ca7f8 Minor change url for https
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4430 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 14:37:33 +00:00
scorpio810
a15517db77 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4429 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 02:32:02 +00:00
scorpio810
a4e98cf363 Improve AboutQET Widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4428 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 02:06:11 +00:00
scorpio810
33f8965e8c Add QScrollArea to AboutQET Widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4427 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-07 01:24:54 +00:00
ossau2mation
22700ccfab Danish Translation directory names
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4426 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-05 19:12:42 +00:00
ossau2mation
8291c4340c Danish Translation directory names
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4425 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-05 19:01:48 +00:00
ossau2mation
5d4703bd3b Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4424 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-05 18:49:39 +00:00
scorpio810
1b1a0910b0 Add Danish translator
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4423 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-05 17:36:43 +00:00
ossau2mation
e37a4dc345 Danish Translation minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4421 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-03 19:51:32 +00:00
blacksun
eb7ff07feb Fix regression with embedded element collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4420 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-03 17:01:44 +00:00
ossau2mation
28bc603828 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4419 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-03 13:27:43 +00:00
ossau2mation
ab8c4c6d3f Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4418 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-03 12:03:03 +00:00
ossau2mation
a007b077c3 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4417 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-02 16:35:26 +00:00
ossau2mation
5f8502cc21 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4416 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-02 07:34:21 +00:00
ossau2mation
d066dcdaff Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4415 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-04-01 18:39:02 +00:00
ossau2mation
6e4f591338 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4414 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-31 19:09:23 +00:00
blacksun
9a6764ae08 Remove the use of ElementsCollectionItem and ElementDefinition from qetelementeditor class
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4413 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-31 17:28:44 +00:00
ossau2mation
6d4d1535e5 Danish Translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4412 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-31 16:48:26 +00:00
ossau2mation
b92b65bef2 Danish Translation small update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4411 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-30 17:15:09 +00:00
ossau2mation
ef457f9d9e Update Genral Danish Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4410 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-30 17:05:31 +00:00
nuri
c8b6ece0a8 Minor correction in german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4409 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-30 12:03:56 +00:00
ossau2mation
579be5468a Update Danish Translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4408 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-29 19:12:38 +00:00
blacksun
95e309ff18 Minor improvement and remove some use of ElementsCollectionItem and ElementsDefinition
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4407 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-29 17:23:58 +00:00
scorpio810
dd5d9c9504 prepare for translation in Serbian
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4404 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-28 13:19:28 +00:00
rdsivd
69094193db update be-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4403 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-28 09:23:31 +00:00
zheka
d7a99e3ce7 Updated Russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4401 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-26 12:53:20 +00:00
scorpio810
11e40bc184 Update Danish translation, thank OSSau2mation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4400 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-26 11:55:45 +00:00
blacksun
d85a7fd53a After editing an element (opened from the new element panel by double clic, or context menu),
new element panel update the content of the item who represent the edited element (pixmap and name)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4399 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-24 10:35:00 +00:00
msouabni
e00ed57027 Update of the Arabic version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4398 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-23 11:38:10 +00:00
scorpio810
8ebb5d8ac3 Add Danish translation, thanks OSSau2mation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4397 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-22 20:59:26 +00:00
silvio
43624938eb Updated italian translation .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4396 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-22 20:04:36 +00:00
nuri
14137a246a Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4395 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-22 08:26:18 +00:00
pawel32640
11327365bf updated polish translation - .ts/.qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4394 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-21 21:46:23 +00:00
scorpio810
04e1e91153 Update NSIS scripts installer
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4393 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-21 16:31:27 +00:00
scorpio810
b31767f0c4 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4392 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-21 16:18:51 +00:00
scorpio810
a6bd88be8e Add Danish language
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4391 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-21 15:22:45 +00:00
alfredo
dd0c75eb3b Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4390 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-21 03:33:40 +00:00
blacksun
10fcaa09d1 Remove Two methods of ElementsLocation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4389 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-20 15:54:28 +00:00
blacksun
4fe4509885 Enable the drag & drop of an element from the element panel (an embedded element of a project) to the folio of another project.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4388 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-19 14:18:00 +00:00
rdsivd
ab39529d8f update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4387 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-19 10:16:28 +00:00
pawel32640
a84fa352d9 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4386 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-18 21:40:49 +00:00
silvio
cafdccd002 .ts Updated italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4385 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-18 21:21:38 +00:00
scorpio810
efcf9c57f8 Enable High Dpi Scaling for QT_VERSION >= 5.6.0
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4384 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-18 16:34:55 +00:00
nuri
fb9eae2aba Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4383 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-18 08:40:45 +00:00
scorpio810
e4980420f1 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4382 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-17 23:44:23 +00:00
blacksun
7d11a356d8 Minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4381 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-16 16:39:23 +00:00
blacksun
9a3cc9c3fa Move files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4380 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-16 15:21:46 +00:00
blacksun
111567c072 Bug fix (unable to load element from .qet file)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4379 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-15 18:42:18 +00:00
blacksun
c8fb5c2c9b Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4378 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-15 15:48:17 +00:00
blacksun
1170522d9c Remove elementLocation and use elementsLocation instead
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4377 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-15 15:23:11 +00:00
alfredo
764d50c4ac update Spanish Translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4376 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-15 04:02:26 +00:00
blacksun
c8000d55d9 New element panel : drag and drop an item from a project collection to a files system collection work.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4375 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-09 10:17:28 +00:00
blacksun
73e21c408d New element panel : user can drag & drop item from project collection to another project collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4371 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-06 14:40:52 +00:00
blacksun
3192c8ccd7 New element panel : add status tip when mouse over an item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4370 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-04 13:03:39 +00:00
pawel32640
b90e9a5b04 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4367 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-02 18:36:44 +00:00
scorpio810
c66a1b6fc4 Fix DXF save and read file config
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4366 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-01 19:02:20 +00:00
scorpio810
9ab713844d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4365 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-03-01 18:03:18 +00:00
blacksun
4de433898a New element panel, fix crash
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4364 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-29 20:18:17 +00:00
scorpio810
f7eb6e0105 slot_openDxf fix Windows path
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4363 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 18:54:49 +00:00
pawel32640
ec7cf3f213 updated polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4362 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 18:19:04 +00:00
scorpio810
f0ea22c060 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4361 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 16:44:25 +00:00
scorpio810
3113cd4efc Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4360 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 16:16:51 +00:00
scorpio810
78720fb2b4 Run dxf converter as a external program
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4359 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 14:50:14 +00:00
blacksun
bb840a3aa9 Minor change when reset the search in element collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4356 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-28 11:02:30 +00:00
blacksun
52b588ea50 New element panel : add a "show only this dir" Qaction.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4355 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-26 09:58:55 +00:00
msouabni
a545791b71 Update translation of the Arabic version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4354 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-25 16:48:44 +00:00
blacksun
a35ce68d7a New elements panel : fix crash at drag and drop due to a wrong use of QAbstractItemModel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4353 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-24 10:43:40 +00:00
blacksun
014f3c8f13 New element panel: User can now drop an item from custom or common collection, inside an item of embedded collection of a project
(drag an item from an embedded collection to another embedded collection don't work yet)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4352 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-21 18:53:40 +00:00
blacksun
90c769c013 Minor fix with the insertion of new item in the new element panel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4351 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-18 16:56:08 +00:00
pawel32640
5fd6e89068 updated polish translation - .elmt
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4350 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-17 19:23:00 +00:00
pawel32640
4a78bf47bd updated polish translation - .elmt
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4349 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-17 17:12:16 +00:00
pawel32640
3dfc2623c3 updated polish translation - .elmt
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4348 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-17 13:42:14 +00:00
scorpio810
956d3de69b Revert commit 4346 : it is unnecessary to translate the same name, use version 0.4 removes UUID !
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4347 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-17 13:28:14 +00:00
pawel32640
229a693981 updated polish translation - .elmt
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4346 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-17 12:35:51 +00:00
scorpio810
a17e00597c Add new images for nsis installer thanks Nuri, converted these to 24-bit BMP format
and adjust compatibility mode to does not register the color space information


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4345 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-15 20:34:16 +00:00
blacksun
183ef362ba Shape item propertie widget : hide filling group box when shape is a line or an opened polyline
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4344 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-15 16:15:05 +00:00
blacksun
6f6561be01 Change the way how an element or directory is copied, this isn't the role of the new panel to manage the copy.
We must to use elementcollectionhandler instead


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4343 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-02-13 12:51:56 +00:00
nuri
3142b87377 Update splash screen of version 0.51
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4337 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-29 15:27:34 +00:00
scorpio810
62eecd068c Add new elements, thank Arnaud
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4334 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-22 00:03:00 +00:00
blacksun
7ead0b64b0 Element collection : improve drag and drop behavior
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4325 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-16 14:25:20 +00:00
zheka
518af4497a QET_RU are updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4324 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-14 19:32:58 +00:00
blacksun
bc7f75c1da Elements collection cache can fully fetch and cache element data from elementLocation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4323 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-14 16:09:28 +00:00
silvio
c2318c07cb Update italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4322 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-14 12:25:54 +00:00
pavelfric
1de4c66a72 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4321 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 21:26:16 +00:00
rdsivd
2c7e0e8cdf update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4320 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 21:13:34 +00:00
nuri
96ab888c5d Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4319 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 21:03:56 +00:00
aitolos
fbd8ccc2ab Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4318 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 19:49:34 +00:00
pawel32640
ca980ccfe1 updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4317 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 18:05:00 +00:00
scorpio810
3c397f695e Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4316 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-13 00:54:44 +00:00
blacksun
a6b3980f92 QetShapeItem : shapes can be filled with some patterns and colors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4315 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-12 14:02:34 +00:00
blacksun
cc898b7478 Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4313 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-08 17:44:55 +00:00
blacksun
7fdcb0060c xmlElementCollection : collection can add new item.
elementsCollectionModel : Up to date the content when a new item is added to the embedded collection of a project.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4312 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-08 17:01:51 +00:00
scorpio810
fc8b4b974d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4311 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-08 02:15:04 +00:00
blacksun
99e35d407e Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4308 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-05 14:56:44 +00:00
silvio
325c867e19 new elements translation IT
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4307 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 20:41:34 +00:00
scorpio810
f9f06e60b4 Restore m_size_dsb setRange values
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4306 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 18:35:51 +00:00
blacksun
471fdb8de0 Fix minor bug about the size of qpen stored in a xml
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4305 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 18:26:30 +00:00
scorpio810
d96bf1f9e8 Bug fix : change m_size_dsb setRange values
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4304 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 16:59:29 +00:00
blacksun
07b81e4106 QetShapeItem : add color and improve the GUI,.
the xml saving is break from previous version. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4303 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 13:45:30 +00:00
scorpio810
5c2ddfafa5 Minor :replace XML attribute name "shape_size" by "size"in Basic shapes
Properties


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4302 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-03 04:53:09 +00:00
scorpio810
53411d36f8 Add UUID attributes to latest element added, change Qet version to 0.5x
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4301 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-02 12:58:17 +00:00
scorpio810
a39ea0b802 Add new symbols, thanks Pawel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4300 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-02 12:45:08 +00:00
pawel32640
971a90076d updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4299 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-01 11:21:50 +00:00
scorpio810
fd4cce9a6f Minor : add accelerated and wrapping mode cursor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4298 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-01 04:17:45 +00:00
scorpio810
6297d75276 Refresh widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4297 bfdf4180-ca20-0410-9c96-a3a8aa849046
2016-01-01 03:01:21 +00:00
scorpio810
396e2cf0f2 Improve Basic shapes Properties size function replace QSpinBox by QDoublespinBox, int to double
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4296 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-30 20:04:17 +00:00
scorpio810
f93e2eb3e0 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4295 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-30 13:53:20 +00:00
scorpio810
917f6dadda Improve Basic shapes Properties size function
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4294 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-30 13:47:21 +00:00
blacksun
313e4b9793 New element panel can display the thumbnail of elements used in a project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4293 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-30 09:39:22 +00:00
scorpio810
72c65f80ad Minor : Force single line symbols specific conductor to 1 pixel,
even if the thickness of the conductor is superior than 1 pixel


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4292 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-28 15:19:55 +00:00
pawel32640
abec05eed2 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4291 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-25 19:45:49 +00:00
scorpio810
47996a8028 For common properties for every conductors at the same potential,
add color and size type on related Potential Conductors


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4290 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-23 22:13:03 +00:00
scorpio810
2286036e67 Improve conductor bigger when is hovered
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4289 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-23 19:27:51 +00:00
scorpio810
ed4e16657f Improve Conductor Properties size function
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4288 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-23 18:41:13 +00:00
blacksun
4f222d2843 New element panel can read the embedded collection of project (only at opening, other fonctionnality isn't created yet)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4287 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-16 17:16:15 +00:00
scorpio810
593f8eb4f1 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4286 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-15 11:25:17 +00:00
blacksun
ed28d06d9d Improve the remove of an item in the new panel. No need to reload the collection, use QAbstractItemModel::removeRows instead.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4285 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-12 11:09:31 +00:00
blacksun
6bf52bb525 Enable the drag and drop inside the new element panel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4284 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-09 20:27:31 +00:00
blacksun
827fba8ce4 Add new element panel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4283 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-08 16:52:10 +00:00
aitolos
d06df8af6d Update greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4282 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-01 18:39:16 +00:00
scorpio810
2c3d029a48 Change splash image, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4281 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-01 17:11:05 +00:00
scorpio810
7f8a0896a2 Change version and displayed version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4280 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-01 16:26:43 +00:00
scorpio810
1f55fbdaa8 Refresh Mageia Contributors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4279 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-01 16:17:06 +00:00
scorpio810
361a1715ff Prepare to Brazilian Portuguese translation,
remove qt_x of date files


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4278 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-12-01 15:55:32 +00:00
pavelfric
586a523ec7 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4277 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-30 18:50:51 +00:00
scorpio810
3a5f956077 Refresh qet_cs.qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4276 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-30 12:32:50 +00:00
scorpio810
72097b41fb Prepare to final tag
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4274 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-27 17:19:22 +00:00
scorpio810
f8fd4d3d44 Add new symbols, thank Jl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4273 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-27 07:04:08 +00:00
morvion
9c9020f771 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4272 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-21 16:35:49 +00:00
morvion
569da1f67e Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4271 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-21 16:20:29 +00:00
blacksun
20beb4915a Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4270 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-19 17:20:04 +00:00
scorpio810
4d63289388 Clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4269 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-19 15:19:45 +00:00
nuri
fbef0af8d3 Minor correction in german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4268 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-18 15:18:58 +00:00
scorpio810
609be1ef83 Qelectrotech.desktop: fix "Desktop Entry" looks redundant, thank Nuri
Add new symbols, thank Appwolf
Refresh and add new symbols in schneider plc folder with dxftoelmt program, thank Alexis 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4267 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-18 14:57:21 +00:00
blacksun
27843d1097 Improve the gesture event with a trackpad (better zoom behavior, and add the scroll with two fingers)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4266 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-18 09:51:53 +00:00
scorpio810
5c48714f07 Add new element & example : thanks Morvion, Cyril
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4265 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-17 14:34:05 +00:00
blacksun
d773581bdd Clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4264 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-16 08:59:43 +00:00
blacksun
6346130cb9 Clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4263 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-15 19:47:15 +00:00
blacksun
c082dfb797 minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4260 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-14 10:44:24 +00:00
blacksun
491652ba35 Replace DVEventAddText by DiagramEventAddText.
Use is unchanged


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4258 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-12 17:29:48 +00:00
blacksun
ce75710f6c Replace DVEventAddImage by DiagramEventAddImage.
Use is unchanged.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4257 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-12 17:01:08 +00:00
blacksun
635aec4ad2 Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4255 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-09 20:20:11 +00:00
scorpio810
1c72680388 Add new symbols, thank Morvion
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4254 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-09 06:54:36 +00:00
scorpio810
700bc8698d Folio list use QETApp::diagramTextsFont
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4252 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-08 03:27:14 +00:00
blacksun
70398a2773 fix weird behavior when zooming at the same time of création of shape item
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4251 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-07 12:28:43 +00:00
scorpio810
dcf9011c43 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4249 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-07 09:15:47 +00:00
pavelfric
0fdc6f97c7 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4247 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-11-02 19:33:42 +00:00
alfredo
965883ae1c Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4246 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-31 15:24:30 +00:00
scorpio810
1e0caaafe7 Prepare for release candidate 1 tag,
refresh terminal element directory


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4244 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-30 16:10:11 +00:00
blacksun
6da406fe18 Bug fix.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4243 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-29 15:14:42 +00:00
alfredo
70bc15d733 Update Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4242 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-25 23:49:33 +00:00
jcm
103f260171 Updated PT Translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4241 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-18 21:40:15 +00:00
yoann
ff85f6fe83 Web site for mac os user
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4239 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-12 12:54:06 +00:00
yoann
42f0314a5e Update Mac os x scripts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4238 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-12 12:48:32 +00:00
scorpio810
2cf020fe45 Revert commit 4224
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4234 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-04 20:37:04 +00:00
scorpio810
1edcbe0c24 Bug fix for reproducible debian
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4232 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-04 10:35:50 +00:00
scorpio810
38c410c2eb Refresh files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4231 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-04 10:27:01 +00:00
scorpio810
4363cdd08a Change displayedVersion
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4229 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-04 08:24:45 +00:00
rdsivd
cf422b7356 update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4228 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-04 07:48:33 +00:00
silvio
d4251cda96 upgrade ITA .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4227 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-03 18:47:51 +00:00
zheka
8ebe3bcd01 QET_RU updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4226 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-03 18:05:25 +00:00
pawel32640
4e9963b87c updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4225 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-03 17:01:55 +00:00
scorpio810
059a316ede Remove Compilers-specific options : preserve=timestamps
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4224 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-03 16:28:11 +00:00
blacksun
3e42c3918b Element SQLite cache : replace the column mtime by uuid.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4223 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-03 15:41:59 +00:00
nuri
4edd1f3f24 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4222 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-10-02 15:44:58 +00:00
scorpio810
2ef45d91c7 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4221 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-30 22:35:10 +00:00
scorpio810
dc4f106221 Restore 01_cross_ref_symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4220 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-29 15:36:09 +00:00
scorpio810
d3b34f6cb4 Nomenclature bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4219 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-29 09:20:38 +00:00
blacksun
13b0c42ba3 Bug fix : When user try to connect two differents potential together, the dialog box display a weird numbers of wire in the potential
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4218 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-27 12:26:59 +00:00
scorpio810
697ab4cba5 Add new elements, thanks Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4217 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-26 14:59:06 +00:00
pawel32640
1111757d2a updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4216 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-21 14:45:06 +00:00
blacksun
d0d79ecf2d revamp and improve some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4214 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-19 13:27:06 +00:00
rdsivd
ca426d5fe2 update be-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4212 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-17 18:53:25 +00:00
zheka
64215698c5 QET_ru updates
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4211 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-17 16:54:20 +00:00
nuri
4ee1fd126b Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4210 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-17 07:53:53 +00:00
aitolos
5ca696a3a1 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4209 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-16 16:05:12 +00:00
blacksun
95a745ece5 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4208 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-16 15:30:25 +00:00
silvio
9ff728092b upgrade ITA .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4207 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-16 15:12:30 +00:00
blacksun
1a7e3ac8e1 Fix warning about QSettings: now QSettings use native format for windows osx and other unix. See Qt documentation for more information.
http://doc.qt.io/qt-5/qsettings.html#details


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4206 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-16 15:11:13 +00:00
scorpio810
3e1c6b8f56 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4205 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-16 15:03:12 +00:00
scorpio810
8d0e89828d Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4204 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-15 09:50:20 +00:00
blacksun
65862756cb Conductor : minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4203 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-15 08:20:39 +00:00
zheka
15b8fff00d QET_ru updates
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4201 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-13 17:17:42 +00:00
blacksun
19a7ab533c Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4200 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-12 08:29:45 +00:00
blacksun
22cd5b1a04 Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4199 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-11 20:11:01 +00:00
scorpio810
fb2225a798 Remove old symbols and examples
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4198 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-11 07:48:00 +00:00
rdsivd
8848925883 update lange be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4197 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-10 18:37:30 +00:00
scorpio810
0786d0cd24 Nomenclature add field Auxiliary_x-contact-bloc
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4196 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-10 16:29:39 +00:00
blacksun
6b17088116 Element editor : Add new tagg for text field (function and tension/protocol).
Report element : text field tagged function or tension/protocol display the function tension/protocol of the potential.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4195 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-10 08:48:33 +00:00
scorpio810
b4d09020a3 Add Hungarian localization
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4194 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-08 18:18:02 +00:00
pawel32640
d419e91b84 updated Polish translation - langextra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4193 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-03 17:10:40 +00:00
pawel32640
56e03062e0 updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4192 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-03 17:06:55 +00:00
rdsivd
bdc54ca3e2 update nl-be langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4191 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-01 20:23:10 +00:00
scorpio810
0580886c7e Bug fix : qetelementeditor : "warning and not saving function" : for elements havent got input tagged 'label',
now except for element report, because report don't use 'label' tag


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4190 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-01 20:09:42 +00:00
silvio
093c9b2eb0 Fixing of -ITALIAN- .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4189 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-01 20:07:17 +00:00
scorpio810
6772a34bc5 Conductor properties : minor, add clear buttons for fields function and tension/protocol
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4188 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-01 09:52:42 +00:00
silvio
da728b08ff Transation of ITALIAN .ts and .qm files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4187 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-09-01 01:04:50 +00:00
scorpio810
607f36760d Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4186 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-31 22:59:17 +00:00
silvio
b3b1cafd38 Fixing of -ITALIAN- .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4185 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-31 22:22:31 +00:00
scorpio810
9347a9ea5e Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4184 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-30 15:30:44 +00:00
scorpio810
1ddb2a4ba4 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4183 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-30 14:32:50 +00:00
scorpio810
7cd1a7948c Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4182 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-30 12:22:52 +00:00
scorpio810
a177a59d45 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4181 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 21:44:49 +00:00
scorpio810
642d0f8729 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4180 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 21:23:30 +00:00
scorpio810
d876cdf1f6 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4179 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 21:09:52 +00:00
scorpio810
b8437f7317 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4178 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 20:44:58 +00:00
scorpio810
9a0815d8f1 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4177 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 20:32:58 +00:00
scorpio810
f251d0c12c Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4176 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 19:57:17 +00:00
scorpio810
667fa62eec Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4175 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 19:18:42 +00:00
scorpio810
0a4e52fce0 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4174 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 18:44:49 +00:00
scorpio810
ac47aec746 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4173 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 16:48:07 +00:00
blacksun
1bdb13594b Conductor properties : Add two value, function and tension/protocol.
Revamp some widget to edit it.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4172 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-29 14:18:30 +00:00
scorpio810
bda6d607b3 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4171 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 18:52:59 +00:00
scorpio810
a5e8172375 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4170 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 18:48:36 +00:00
scorpio810
bd4e603339 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4169 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 18:27:00 +00:00
scorpio810
bebca0142c Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4168 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 15:17:30 +00:00
scorpio810
9460bcc13c Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4167 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 15:09:11 +00:00
scorpio810
92324ee8bf Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4166 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 14:50:26 +00:00
scorpio810
86b24021a2 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4165 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-27 14:33:05 +00:00
blacksun
94c3526d2f Conductor properties widget : minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4164 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-26 21:46:47 +00:00
pavelfric
fd8382d842 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4162 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-26 18:32:55 +00:00
scorpio810
fb43ad6eee Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4161 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-26 10:53:35 +00:00
scorpio810
bce705c67f Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4160 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-26 03:59:53 +00:00
scorpio810
1dff01120a Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4159 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 15:19:29 +00:00
scorpio810
6f0a9e9c01 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4158 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 10:20:02 +00:00
scorpio810
22c87d5108 Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4157 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 09:48:44 +00:00
scorpio810
65503acf4a Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4156 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 09:21:42 +00:00
scorpio810
7e2161947d Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4155 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 08:39:34 +00:00
scorpio810
083fd6f26e Add tag label
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4154 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-25 08:06:47 +00:00
zheka
c6ace53a53 lang_extra.nsh is translated to Russian language
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4153 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-23 18:20:00 +00:00
scorpio810
6d6f4474ec Nsis Installers : add Dutch_Belgium language, thank Ronny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4152 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-23 01:35:16 +00:00
rdsivd
49f4bf1b11 update dutch_belgium translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4151 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-22 22:59:55 +00:00
blacksun
3336237a3f Conductor : remove the possibility to have different texts on the same potential
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4150 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-22 13:18:20 +00:00
silvio
185d6adfdd upgrade -ITA- file lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4149 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 22:27:57 +00:00
silvio
31ad1a6678 upgrade -ITA- file lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4148 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 22:25:45 +00:00
scorpio810
7ec95f0574 Nsis Installers : fix elements install path
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4147 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 22:01:45 +00:00
aitolos
6518952212 update Greek, lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4146 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 15:23:21 +00:00
scorpio810
ed9d2ebdaf Nsis Installers : delete check box license page,
move french language variables to lang_extra_fr.nsh
in code page iso 8859-15 (accented characters)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4145 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 13:09:06 +00:00
scorpio810
8069e77ff7 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4144 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 05:34:43 +00:00
scorpio810
a6a2ec2ecc Nsis Installers : Forget variables from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4143 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 05:28:56 +00:00
scorpio810
a93630ef3e Nsis Installers : update lang_extra.nsh, add description text for sections items
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4142 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-21 05:21:26 +00:00
silvio
97c641352b upgrade -ITA- file lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4141 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-20 16:49:35 +00:00
scorpio810
5de3787dd1 Nsis Installers : lang_extra.nsh change code page to Utf8
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4140 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-20 15:20:56 +00:00
scorpio810
5d3e91fe5f Nsis Installers : update lang_extra.nsh and change code page to iso 8859-15,
add Nuri header and wizard, thank Nuri


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4139 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-20 13:37:52 +00:00
scorpio810
defb3a1798 Nsis Installers : Minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4138 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-19 23:36:27 +00:00
scorpio810
5e75403a1e Nsis Installers : change Copyright
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4137 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-19 21:40:39 +00:00
silvio
7423c41bff upgrade -ITA- file lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4136 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-19 12:44:39 +00:00
nuri
818bd385ad German translation for lang_extra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4135 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-19 09:48:40 +00:00
scorpio810
168087a425 Nsis Installers : minors fix, improve Components page Drop List Box Size
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4134 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 23:53:52 +00:00
scorpio810
684e2cd993 Updated Nederland translation - lang_extra.nsh, thank Elbert
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4133 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 18:19:00 +00:00
pawel32640
4f99ae8453 updated Polish translation - langextra.nsh
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4132 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 17:24:35 +00:00
scorpio810
918b951005 Nsis Installers : add dutch language for Nederland
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4131 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 14:49:32 +00:00
scorpio810
25913172db Nsis Installers : add subsections for elements, add lang_extra.nsh for translate elemnts items and message box, reduce language choice in installer
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4130 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 13:50:27 +00:00
nuri
1b946e7453 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4127 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-18 07:34:40 +00:00
blacksun
d77011acfb At creation of a new conductor, if every properties of conductors at the same potential is equal,
we use this properties for the new conductor, instead of the default properties.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4126 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-17 17:01:39 +00:00
zheka
1973e3378f QET_RU are updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4125 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-17 14:08:54 +00:00
rdsivd
3f6d33fe35 update get_be langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4124 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-16 13:10:41 +00:00
pawel32640
3d2a91c9ef updated Polish translation - LangString.txt
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4123 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-16 11:44:59 +00:00
scorpio810
b31827ac11 Nsis Installers : add French and English translation for MessageBox, Translators you could translate
LangString.txt files now.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4122 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-16 06:48:55 +00:00
scorpio810
bbbdbc8092 Nsis Installers : Fix warning message
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4121 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-15 15:36:03 +00:00
pawel32640
31f2e227f9 updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4115 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-15 08:00:48 +00:00
scorpio810
48963a0596 Nsis Installers : add other languages for installers
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4114 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-15 04:25:33 +00:00
scorpio810
c8a8939fd7 Nsis Installers : write file associations registry keys to titleblocks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4113 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-14 14:16:25 +00:00
silvio
789ee31df4 upgrade ITA .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4112 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-14 07:05:24 +00:00
scorpio810
5cac551509 Nsis Installers : Change Download url path
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4111 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-13 23:44:45 +00:00
scorpio810
c07c991dfa Update English translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4110 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-13 22:20:57 +00:00
scorpio810
970e9755e7 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4109 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-13 22:07:44 +00:00
scorpio810
a4d1013cce nsis Installers : add Donate.url
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4108 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-13 14:33:59 +00:00
scorpio810
6c8006f087 Nsis Installers : disable MessageBox "Error", appears if the user does not select elements components
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4107 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-13 01:23:34 +00:00
scorpio810
ce03e7c6d4 Nsis Installers : QET.nsi fix icons path if 32 bits package is installed on Windows 64 bits
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4106 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-12 15:44:13 +00:00
scorpio810
1ec719ecdf Nsis Installers : Auto-uninstall old version before installing new version!
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4105 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-12 02:57:17 +00:00
scorpio810
31747d7627 Nsis Installers : minor improvements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4104 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-12 00:39:02 +00:00
scorpio810
9571d00c43 Nsis Installers : improve manual pages
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4103 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 18:19:03 +00:00
scorpio810
a5ddff434b Nsis installers : add Manual_Russian.url
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4102 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 17:48:35 +00:00
scorpio810
42b5d62972 Nsis Installers : add manual.url, Download.url shortcuts in the QElectroTech start menu
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4101 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 17:27:14 +00:00
blacksun
5019919de0 Remove all #if QT_VERSION who compare Qt version smaller than 5
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4100 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 08:46:49 +00:00
scorpio810
3c9953bfe2 Nsis installers : add Graying out Main program Section
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4099 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 02:46:21 +00:00
scorpio810
6dca3436d2 Nsis installer : add components pages
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4098 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-11 01:08:05 +00:00
scorpio810
55df72244f QET64.nsi add checkbox to run QElectroTech in finish page
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4097 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-10 17:14:51 +00:00
scorpio810
99a4202b8f Update QET64.nsi
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4096 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-10 17:02:34 +00:00
scorpio810
b48b5bcd46 Update nsis script installer
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4095 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-10 16:41:44 +00:00
blacksun
d1fbcda34b Diagram view : remove old code about drop element.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4094 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-10 08:02:40 +00:00
scorpio810
3e2c4af95a Improve QET.nsi
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4093 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-09 17:10:09 +00:00
blacksun
ed75c57c1d Use QPropertyUndoCommand instead of ChangeSeveralConductorsPropertiesCommand and ChangeConductorsPropertiesCommand.
Remove class ChangeSeveralConductorsPropertiesCommand and ChangeConductorsPropertiesCommand.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4092 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-09 12:06:31 +00:00
blacksun
c801c3e0a5 Diagram text item : minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4091 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-08 13:06:21 +00:00
scorpio810
ead3ff6076 Bug fix: NSIS script now set elements files "*.elmt" in read only
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4090 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-08 00:45:16 +00:00
blacksun
65b27f411a Element text mover : use QPropertyUndoCommand instead of MoveElementsTextsCommand.
Remove class MoveElementsTextsCommand


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4089 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-07 19:45:00 +00:00
blacksun
3535ee8001 ImagePropertiesWidget : use QPropertyUndoCommand instead of ItemResizerCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4088 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-06 17:08:45 +00:00
blacksun
7e81cf3c41 shapegraphicsitempropertieswidget : use QPropertyUndoCommand instead of ChangeShapeStyleCommand.
Remove the class ChangeShapeStyleCommand.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4087 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-06 16:34:38 +00:00
scorpio810
7e9de6470b minor : refresh file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4086 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-04 19:55:31 +00:00
scorpio810
ae10380927 Add NSIS script for x86_64-w64 installer
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4085 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-04 19:24:52 +00:00
blacksun
54ac875330 Primitive part : Change the cursor shape, according to the current available behavior
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4084 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-03 17:26:57 +00:00
scorpio810
3c327009a5 Fix FTBFS on x86_64-w64-mingw32 cross-compilation, thank Joshua
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4083 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-08-03 05:43:44 +00:00
blacksun
b025830100 Fix crash : qet crash when element comment (comment item and cross ref item) is bigger than the width of the rectangle where there are displayed.
The rectangle is now adjusted to the size of the comment.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4082 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-31 14:20:56 +00:00
blacksun
0fdb244bb5 Qet Shape Item : minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4081 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-31 13:29:23 +00:00
blacksun
eaea6f889b Qet shape item : Change the cursor shape, according to the current available behavior
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4080 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-29 09:25:41 +00:00
rdsivd
b41c5635c4 small correction on BE-NL translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4079 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-28 18:35:52 +00:00
blacksun
34ef94ea8f Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4078 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-28 09:55:35 +00:00
blacksun
8acbc625da Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4077 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-27 21:47:41 +00:00
blacksun
bb213e7146 Fix regression with shape item when open a project: type (line, rect, ellipse, polygon) is wrong
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4076 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-27 19:25:54 +00:00
blacksun
76b788c4fd Text field editor bug fix : The tagg "label" was not applied to the text field
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4075 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-27 09:33:27 +00:00
blacksun
fae003f6c4 QetShapeItem : use QPropertyUndoCommand instead of QetShapeGeometryCommand
Remove the class : QetShapeGeometryCommand


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4074 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-27 09:20:38 +00:00
blacksun
871d50c014 style editor : use QPropertyUndoCommand instead of ChangePartCommand.
Remove ChangePartCommand class.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4073 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-24 13:41:51 +00:00
blacksun
58d247ced7 text editor and textfield editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4072 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-24 12:56:27 +00:00
blacksun
d56e6e60b1 terminal editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4071 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-24 12:08:03 +00:00
blacksun
99c867d6d6 part text and part text field : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4070 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-24 11:34:45 +00:00
blacksun
b32e1bf339 polygon editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4069 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-24 11:11:50 +00:00
blacksun
5b8a6a9745 Line editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4068 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-23 10:52:56 +00:00
blacksun
65d4b08c86 ellipse editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4067 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-23 09:57:09 +00:00
blacksun
a00bfdf00f Arc editor : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4066 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-23 09:32:21 +00:00
scorpio810
0454296d0a Element info widget : delete momentarily set focus to the first line edit, because the focus in line edit prevents using the keyboard to element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4065 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-22 13:36:44 +00:00
blacksun
6a902ca530 Rectangle editor widget : use QPropertyUndoCommand instead of ChangePartCommand
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4064 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-22 13:19:43 +00:00
scorpio810
f24b1dd8d8 Element info widget : restore set focus to the first line edit, because dock now save data on the fly
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4063 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-22 00:28:33 +00:00
scorpio810
6d39babf90 Minor : add UUID for this elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4062 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-21 13:46:28 +00:00
blacksun
50c61b4e03 Element editor : minor improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4061 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-21 12:29:43 +00:00
blacksun
012ba2ccd7 Element editor : Add animation for some undo/redo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4060 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-20 21:06:00 +00:00
scorpio810
50d98b2167 ConductorPropertiesWidget: improve set focus to QLineEdit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4059 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-20 19:16:12 +00:00
blacksun
c885ce3d7a Element editor : add handler for modifie primitives
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4058 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-20 17:45:37 +00:00
scorpio810
effa4e9997 Add new symbols, thanks Kevin
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4057 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-20 16:47:57 +00:00
scorpio810
fabb2e2f58 ConductorPropertiesWidget: improve set focus
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4056 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-19 16:47:42 +00:00
blacksun
d55508df05 Qet shape item : rectangle and ellipse can be resized by the edges
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4055 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-19 15:52:44 +00:00
scorpio810
e953459e90 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4054 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-19 15:44:58 +00:00
scorpio810
97914bae2d ConductorPropertiesWidget: set focus to the line edit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4053 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-19 15:34:37 +00:00
blacksun
ca37f384fb Element primitive decorator : the handlers keep the same size at screen, no matter the zoom
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4052 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-16 14:58:01 +00:00
pawel32640
3291737cab updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4051 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-15 17:10:36 +00:00
blacksun
6c14729d14 QetShapeItem -> handler : handler is draw at the same size at screen, no matter the curent zoom
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4050 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-15 16:54:30 +00:00
blacksun
e31695382f Minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4049 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-13 12:01:02 +00:00
zheka
f02a9a0572 qet_ru files are updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4048 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-12 20:43:54 +00:00
blacksun
c31ae41910 Revamp some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4047 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-12 15:05:59 +00:00
blacksun
27117ef9d1 Add undo command for QetShapeItem geometry change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4046 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-12 13:35:40 +00:00
scorpio810
57fdcd70a4 Add new symbols, thanks Pawel & cbh41600
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4045 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-12 13:09:36 +00:00
blacksun
806c7fd5e3 Qet shape item properties widget : remove the scale widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4044 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-12 10:28:59 +00:00
scorpio810
185292a29d Move single pole elements to beter directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4043 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-11 18:58:32 +00:00
rdsivd
32204222f0 update be-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4042 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-10 21:02:03 +00:00
rdsivd
e20893a93b updated be-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4041 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-09 19:13:01 +00:00
blacksun
3d15e0788f Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4040 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-09 18:36:26 +00:00
blacksun
eaf3d22d25 QetShapeItem : add handler for modified the geometry of shapes in the diagram
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4039 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-09 18:33:14 +00:00
silvio
7424cb8c38 upgrade ITA .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4038 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-07 20:17:14 +00:00
aitolos
7e99b95dd8 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4037 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-07 15:14:30 +00:00
nuri
2ccbcb499d Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4036 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-07 07:53:04 +00:00
scorpio810
a25def653e Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4035 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-06 21:49:39 +00:00
scorpio810
b5d3db8d39 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4034 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-07-04 17:25:27 +00:00
scorpio810
d258d87efd Add attribut "uuid" in *.elmt file.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4033 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-29 08:58:30 +00:00
blacksun
557a2eaa87 Add attribut "uuid" for .elmt file.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4032 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-28 16:30:13 +00:00
blacksun
748e9bd186 Grey background : title block and border have grey background too.
Help line of item(add shape, or add element) change is color when background is grey


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4031 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-28 12:37:10 +00:00
blacksun
20f4985f7a Minor fix : locked item isn't moved by arrow key or multiple selections.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4030 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-27 16:02:28 +00:00
blacksun
c2b97439a9 Revamp the action white/grey background
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4029 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-25 18:23:47 +00:00
pavelfric
92d9a01da3 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4028 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-24 16:55:43 +00:00
blacksun
3c21364d5e Refactor some properties dialog.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4027 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-23 20:40:05 +00:00
alfredo
55e013f3e0 Spanish translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4026 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-23 03:00:07 +00:00
blacksun
d7d68293d4 Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4025 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-21 20:20:27 +00:00
blacksun
9c6d362637 QetShapeItem can be edited via the properties editor dock
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4024 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-21 20:16:41 +00:00
scorpio810
33b637e6bf Minor: delete gray check box in borderpropertieswidget.ui
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4023 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-21 15:29:09 +00:00
nuri
ab1d558f61 Add a new button in the display tool bar to switch the background color in white or grey on the fly.
The check box for this functionality in the DiagramProporties window was deleted.



git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4022 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-21 11:00:08 +00:00
scorpio810
8e977ef476 Add new symbol, thank Kenyboy
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4021 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-20 09:10:57 +00:00
blacksun
2ed9bab794 minor ui change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4020 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-19 17:26:10 +00:00
scorpio810
8dae2429c1 Add new symbols, thank Alexis and sombre005
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4019 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-19 17:17:15 +00:00
blacksun
2750c4434c Properties dock : button edit element and find element work.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4018 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-19 08:12:17 +00:00
blacksun
9ba7b0c39d Fix regression : Check conductors text when link two folios report.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4017 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-16 08:26:03 +00:00
zheka
e8eed16bfb qet_ru updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4016 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-15 21:08:46 +00:00
scorpio810
b61d16c6a3 Update spanish translation, thank Marcelo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4015 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-15 15:02:18 +00:00
blacksun
0a0da5e7cc propertieseditordockwidget : remove button box. (become unused with live edit mode)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4014 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-15 07:33:59 +00:00
nuri
b9e9e8f3f6 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4013 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-15 05:54:32 +00:00
aitolos
a91b71f771 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4012 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-14 18:36:34 +00:00
aitolos
610c4dcb63 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4011 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-14 18:34:44 +00:00
aitolos
a4579ae426 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4010 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-14 18:06:06 +00:00
pawel32640
8c2c20c6e4 updated Polish translation - .ts
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4009 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-14 13:10:51 +00:00
rdsivd
7f927233f9 update be-nl lang
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4008 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-13 19:52:54 +00:00
silvio
49e6ea6806 upgrade of .ts file - italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4007 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-13 17:59:03 +00:00
scorpio810
eff2fa7086 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4006 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-13 15:43:45 +00:00
blacksun
71e1e2a8c4 Image properties widget: enable the use of live edit mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4005 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-11 18:03:58 +00:00
scorpio810
59bd290382 Elements minor fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4004 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-11 16:15:38 +00:00
scorpio810
c5ee983905 Nomemclature: add field element position in the graphic scene to export .csv file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4003 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-10 19:31:26 +00:00
blacksun
2cf6e61643 Element info widget : fix wrong behavior with cursor when use the live edit mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4002 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-09 16:28:54 +00:00
blacksun
e195ab634e Revamp the class link and unlink element command
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4001 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-08 18:18:35 +00:00
scorpio810
5a81f9859f Add new symbols, thanks mathdabomb, alex
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4000 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-08 15:23:05 +00:00
scorpio810
d825ef1851 Add new symbols, thanks cbh41600
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3999 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-07 08:04:18 +00:00
blacksun
f156a78fdc Element info widget: check box "show" work in live edit mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3998 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-06-05 08:54:14 +00:00
scorpio810
103566dbc6 Minor: disable buttons for Properties editor dock widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3997 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-31 23:17:29 +00:00
blacksun
509d89797e Element info widget : enable the use of live edit mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3996 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-31 15:02:41 +00:00
blacksun
ba888ac726 Master properties widget : enable live edit mode
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3995 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-29 07:28:58 +00:00
scorpio810
7e2ac0eea6 Add new symbols, thanks cbh41600, Angelescu, eb3pas, Baboune, mathdabomb, titus, Yes, Julkien
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3994 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-27 21:40:32 +00:00
blacksun
6e4dbecd28 forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3993 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-27 07:37:19 +00:00
blacksun
2242ebd16a Link single element widget, set live edit enable.
In properties dock widget, no need to click on apply button, change are apply immediately.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3992 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-27 07:22:50 +00:00
scorpio810
c3ab81e9c3 Minor, fix warning
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3991 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-25 15:15:02 +00:00
blacksun
db173a1c39 Dock properties editor : when selection change dock try to stay in the same tab with the new selection (if possible)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3990 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-25 10:22:00 +00:00
nuri
175029dc2d Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3989 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-25 05:41:33 +00:00
scorpio810
260437b16b Fix widgets size for dock
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3988 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-24 13:44:45 +00:00
aitolos
a4dd6e4710 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3987 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-24 13:42:21 +00:00
zheka
d2569fc365 qet_ru updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3986 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-24 10:21:10 +00:00
scorpio810
fdc9d8f8fe Elementinfopartwidget disable focus on checkBox
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3985 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-24 09:29:43 +00:00
pawel32640
00dfc272e7 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3984 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-23 21:00:30 +00:00
silvio
6c109a9596 upgrade of .ts file - italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3983 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-23 20:58:30 +00:00
scorpio810
9546e4f244 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3982 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-23 19:49:10 +00:00
blacksun
81efc25034 widget upadte they're content when a diagram is removed from project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3981 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-21 20:46:23 +00:00
scorpio810
c0b8bce2b6 Minor fix in Italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3980 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-20 12:27:43 +00:00
scorpio810
6be71a97b7 Elementpropertieswidget:restored the pixmap element view with limited scaling and preserving the aspect ratio
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3979 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-20 12:22:30 +00:00
blacksun
e5035f8125 widget upadte they're content when a diagram is removed from project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3978 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-19 21:41:05 +00:00
scorpio810
37961e8904 customelementgraphicpart fix yellow filling
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3977 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-19 18:22:17 +00:00
scorpio810
44b580ac29 elementpropertieswidget disable widget for the pixmap
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3976 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-18 22:54:43 +00:00
scorpio810
cce4b7490a Element info widget : set disable focus to the first line edit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3975 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-18 22:48:04 +00:00
blacksun
4142f9c6a2 Bug fix : Qet crash when load a conductor without two terminal (because the allocation of a new conductor fail)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3974 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-18 22:19:14 +00:00
blacksun
e73bad2bd6 Minor fix : load an element or image will setpos at the same pos when was save (and not snap to grid)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3973 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-17 17:47:50 +00:00
silvio
127cc10584 upgrade of .ts file - italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3972 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-15 10:32:11 +00:00
rdsivd
fc0fa42b55 update be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3971 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-14 05:08:07 +00:00
scorpio810
633abaa7bf Add ability to have an empty outline for hatching
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3970 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-13 12:48:31 +00:00
scorpio810
933cb94a3c Add texture pattern to element part
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3969 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-13 06:31:16 +00:00
zheka
d3e043e836 RU files are updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3968 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 17:02:31 +00:00
pawel32640
0e35bfe9a0 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3967 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 16:24:25 +00:00
aitolos
bce5470e1e update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3966 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 15:59:50 +00:00
nuri
7f8fa4c891 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3965 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 15:47:20 +00:00
scorpio810
be68ae7300 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3964 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 15:11:17 +00:00
scorpio810
01be436e51 Add others colors for element part
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3963 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-12 14:49:41 +00:00
scorpio810
e95a67fa05 Update english translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3962 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 20:06:41 +00:00
rdsivd
1f6b26ad98 update be-nl qm file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3961 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 19:25:12 +00:00
silvio
a11a235834 upgrade of .ts file - italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3959 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 19:18:56 +00:00
rdsivd
fc809dbffe update langue be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3958 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 18:30:23 +00:00
zheka
9f49843e11 qet_ru files are updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3957 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 18:18:10 +00:00
aitolos
75cd514353 update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3956 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 17:38:28 +00:00
nuri
8ab9ebf3fe Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3955 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 14:56:55 +00:00
scorpio810
dcfdbc3f09 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3954 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 13:56:52 +00:00
scorpio810
7cea8382b1 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3953 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 13:53:58 +00:00
scorpio810
c164d105f5 Add brun and yellow colors for element part
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3952 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 12:45:08 +00:00
scorpio810
741248ce9f Add grey color for element part
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3951 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-11 11:06:58 +00:00
scorpio810
08ef4365bb Update be-nl file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3950 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-10 18:41:48 +00:00
rdsivd
654f89f9cb update smale correction be-nl langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3949 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-10 13:52:51 +00:00
silvio
03542c4f0b .ts file upgrade of italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3948 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-09 22:21:57 +00:00
blacksun
219ef71de8 forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3947 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-09 11:39:44 +00:00
blacksun
f061015a17 link single element widget : minor improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3946 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-09 11:35:00 +00:00
scorpio810
1dce8792ea Update Spanish translation, thank Marcelo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3945 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-08 18:05:10 +00:00
blacksun
6618887ed6 Image can be edited in the dock widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3944 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-08 17:49:29 +00:00
blacksun
7ef8cbc0db Diagram editor : add dock widget for edit the current selection.
For the moment only work with element


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3943 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-07 22:15:00 +00:00
rdsivd
f022133de4 update be-nl file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3942 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-07 18:30:49 +00:00
scorpio810
e047e90456 Refresh qet_be.qm
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3941 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-07 08:21:04 +00:00
pawel32640
f5aa839026 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3940 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-07 08:08:19 +00:00
aitolos
0744c792e2 update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3939 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-06 19:48:51 +00:00
rdsivd
7237304b96 updat be-nl translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3938 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-06 19:37:46 +00:00
zheka
b115c3eff4 qet_ru is updated
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3937 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-06 14:28:58 +00:00
nuri
24c694aada Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3936 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-06 10:34:10 +00:00
scorpio810
aef9668e51 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3935 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-06 09:10:34 +00:00
scorpio810
aaf8895177 Delete elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3934 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-05 16:12:59 +00:00
rdsivd
33a9a60aeb update be translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3933 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-03 20:27:58 +00:00
blacksun
67189f49f3 Use PropertiesEditorWidget instead of QWidget for some widget (widget used to edit propertie of element)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3932 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-03 17:32:28 +00:00
scorpio810
a123a50e18 Add kindInformation "type" commutator for elements switchs and push buttons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3931 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-03 15:31:19 +00:00
blacksun
b7031a0009 Create a common widget to edit propertie
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3930 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-05-02 22:25:01 +00:00
aitolos
a30f51f2ce update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3929 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 16:00:33 +00:00
nuri
73bc395776 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3928 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 15:44:09 +00:00
blacksun
0aa162a245 Cross ref : add commutator/button as new type of master
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3927 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 15:33:21 +00:00
pawel32640
57b7026b8e updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3926 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 15:32:22 +00:00
zheka
203b9f7855 Russian translation update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3925 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 15:14:11 +00:00
scorpio810
9387166e87 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3924 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 15:01:22 +00:00
scorpio810
f62e3cb994 Nomenclature add field "Function"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3923 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-29 14:27:31 +00:00
pavelfric
8a39d1b038 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3922 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-27 19:58:23 +00:00
zheka
13084a5c6c [ru] elements translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3921 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-26 07:51:54 +00:00
blacksun
9fce7717ea Fix wrong typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3920 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-25 08:54:54 +00:00
blacksun
a58ed2d91c Add title block embedded in a project (but not in common or custom collection) available
as a default title block for a new diagram in this project. 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3919 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-25 08:43:00 +00:00
scorpio810
68a9c850ad Add new symbols, thank Luisvillaa
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3918 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-22 15:24:46 +00:00
blacksun
1c60fa5f87 Fix compilation error
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3917 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-18 18:49:31 +00:00
blacksun
bab6546c4e Minor code change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3916 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-18 11:02:10 +00:00
blacksun
10e3f66eaf Minor bug fix : element editor, finish add text or terminal, add the current part in the part list,
but the part doesn't exist after the event interface was deleted.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3915 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-18 10:30:05 +00:00
zheka
d69b56dab8 Added some graphics; qet-ru.ts is corrected for better corresponding russian electrotechnical terminology
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3914 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-17 15:50:57 +00:00
blacksun
108fb90df6 Forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3913 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-17 11:45:49 +00:00
blacksun
cf7ffb5452 Allow user to select common or custom title block as default title block for a new project / diagram in project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3912 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-17 11:36:28 +00:00
zheka
6ec0c1dbbc [ru] man page is added
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3911 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-16 16:20:38 +00:00
pawel32640
5dac59e1e7 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3910 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-16 15:01:43 +00:00
zheka
e242ff6b6e Updated [ru] descriptions
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3909 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-16 14:03:10 +00:00
scorpio810
3822e87198 Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3908 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-14 16:37:26 +00:00
pawel32640
2d91dcbfc4 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3907 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-13 19:08:47 +00:00
scorpio810
51c984fa7a Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3906 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-13 17:28:45 +00:00
scorpio810
830f6c0638 Minor typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3905 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-12 11:25:56 +00:00
scorpio810
66a405c1e6 Add new ts files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3904 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-12 11:03:28 +00:00
scorpio810
f9ff4bc6a2 Add new symbols, thank ikbel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3903 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-10 16:18:11 +00:00
blacksun
3598d349e7 Add possibility to choose the default title block for a new project (User title block isn't supported yet)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3901 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-09 09:39:34 +00:00
scorpio810
026b7f43c3 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3900 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-08 09:41:40 +00:00
scorpio810
07cb9dce60 Add Translator
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3899 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-08 09:33:27 +00:00
scorpio810
42f170a1a6 Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3898 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-07 19:42:16 +00:00
aitolos
1d0daf3598 spell check Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3897 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-07 17:42:48 +00:00
aitolos
67672ed79e update Greek TS
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3896 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-07 16:34:26 +00:00
scorpio810
c96b2ce377 Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3895 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-07 09:33:04 +00:00
nuri
ec5c1b197c Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3894 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-07 03:07:14 +00:00
pawel32640
f1894520e2 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3893 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-04 20:20:00 +00:00
scorpio810
018a32b1f1 Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3892 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-04 16:34:20 +00:00
silvio
113fdbc61c .ts file upgrade of italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3891 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-04 14:59:23 +00:00
scorpio810
00eee77d94 Update Ts files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3890 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-04 14:44:10 +00:00
scorpio810
da34973e1b Minor, for better translation: replace "Add line" by "Add straight line" for basic shape
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3889 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-04 14:39:30 +00:00
scorpio810
cf7cdba199 Update russian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3888 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-03 10:30:32 +00:00
scorpio810
d66c72c497 Nomenclature add field "Location"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3887 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-02 15:48:04 +00:00
scorpio810
bd650a0683 Patch and update russian element translation, thank Evgeny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3886 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-02 08:52:22 +00:00
scorpio810
49f48c972c Minor, fix duplicate translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3885 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-01 13:12:45 +00:00
scorpio810
6f48501132 Update russian translation, thank Evgeny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3884 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-01 13:07:04 +00:00
scorpio810
95a628bee4 Update russian translation, thank Evgeny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3883 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-04-01 12:11:36 +00:00
pavelfric
b581f3b012 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3882 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-31 20:21:32 +00:00
scorpio810
188d2f6663 Update russian translation, thank Evgeny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3881 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-31 13:19:48 +00:00
aitolos
efb57c9329 minor update
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3880 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 20:11:29 +00:00
rdsivd
e7ecdae271 small update of be tranlation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3878 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 18:38:50 +00:00
blacksun
2a04e3c64f Fix bug: scene rect was wrong when border propertie is same in code and config.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3875 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 15:58:16 +00:00
scorpio810
dc3dcf9e90 Add new symbols, thank Titus
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3874 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 14:51:04 +00:00
scorpio810
84d965b674 Update russian translation, thank Evgeny
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3873 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 14:28:08 +00:00
aitolos
b0b8dbb4d9 update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3872 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 14:16:20 +00:00
nuri
388f51f965 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3871 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 05:35:02 +00:00
pawel32640
56f15ff54b updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3870 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-30 05:29:25 +00:00
silvio
58bb3ea07f TS file upgrade of italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3869 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 21:05:13 +00:00
scorpio810
fa356afad3 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3868 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 20:09:32 +00:00
aitolos
4cf64cfe09 update elements Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3867 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 16:42:40 +00:00
pawel32640
97a79aa2a9 updated Polish translation - minor amendment
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3866 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 16:08:01 +00:00
aitolos
f6ea8ed784 update elements, Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3865 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 13:06:22 +00:00
aitolos
7c61c76d25 update elements, Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3864 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 13:00:53 +00:00
blacksun
e731b48f86 -Replace option : draw grid outside of border by zoom out beyond of folio.
When option is to true, zoom out is infinite and grid is draw outside of border.
-Zoom out with mouse wheel is now more slowly


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3863 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-29 12:15:25 +00:00
silvio
4d86d9e64c element italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3862 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-27 09:52:16 +00:00
blacksun
bc36c6adf3 Diagram view :
-Set maximum Visualized scene to diagram scene rect*2.
-At first activation, view call zoom fit to see all of the diagram


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3861 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-27 09:45:19 +00:00
pawel32640
916dc90dfe updated Polish translation - minor amendment
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3860 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 19:56:25 +00:00
scorpio810
51b38ee3a1 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3859 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 18:05:22 +00:00
scorpio810
1b1672a826 Editor: add Clear Button to qle_text(texteditor)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3858 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 17:28:48 +00:00
scorpio810
579b6a765b Revert 3855 commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3856 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 16:21:02 +00:00
rdsivd
019d8f3e1d updated BE-nl lanque file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3855 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 16:13:36 +00:00
nuri
13b342f0d6 Minor changes in french texts to make them more accurate
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3854 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 09:39:05 +00:00
nuri
c2774b4dc2 Changed elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3853 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 08:05:07 +00:00
nuri
678a75e795 New elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3852 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-26 08:03:21 +00:00
blacksun
af63714517 Add option to draw or not the grid outside of the border of folio.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3850 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-24 23:10:15 +00:00
blacksun
2f9fd79371 Minor change about how drag view work (diagram editor and element editor)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3849 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-24 22:21:58 +00:00
pawel32640
9072d3de04 updated Polish translation - titleblocks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3848 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-23 18:43:53 +00:00
scorpio810
2e5c7bedf4 Add more clear buttons for elementinfopartwidget and conductorpropertieswidget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3847 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-23 05:37:32 +00:00
silvio
598f5572db Upgrade italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3846 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 21:47:41 +00:00
pawel32640
d1da38a414 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3845 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 21:21:31 +00:00
scorpio810
5d19afcae4 Update English translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3843 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 17:17:46 +00:00
pawel32640
7662d5e337 updated Polish translation - qet_pl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3842 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 14:02:27 +00:00
aitolos
5c8942620a Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3841 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 14:00:39 +00:00
nuri
fc0a618d43 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3840 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 11:21:38 +00:00
scorpio810
ddea349dcc Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3839 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-22 05:54:04 +00:00
nuri
650a4632c0 Changed tool tips of basic shapes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3838 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-21 10:51:34 +00:00
nuri
a287de4b40 Made a more distinctive use of french words "projet", "schéma" and "folio" in the GUI
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3837 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-21 10:43:39 +00:00
blacksun
2f1f4674f1 Diagram Event Interface : clear selection, of edited diagram, at constructor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3836 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-20 11:58:22 +00:00
nuri
723a09be2c Wrong tooltip "Protective Earth Neutral" deleted
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3835 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-19 11:07:21 +00:00
blacksun
72c68c0d8d Clean up some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3834 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-18 18:07:18 +00:00
blacksun
e29ed4372a Bug fix : element was not integrate into the xml project.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3833 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-18 14:10:25 +00:00
scorpio810
814d1117af Update polish translation, thank pawel
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3832 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-17 19:54:11 +00:00
nuri
0b1dedd12d Updated and revised german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3831 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-17 08:48:58 +00:00
nuri
fddb0624a0 Refresh elements translation (french and german)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3830 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-17 08:29:46 +00:00
pawel32640
bde787c81e updated Polish translation (,ts)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3829 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-17 06:13:48 +00:00
silvio
82c9f946de Trimming in italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3828 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-16 20:54:21 +00:00
blacksun
04687effda Title block can be displayed at right edge of diagram (work in progress)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3827 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-16 13:29:27 +00:00
blacksun
8919e8e690 Diagram : draw the points of the grid only inside the diagram
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3826 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-14 21:40:44 +00:00
scorpio810
48de36f759 ExportPropertiesWidget cosmetic change size
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3825 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-13 16:56:20 +00:00
scorpio810
2cff4b1082 ExportPropertiesWidget fix Height Width minimum size
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3824 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-13 16:47:16 +00:00
scorpio810
c596c87452 Differentiates the icons to configpages or project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3823 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-13 09:04:04 +00:00
scorpio810
77f0365bd0 Add contributors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3822 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-13 05:24:25 +00:00
scorpio810
37cfe41308 Minor: cosmetic change icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3821 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-13 05:12:36 +00:00
scorpio810
53298c4c87 Minor: cosmetic change icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3820 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-12 15:31:41 +00:00
scorpio810
a327a1a9fe Minor: cosmetic change icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3819 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-12 15:15:32 +00:00
scorpio810
1d7da9fedd Minor: cosmetic change icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3818 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-12 14:44:04 +00:00
blacksun
896dc7a887 Diagram text item : set a parent widget for rich text editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3817 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-11 21:18:05 +00:00
scorpio810
7a7d4a9a94 Icon: cosmetic changes, thank Nuri for icons
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3816 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-10 14:47:03 +00:00
blacksun
23621aa761 dveventaddshape : Minor change related to the calcule of help line
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3815 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-09 10:16:20 +00:00
pavelfric
9529e7dc85 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3813 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 21:56:13 +00:00
blacksun
7c87425377 Project config page -> auto num : add clear button to line edit of the combo box
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3812 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 16:55:17 +00:00
blacksun
431028a86a Element panel widget : remove the clear button, and use instead the clear button provided by QLineEdit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3811 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 16:35:12 +00:00
blacksun
3556a8ad3e Fix regression from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3810 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 13:31:56 +00:00
blacksun
59e26c8c70 Project view : use QTabWidget instead of QETTabWidget.
Remove qetabwidget and qettabBar because are unused since this comit.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3809 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 13:11:38 +00:00
blacksun
fc417aecd6 About qet : use QTabWidget instead of QETTabWidget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3808 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 11:45:37 +00:00
blacksun
8a4efc7fc1 Element info widget : set focus to the first line edit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3807 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 10:26:09 +00:00
nuri
af54df2983 Updated german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3806 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-05 08:37:19 +00:00
silvio
7215b1bee0 Upgrade italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3805 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 21:50:27 +00:00
scorpio810
34cb5e6fde Fix warning (moveDiagramUpTop)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3804 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 21:38:15 +00:00
blacksun
bb54483e23 Change the way to add new element in a diagram.
Drag & drop an element in a diagram and click left to add it, click right to finish


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3803 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 21:13:13 +00:00
aitolos
317626446a Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3801 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 14:36:07 +00:00
scorpio810
d0e55744f4 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3800 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 12:20:16 +00:00
scorpio810
c8d23aaae4 Add new action DiagramMoveUpTop
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3799 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-04 06:00:25 +00:00
silvio
7c97a5105a Fixed typo in italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3798 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 20:53:13 +00:00
silvio
4337252c7a Upgrade italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3797 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 20:51:28 +00:00
scorpio810
5042ca0abb Update German translations, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3796 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 16:00:35 +00:00
aitolos
992367feda Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3795 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 15:28:58 +00:00
scorpio810
51766d11b7 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3794 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 06:19:16 +00:00
scorpio810
6bbffd04e9 update to UTF-8 encoding characters
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3793 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-03 06:11:30 +00:00
scorpio810
89224c1459 Update English translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3792 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 23:05:19 +00:00
scorpio810
e5eaf84788 Minor, refresh TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3791 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 22:30:48 +00:00
scorpio810
68014ed352 Typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3790 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 22:28:21 +00:00
scorpio810
71425c4d88 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3789 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 22:18:48 +00:00
scorpio810
84dfc12111 Fix typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3788 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 22:09:34 +00:00
scorpio810
b42606cb79 Update splash screen
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3787 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 21:35:38 +00:00
scorpio810
b9b0d842c3 Update TS files for Qt5 -> /usr/lib/x86_64-linux-gnu/qt5/bin/lupdate -noobsolete qelectrotech.pro -ts lang/qet_{en,es,ru,pt,cs,pl,ca,de,ro,it,ar,sl,hr,el,nl,be}.ts
Warning use Qt5 linguist for translations (qttools5-dev-tools)
And open files by /usr/lib/x86_64-linux-gnu/qt5/bin/linguist in Debian like distributions


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3786 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 20:44:09 +00:00
scorpio810
1ed8a0c14e Refresh .pro to Qt5 libs
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3784 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 20:16:07 +00:00
scorpio810
81c684ca49 Merge Qt5 branch sources folder to trunk
-Cette ligne, et les suivantes ci-dessous, seront ignorées--

M    sources/aboutqet.cpp
M    sources/bordertitleblock.cpp
M    sources/conductorproperties.h
M    sources/configdialog.cpp
M    sources/configpages.cpp
M    sources/configpages.h
M    sources/createdxf.h
M    sources/diagram.cpp
M    sources/diagram.h
M    sources/diagramcommands.cpp
M    sources/diagramcommands.h
M    sources/diagramprintdialog.cpp
M    sources/diagramprintdialog.h
M    sources/diagramschooser.cpp
M    sources/diagramschooser.h
M    sources/diagramview.cpp
M    sources/diagramview.h
M    sources/dvevent/dveventaddimage.cpp
M    sources/dvevent/dveventaddshape.cpp
M    sources/editor/arceditor.cpp
M    sources/editor/arceditor.h
M    sources/editor/editorcommands.cpp
M    sources/editor/editorcommands.h
M    sources/editor/elementitemeditor.h
M    sources/editor/elementprimitivedecorator.cpp
M    sources/editor/elementscene.cpp
M    sources/editor/elementscene.h
M    sources/editor/elementview.cpp
M    sources/editor/ellipseeditor.cpp
M    sources/editor/ellipseeditor.h
M    sources/editor/esevent/eseventaddtext.cpp
M    sources/editor/esevent/eseventaddtextfield.cpp
M    sources/editor/esevent/eseventinterface.cpp
M    sources/editor/graphicspart/customelementpart.h
M    sources/editor/graphicspart/parttext.cpp
M    sources/editor/graphicspart/parttext.h
M    sources/editor/graphicspart/parttextfield.cpp
M    sources/editor/graphicspart/parttextfield.h
M    sources/editor/lineeditor.cpp
M    sources/editor/lineeditor.h
M    sources/editor/polygoneditor.cpp
M    sources/editor/qetelementeditor.cpp
M    sources/editor/qetelementeditor.h
M    sources/editor/rectangleeditor.cpp
M    sources/editor/rectangleeditor.h
M    sources/editor/styleeditor.cpp
M    sources/editor/styleeditor.h
M    sources/editor/terminaleditor.cpp
M    sources/editor/terminaleditor.h
M    sources/editor/texteditor.cpp
M    sources/editor/texteditor.h
M    sources/editor/textfieldeditor.cpp
M    sources/editor/textfieldeditor.h
M    sources/editor/ui/elementpropertieseditorwidget.cpp
M    sources/elementdefinition.cpp
M    sources/elementdeleter.cpp
M    sources/elementdeleter.h
M    sources/elementdialog.cpp
M    sources/elementscategorieslist.h
M    sources/elementscategorieswidget.cpp
M    sources/elementscategorieswidget.h
M    sources/elementscategory.cpp
M    sources/elementscategorydeleter.cpp
M    sources/elementscategorydeleter.h
M    sources/elementscategoryeditor.cpp
M    sources/elementscategoryeditor.h
M    sources/elementscollection.cpp
M    sources/elementscollectioncache.cpp
M    sources/elementspanel.cpp
M    sources/elementspanel.h
M    sources/elementspanelwidget.cpp
M    sources/elementspanelwidget.h
M    sources/elementtextsmover.h
M    sources/exportdialog.cpp
M    sources/exportdialog.h
M    sources/exportproperties.cpp
M    sources/exportpropertieswidget.cpp
M    sources/exportpropertieswidget.h
M    sources/genericpanel.cpp
M    sources/integrationmoveelementshandler.cpp
M    sources/integrationmoveelementshandler.h
M    sources/interactivemoveelementshandler.cpp
M    sources/nameslistwidget.cpp
M    sources/nameslistwidget.h
M    sources/newelementwizard.cpp
M    sources/newelementwizard.h
M    sources/nomenclature.cpp
M    sources/nomenclature.h
M    sources/projectconfigpages.cpp
M    sources/projectview.cpp
M    sources/projectview.h
M    sources/qet.cpp
M    sources/qetapp.cpp
M    sources/qetapp.h
M    sources/qetdiagrameditor.cpp
M    sources/qetdiagrameditor.h
M    sources/qetgraphicsitem/conductor.cpp
M    sources/qetgraphicsitem/conductortextitem.cpp
M    sources/qetgraphicsitem/customelement.cpp
M    sources/qetgraphicsitem/diagramimageitem.cpp
M    sources/qetgraphicsitem/diagramtextitem.cpp
M    sources/qetgraphicsitem/diagramtextitem.h
M    sources/qetgraphicsitem/element.cpp
M    sources/qetgraphicsitem/ghostelement.cpp
M    sources/qetgraphicsitem/qetshapeitem.cpp
M    sources/qetgraphicsitem/terminal.cpp
M    sources/qetgraphicsitem/terminal.h
M    sources/qeticons.cpp
M    sources/qeticons.h
M    sources/qetmainwindow.cpp
M    sources/qetmessagebox.cpp
M    sources/qetmessagebox.h
M    sources/qetprintpreviewdialog.cpp
M    sources/qetprintpreviewdialog.h
M    sources/qetproject.cpp
M    sources/qetsingleapplication.cpp
M    sources/qettabbar.h
M    sources/qfilenameedit.cpp
M    sources/qtextorientationspinboxwidget.cpp
M    sources/qtextorientationspinboxwidget.h
M    sources/qtextorientationwidget.cpp
M    sources/qtextorientationwidget.h
M    sources/richtext/richtexteditor.cpp
M    sources/richtext/richtexteditor_p.h
M    sources/richtext/ui_addlinkdialog.h
M    sources/titleblock/dimensionwidget.h
M    sources/titleblock/gridlayoutanimation.h
M    sources/titleblock/helpercell.h
M    sources/titleblock/integrationmovetemplateshandler.cpp
M    sources/titleblock/integrationmovetemplateshandler.h
M    sources/titleblock/qettemplateeditor.cpp
M    sources/titleblock/qettemplateeditor.h
M    sources/titleblock/templatecellsset.h
M    sources/titleblock/templatecellwidget.cpp
M    sources/titleblock/templatecellwidget.h
M    sources/titleblock/templatecommands.cpp
M    sources/titleblock/templatedeleter.cpp
M    sources/titleblock/templatedeleter.h
M    sources/titleblock/templatelocationchooser.cpp
M    sources/titleblock/templatelocationchooser.h
M    sources/titleblock/templatelocationsaver.cpp
M    sources/titleblock/templatelocationsaver.h
M    sources/titleblock/templatelogomanager.cpp
M    sources/titleblock/templatelogomanager.h
M    sources/titleblock/templateview.cpp
M    sources/titleblock/templatevisualcell.h
M    sources/titleblockcell.cpp
M    sources/titleblocktemplate.cpp
M    sources/treecoloranimation.h
M    sources/ui/conductorpropertieswidget.cpp
M    sources/ui/diagrampropertiesdialog.cpp
M    sources/ui/diagramselection.cpp
M    sources/ui/dialogautonum.cpp
M    sources/ui/dialogwaiting.cpp
M    sources/ui/elementpropertieswidget.cpp
M    sources/ui/elementselectorwidget.cpp
M    sources/ui/linksingleelementwidget.cpp
M    sources/ui/masterpropertieswidget.cpp
M    sources/ui/potentialtextsdialog.cpp
M    sources/ui/projectpropertiesdialog.cpp
M    sources/ui/selectautonumw.cpp
M    sources/ui/titleblockpropertieswidget.cpp
M    sources/ui/xrefpropertieswidget.cpp
M    sources/undocommand/changeelementinformationcommand.cpp


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3783 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 20:14:56 +00:00
scorpio810
823e4f0570 Update Romanian translations, thanks Titus
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3781 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-03-02 17:15:35 +00:00
alfredo
5ce8ae5dc3 Updated Spanish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3773 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-28 04:05:57 +00:00
silvio
a7c5cc2738 Elements italian translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3772 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-27 18:42:01 +00:00
scorpio810
9412adb084 Add new elements, thank Arnaud
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3770 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-26 22:51:27 +00:00
pavelfric
53ffbf07f7 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3769 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-26 22:16:35 +00:00
pavelfric
10350c0cb0 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3766 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-25 21:14:07 +00:00
pavelfric
e5d0028d69 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3764 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-24 22:39:53 +00:00
aitolos
570c9d0586 Update elements Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3762 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-24 05:14:50 +00:00
aitolos
0821446416 Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3760 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-23 16:51:59 +00:00
aitolos
97546068d9 Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3758 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-22 20:09:52 +00:00
pavelfric
a18097f5d1 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3755 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-22 12:11:13 +00:00
silvio
4f89613997 New italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3744 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-21 15:32:26 +00:00
scorpio810
1170e2bcba Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3742 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-21 12:41:39 +00:00
scorpio810
12e36511a9 Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3741 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-21 12:11:26 +00:00
pavelfric
e6eb4e805c Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3740 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 21:48:45 +00:00
blacksun
6eabfb60d4 Remove double entry for edit element, and remove the entry : selection property
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3739 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 18:44:44 +00:00
scorpio810
5e3b84aaf8 Change displayed version
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3738 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 17:48:55 +00:00
aitolos
37a196de49 remove double entry
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3737 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 15:25:12 +00:00
aitolos
b3f1113cee Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3736 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 15:16:57 +00:00
scorpio810
eaff56b669 Update copyright date
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3734 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 14:56:22 +00:00
scorpio810
8e8c16467b Prepare to final tag
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3733 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-20 14:09:12 +00:00
pavelfric
398542b8b2 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3732 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-19 21:26:51 +00:00
pawel32640
e1225130ad updated Polish translation - minor changes - completed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3731 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-19 19:55:19 +00:00
aitolos
65db4be2b5 Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3730 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 17:45:35 +00:00
pawel32640
2432afd362 updated Polish translation :-)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3729 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 17:19:44 +00:00
scorpio810
fe59e4eb74 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3728 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 17:12:00 +00:00
scorpio810
37029313fa Add Yoann contributor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3727 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 16:58:24 +00:00
silvio
baac2c2dab New italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3726 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 14:27:46 +00:00
pawel32640
d5151e44f5 updated Polish translation :-)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3725 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 14:16:52 +00:00
scorpio810
3cc5d605ae Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3724 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 13:05:01 +00:00
scorpio810
866f27ae6c Add Nuri contributor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3723 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-18 02:38:04 +00:00
pawel32640
96c4f3267e updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3722 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-17 11:38:30 +00:00
scorpio810
adb701194d Add new symbol, thank Yannick and eb3pas
Update German translation, thank Nuri


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3721 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-17 10:28:17 +00:00
scorpio810
22239f80f4 Change splash to release tag
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3720 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-16 21:38:45 +00:00
aitolos
58664001bb Update elements Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3719 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-16 18:52:36 +00:00
pawel32640
4c4d5ae13b minor fixes elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3718 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-15 21:47:50 +00:00
pawel32640
2d97f61ff3 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3717 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-15 11:26:15 +00:00
blacksun
d1819c967f Element editor : Editor can change several primitive style in same time. Just select several primitive and edit it with the style editor widget.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3716 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-15 10:21:32 +00:00
blacksun
deeac895c3 Fix warning
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3715 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 21:37:56 +00:00
pawel32640
61c265732a updated Polish translation - minor changes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3713 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 20:31:24 +00:00
silvio
4a50f2cff8 New italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3712 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 17:59:59 +00:00
pawel32640
d7aa6dd38c updated Polish translation - minor changes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3711 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 15:46:03 +00:00
scorpio810
747a2a9509 Diagram disable element snap To Grid by Qt::ControlModifier touch
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3710 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 12:43:13 +00:00
blacksun
e0cb854721 Remove some obselete elements.
Redraw some elements


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3709 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 10:22:40 +00:00
blacksun
170f76d3b8 Remove some obsolete elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3708 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-12 09:43:27 +00:00
pawel32640
57284260a4 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3707 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-11 16:32:30 +00:00
pawel32640
67d8188458 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3706 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-11 14:59:49 +00:00
scorpio810
7065b5c2bf Refresh element, thank Yannick
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3705 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-11 12:15:19 +00:00
scorpio810
eefa784800 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3704 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-11 09:00:58 +00:00
blacksun
ab1f02bc6b Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3703 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-11 08:27:39 +00:00
silvio
5e73294d9d FIX Italian translation of elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3702 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-10 21:33:59 +00:00
silvio
27b0fb5017 Italian translation of elements - updating
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3701 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-10 20:41:04 +00:00
scorpio810
f185186bee Minor fix elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3700 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-10 19:38:41 +00:00
scorpio810
53e41d9268 Fix multiple translation in elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3699 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-10 17:40:25 +00:00
scorpio810
96d87c27cc Element collection, fix minor errors
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3698 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-10 17:26:49 +00:00
scorpio810
3301fb1293 Element fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3697 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-09 17:03:42 +00:00
pawel32640
d4ad46299f updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3696 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-09 16:24:22 +00:00
scorpio810
5281a8392d Add new elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3695 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-09 13:41:14 +00:00
blacksun
9c6499813c Element editor : hover a primitve will highlight it with a blue halo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3694 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-09 08:57:40 +00:00
pawel32640
c5036dfb17 minor fixes elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3693 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-07 15:38:11 +00:00
aitolos
16664104cf Update elements Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3692 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-07 15:26:05 +00:00
silvio
296ebd3bf2 Italian translation of elements - updating
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3691 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-06 09:04:51 +00:00
scorpio810
61a51aa764 Apply patch to Paul elements archive for Netherlands translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3690 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 21:25:08 +00:00
scorpio810
9843114615 Minor change in qelectrotech.desktop
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3689 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 21:09:26 +00:00
scorpio810
8bfe516209 Qelectrotech.desktop: remove Encoding=UTF-8 and add Keywords
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3688 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 20:51:36 +00:00
scorpio810
dbd2c3707f When compressing man, do not save the time stamp by default
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3687 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 19:05:54 +00:00
silvio
91f0e8ed80 Italian translation of elements - updating
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3686 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 17:18:56 +00:00
pawel32640
8dc9ad63fd updated Polish translation - elements - error repair
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3685 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 15:30:31 +00:00
pawel32640
39a7d2b7f9 updated Polish translation - elements - completed
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3684 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 15:23:41 +00:00
pawel32640
035742e9e5 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3683 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 14:34:04 +00:00
scorpio810
bc71094cbd Chage splashscreen, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3682 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-05 13:03:59 +00:00
pawel32640
e6d655717b updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3681 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-04 20:12:07 +00:00
pawel32640
a967ce005c updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3680 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-04 18:38:49 +00:00
pawel32640
dccd28872a updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3679 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-04 17:48:27 +00:00
pawel32640
6a628f918d updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3678 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-04 15:41:11 +00:00
pawel32640
0571128120 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3677 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-04 14:16:28 +00:00
scorpio810
e3f47e162a Update Netherlands translations, thanks Paul
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3676 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-03 19:44:58 +00:00
scorpio810
4d3350a161 Updated French, English translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3675 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 23:34:49 +00:00
scorpio810
310006d90f Fix element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3674 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 13:40:31 +00:00
pawel32640
54f54c34f8 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3673 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 11:46:55 +00:00
pawel32640
09648ca6fa updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3672 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 10:56:29 +00:00
pawel32640
e09c31d7e8 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3671 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 10:40:43 +00:00
pawel32640
2577a2b197 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3670 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 10:00:25 +00:00
scorpio810
28c391077b Add new symbols, thanks
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3669 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-02 09:21:26 +00:00
pawel32640
651d37c536 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3666 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-01 11:14:27 +00:00
pawel32640
c893b5190a updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3665 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-01 10:53:48 +00:00
pawel32640
8d89a731d9 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3664 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-01 10:34:40 +00:00
pawel32640
79fbf1140a updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3663 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-01 10:12:54 +00:00
pawel32640
42b685f65f updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3662 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-02-01 09:52:48 +00:00
scorpio810
f85772df26 Update flemisch langue file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3661 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-31 16:02:03 +00:00
scorpio810
31b31fd9b0 Revert previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3660 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-31 15:57:41 +00:00
rdsivd
83a54c30c4 update flemisch langue file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3659 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-31 15:38:13 +00:00
pawel32640
3fe6f3fa4a minor fixes elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3658 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 11:29:36 +00:00
scorpio810
9602875807 Add new symbols
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3657 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 10:15:59 +00:00
scorpio810
27ebead763 Fix minor french typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3656 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 09:44:33 +00:00
pawel32640
f47e3ffcef minor fixes elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3655 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 09:24:37 +00:00
pawel32640
7295659ec1 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3654 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 09:20:34 +00:00
pawel32640
daffb1c224 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3653 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 08:56:16 +00:00
pawel32640
5bbd562c53 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3652 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-30 08:16:28 +00:00
aitolos
fa4681f272 Update elements Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3651 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 18:29:59 +00:00
aitolos
ff5770f961 Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3650 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 17:30:12 +00:00
scorpio810
fe860c4a2f Fix Multiple translation in elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3649 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 13:12:12 +00:00
pawel32640
c9175b65d7 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3648 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 11:45:08 +00:00
pawel32640
7c9d5b2c1c updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3647 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 11:00:19 +00:00
pawel32640
25e72322f9 updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3646 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 09:51:17 +00:00
pawel32640
fc3e3b738e updated Polish translation - elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3645 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 09:32:35 +00:00
pawel32640
99c12e5ebb updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3644 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-29 09:12:07 +00:00
scorpio810
c15795030f Refresh element collection
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3643 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 23:15:40 +00:00
scorpio810
fe42313b17 Fix Multiple translation in elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3642 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 22:55:48 +00:00
scorpio810
93d11320af Delete duplicate files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3641 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 22:36:48 +00:00
scorpio810
5a295b6582 Change element collection directory by collection revamped by Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3640 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 21:31:51 +00:00
pavelfric
05585827ef Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3639 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 21:19:12 +00:00
scorpio810
838f5ea981 Update German translation, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3638 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-28 10:20:37 +00:00
pawel32640
d604831806 updated Polish translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3637 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 22:14:40 +00:00
silvio
0bc3940f6b upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3636 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 22:04:46 +00:00
scorpio810
b8859217f4 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3635 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 21:47:28 +00:00
scorpio810
166382c18e Minor: typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3634 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 21:36:56 +00:00
scorpio810
85fba587bc Minor: fix french typo
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3633 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 21:33:12 +00:00
scorpio810
8179f96529 Update German translation, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3632 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 11:11:02 +00:00
blacksun
385d72a94b Clean some code (related to element editor)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3631 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-27 10:37:03 +00:00
blacksun
5e58524cac Master element : bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3630 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-26 22:32:55 +00:00
blacksun
f2f52a3f41 Fix error from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3629 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-26 09:06:17 +00:00
blacksun
d40f2c23b1 Element editor : move all graphics part in a single directory
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3628 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-26 08:55:43 +00:00
blacksun
6256468c8e Add auto conductor even if movement is null
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3627 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-23 14:35:49 +00:00
blacksun
c1d20ca091 terminal -> help line : minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3626 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-23 14:12:03 +00:00
pawel32640
9531a094a3 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3625 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-20 15:20:30 +00:00
scorpio810
1e866d6b7b Fix german translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3624 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 18:09:41 +00:00
aitolos
714edf6ebe Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3623 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 16:39:47 +00:00
scorpio810
a861014ca7 Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3622 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 12:13:27 +00:00
scorpio810
5efc114e7b All help line have the same visual rendering
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3621 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 11:52:10 +00:00
scorpio810
ef43266954 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3620 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 10:51:10 +00:00
scorpio810
419be89382 Help line cosmetic changes
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3619 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-19 00:12:05 +00:00
pawel32640
13c6ce48ae updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3618 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-18 19:15:27 +00:00
pawel32640
bcabd140a0 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3617 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-18 19:06:56 +00:00
pawel32640
396ebce967 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3616 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-18 18:18:32 +00:00
blacksun
21a62066a2 Element : add new help line (perpendicular to terminal)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3615 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-18 11:28:56 +00:00
blacksun
6ac8a3f610 Fix regression provided by rev 3604
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3614 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-18 10:27:36 +00:00
pawel32640
b2f83d3331 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3613 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-17 20:15:32 +00:00
pawel32640
38cdb40a94 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3612 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-17 19:36:16 +00:00
pawel32640
673555f91a updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3611 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-17 14:30:09 +00:00
pawel32640
776a426ca6 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3610 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-17 13:58:40 +00:00
scorpio810
8db5b74980 Minor change auto conductor icon
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3609 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-14 11:52:41 +00:00
silvio
ffd83c7e4e upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3608 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 22:55:36 +00:00
pawel32640
21452946b6 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3607 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 21:55:25 +00:00
pawel32640
f7e284b659 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3606 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 21:10:56 +00:00
rdsivd
a0fc9163f6 update be langue
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3605 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 20:54:21 +00:00
blacksun
78a1b56d7e Conductor : extend terminal return a point snapped to the diagram grid
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3604 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 20:39:58 +00:00
pawel32640
e58eb2a30a updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3603 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 20:23:42 +00:00
pawel32640
7b3cfa8345 updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3602 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 19:51:55 +00:00
pawel32640
01c4542cbd updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3601 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 18:04:01 +00:00
pawel32640
fa448c0cdb updated Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3600 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 15:37:37 +00:00
scorpio810
56b63123ec Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3599 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 14:44:49 +00:00
scorpio810
4d196fb7bf Disable show me: when attach link to previous link and set equipotential liaison
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3598 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 14:39:46 +00:00
blacksun
3154a1bdae Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3597 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 11:31:53 +00:00
blacksun
811142bff7 Add button to disable/enable auto conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3596 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 11:10:57 +00:00
blacksun
8079b2e83a Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3595 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-11 08:50:36 +00:00
blacksun
3e80f7076f Finish a move element with free terminal aligned with other terminal from other element, will create auto creation of conductor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3594 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-09 17:18:16 +00:00
blacksun
f782976fa7 Qet graphics item : disable context menu from view when right button is holded
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3593 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-08 18:59:23 +00:00
blacksun
de096fef23 Move element display help line
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3592 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-07 19:35:42 +00:00
blacksun
ceb2b9bcfd Add help line for assist alignement of element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3591 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-07 19:21:17 +00:00
scorpio810
16e17438d2 lrelease qet_be
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3590 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-03 14:40:01 +00:00
silvio
dc31c745ac Italian translation of elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3589 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-03 13:18:50 +00:00
rdsivd
40c0ab6250 update langue be
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3584 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-03 09:37:02 +00:00
scorpio810
5249fbb800 Minor refresh example
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3583 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-03 07:20:25 +00:00
scorpio810
0e8a3312d5 Add new symbols, thanks Liptus and all
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3582 bfdf4180-ca20-0410-9c96-a3a8aa849046
2015-01-01 06:42:39 +00:00
scorpio810
6e7e895bae Fix FTBS on OS2, thank Elbert for tests
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3581 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-31 12:04:54 +00:00
blacksun
991a9bfbc9 Minor change : Change behavior of shape creation in diagram editor, to be same has element editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3580 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-29 23:18:00 +00:00
pavelfric
0e3593e600 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3579 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-28 19:19:49 +00:00
pavelfric
72dbc2e914 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3578 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-28 18:54:16 +00:00
pavelfric
70048ba653 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3577 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-28 18:50:02 +00:00
scorpio810
b5a7747523 Bug fix: when attach link to previous link and set equipotential liaison, now isn't going to the view in origin link
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3576 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-28 03:53:12 +00:00
silvio
cd437d689f upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3575 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-27 21:29:57 +00:00
pawel32640
38bc2f7a51 update Polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3574 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-27 14:17:06 +00:00
scorpio810
5ec7ea194f Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3572 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-27 13:39:51 +00:00
blacksun
a3525b466d QETDiagramEditor : clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3571 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-26 19:41:00 +00:00
scorpio810
f93b0817d6 Prepare for release candidate 2 tag
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3570 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-26 17:09:25 +00:00
blacksun
27f6b6c929 Remove information about internal connection in element editor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3569 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-23 19:08:29 +00:00
blacksun
2c4af2b128 Remove all information about internal connection in element (obselete since internal connection is always allowed)
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3568 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-23 19:00:37 +00:00
scorpio810
10d086d378 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3567 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-23 02:06:36 +00:00
scorpio810
bcbf6ba431 Bug fix: disable entry edit text field for html editor for elements text in diagram
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3566 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-23 01:51:17 +00:00
blacksun
dfacacfdce Read only is no more managed for each diagram but for the whole project
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3565 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-21 13:17:35 +00:00
blacksun
a5b1a92beb Diagram : Constructor need a QETProject
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3564 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-21 12:50:26 +00:00
blacksun
8477d4d928 Diagram view : diagram isn't anymore optional in constructor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3563 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-21 12:15:45 +00:00
blacksun
2147fca19b Generic panel : Fix wrong index when move diagram by x10
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3562 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-19 19:55:53 +00:00
blacksun
cf868a0cc8 When unlink an element, make sure this element isn't highlighted
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3561 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-19 19:18:05 +00:00
blacksun
51d40f9fcd Report element : minor improvement about text (text used to display the position of linked report is now tagged "label")
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3560 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-18 10:51:08 +00:00
rdsivd
11bf04390e Adapte langue be-nl
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3559 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-17 18:07:39 +00:00
pawel32640
ed263bb180 update polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3558 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 23:01:31 +00:00
silvio
0dd3386ec4 upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3557 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 21:59:14 +00:00
blacksun
e2211389e9 Minor clean code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3556 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 21:52:27 +00:00
blacksun
0e9dc51879 Conductor text item : minor bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3555 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 21:30:58 +00:00
blacksun
3c94d9a054 Minor improvment : over element, highlight every linked elements
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3554 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 18:51:49 +00:00
aitolos
d385c6f8cf Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3553 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 17:56:01 +00:00
scorpio810
164b442871 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3552 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 17:08:26 +00:00
scorpio810
83733f2dc6 Add new action DiagramMoveDownx10, DiagramMoveUpx10
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3551 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 17:01:11 +00:00
blacksun
0cc1424f90 Minor improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3550 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 15:14:24 +00:00
blacksun
15261ba896 element text item : improve mouse double clic.
Over text (Only if tagged label or parent are report) will higlight element linked to parent element


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3549 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 14:36:12 +00:00
blacksun
1acf132128 forget file from previous comit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3548 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 13:43:16 +00:00
blacksun
5e935a976e Minor change according to the evolution of Qt class (remove QGraphicsScene from constructor of QGraphicsItem).
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3547 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-14 13:06:21 +00:00
blacksun
62fa93ea1b Element text item -> mouse double click : If parent element is linked to other element,
show the other element (only work for report and salve element)


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3546 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-13 14:01:09 +00:00
blacksun
57edc4be80 Sort value of search field in dialog to link report/master
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3545 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-12 18:39:12 +00:00
blacksun
6ec416c351 Remove unused code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3544 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-12 13:27:13 +00:00
blacksun
40ecef5ff9 Minor improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3543 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-12 13:04:16 +00:00
blacksun
77164adf4b Change element information is now managed by an undo command
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3542 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-11 20:10:28 +00:00
blacksun
60dd0f2054 Save icon is disable when undo stack is empty
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3541 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-10 17:00:08 +00:00
silvio
575a731819 upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3540 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-08 20:18:30 +00:00
blacksun
e4c73b8666 Cross ref item : change how some methods work
Master element : minor change related to the change of cross ref item


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3539 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-08 17:39:57 +00:00
pawel32640
cfe267fcb3 update polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3538 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-08 17:25:41 +00:00
scorpio810
931c7811f3 Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3537 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-08 09:41:50 +00:00
scorpio810
af5563c760 Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3536 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-07 16:43:31 +00:00
scorpio810
4de19d8ae4 Element editor improve pinch to zoom
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3535 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-07 16:32:14 +00:00
blacksun
5ab965588b Fix artefact on qgraphics scene when remove a linked element
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3534 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-07 15:47:58 +00:00
scorpio810
438f98d34b Element editor add touchpad gestures, thank Yoann
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3533 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-06 17:56:07 +00:00
blacksun
74b1270d0d Conductor auto numerotation : use function from QET namespace instead of function from this file.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3532 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-04 23:25:49 +00:00
blacksun
9119d156c3 Comment item & cross ref item : reduce the size of the rectangle where is display the comment for better visual
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3531 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-04 23:14:20 +00:00
blacksun
8070f7eedb Forget file from previous commit
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3530 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-04 10:57:21 +00:00
blacksun
bc0d70e1ea Report link widget : each content show the string of the conductor and search field filter with this string.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3529 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-04 10:54:38 +00:00
blacksun
257cc7e91f Minor improvement
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3528 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-12-03 10:45:16 +00:00
blacksun
8e6a796ba8 element information : add info 'designation'
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3527 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-30 11:53:23 +00:00
scorpio810
bdadd33697 Update MacQetDeploy.sh, thank yoann
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3526 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-28 21:41:16 +00:00
blacksun
f6f0c2106f Qetdiagrameditor : tabify undo and element panel dock widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3525 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-28 18:14:33 +00:00
blacksun
67680f59a9 clean some code about undo stack
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3524 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-27 18:46:30 +00:00
blacksun
1c7892cc19 clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3523 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-27 17:57:10 +00:00
blacksun
c890e67ddd Remove obsolete method
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3522 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-27 17:47:01 +00:00
blacksun
8c321049d9 Bug fix
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3521 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-26 22:44:33 +00:00
blacksun
afdf20cf9f Delete an element linked to others unlink it.
Undo this action relink other element elements 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3520 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-26 22:05:37 +00:00
scorpio810
0876d2c549 Add a progress bar on save file action
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3519 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-26 18:48:24 +00:00
scorpio810
223674c93e Update German translations, thank Nuri
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3518 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-26 14:10:00 +00:00
blacksun
9f4fbe456f Bug fix for terminal primtive : the rotation of terminal isn't save
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3517 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-25 05:45:50 +00:00
silvio
308b3a99d7 upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3516 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 22:03:35 +00:00
blacksun
e8cbb23c0b Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3515 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 18:17:20 +00:00
scorpio810
40a36e069e Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3514 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 18:00:37 +00:00
scorpio810
5a951d94d6 Minor: add forget setRenderHint(QPainter::Antialiasing, false);
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3513 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 17:51:13 +00:00
blacksun
dec5d3002c QetShapeItem : improve mouse interaction
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3512 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 17:36:02 +00:00
scorpio810
80e78b4e04 Minor, refresh TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3511 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 03:00:36 +00:00
scorpio810
438d690edc Improve status bar about save information
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3510 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-24 02:51:08 +00:00
pawel32640
547ae24252 update polish translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3509 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-23 20:10:09 +00:00
aitolos
72ea869f63 Update Greek translation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3508 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-23 16:57:01 +00:00
pavelfric
3c77a34b32 Updated Czech translations
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3507 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-23 14:05:35 +00:00
scorpio810
c744721aad Remove save information box
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3506 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-23 11:12:54 +00:00
silvio
10a94b2a5a upgraded Italian translation of .ts file
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3505 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-23 00:03:22 +00:00
scorpio810
dacfd4117f Update TS files
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3504 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-22 20:14:03 +00:00
scorpio810
48051a17de Minor: add message box for inform user as project was saved
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3503 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-22 20:03:38 +00:00
alfredo
a3ce7cbfbc update Spanish translation _es
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3500 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-20 05:38:02 +00:00
blacksun
a0ba343951 Element information : Check box "visible" for text re-work.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3499 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-18 23:00:06 +00:00
blacksun
46100f0d94 Conductor: Paste a conductor reset the text
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3498 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-17 22:32:06 +00:00
blacksun
f4bd29a5db Diagram folio sheet fix minor bug : create folio sheet isn't added in order in project.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3497 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-17 10:10:00 +00:00
blacksun
066c373365 Fix crash : When remove a diagram from project, close project, and open a project, Qet crash.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3496 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-16 23:24:30 +00:00
scorpio810
499f52e100 Enable mouse hoverMoveEvent conductor
Minor change in conductorpropertieswidget.ui


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3494 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-16 20:51:46 +00:00
scorpio810
d544fd3d85 Revert r3492
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3493 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-16 20:32:55 +00:00
runsys
02df8a5073 Download patch
Init branch

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3492 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-16 20:27:11 +00:00
runsys
e2f6e232ee Light change in user interface
When mouse over a element, coonductor, text, the graphic symbol draw his bounding box.
and draw a tooltip with his name
For conductor the conductor size change.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3490 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-16 14:15:32 +00:00
scorpio810
6f23bea143 Folio list moving to the second page
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3489 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-15 17:15:43 +00:00
scorpio810
e079fc1aac Update MacQetDeploy script, thanks Yoann
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3488 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-14 20:44:17 +00:00
blacksun
aeecb4c816 Fix wrong behavior with conductor text item when use "past here"
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3487 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-14 19:58:25 +00:00
blacksun
3be20f27bb conductor : remove qdebug
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3486 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-14 13:10:43 +00:00
blacksun
78b57e56e8 Conductor and conductor text item : minor change about how the text is save to xml
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3485 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-14 13:06:24 +00:00
blacksun
5f9251a22e Conductor : fix weird bug (not so weird when found) with the position of text item when was moved by user
and also  the two element linked by the conductor was moved.


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3484 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-13 19:32:56 +00:00
blacksun
70cc553ba0 Diagram image item fix : At opening of diagram, position is wrong if image was saved with is_movable to false;
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3483 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-13 12:12:53 +00:00
scorpio810
b83834e7ff Minor change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3482 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-13 11:21:06 +00:00
scorpio810
bb4a9c0314 Save and read "is movable" attribute to xml for basic shape & image
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3481 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-13 11:04:34 +00:00
scorpio810
74aedf605f Minor:shape event, cosmetic change
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3480 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-12 14:44:50 +00:00
blacksun
d248e02e4a element editor : clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3479 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-11 17:09:24 +00:00
blacksun
031c0fc155 element editor : create primitive isn't selected anymore.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3478 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-11 14:05:45 +00:00
blacksun
ec288f4885 element editor : clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3477 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-11 12:02:08 +00:00
blacksun
848be587e3 Element editor : clean some code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3476 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-10 22:57:32 +00:00
blacksun
e8d6d4de5d Element editor: add terminal is managed by esevent
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3475 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-11-10 21:47:28 +00:00
4214 changed files with 659721 additions and 310558 deletions

67
.clang-format Normal file
View File

@ -0,0 +1,67 @@
---
BasedOnStyle: LLVM
AlignAfterOpenBracket: AlwaysBreak
AlignConsecutiveMacros: 'true'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
AlignEscapedNewlines: Right
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'false'
AllowAllConstructorInitializersOnNextLine: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'true'
AllowShortBlocksOnASingleLine: 'true'
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Always
AllowShortLambdasOnASingleLine: All
AllowShortLoopsOnASingleLine: 'true'
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: 'true'
AlwaysBreakTemplateDeclarations: 'Yes'
BinPackArguments: 'false'
BinPackParameters: 'false'
BreakAfterJavaFieldAnnotations: 'true'
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: 'false'
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterColon
BreakStringLiterals: 'true'
ColumnLimit: '80'
CompactNamespaces: 'false'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
Cpp11BracedListStyle: 'true'
FixNamespaceComments: 'true'
IncludeBlocks: Regroup
IndentCaseLabels: 'false'
IndentPPDirectives: AfterHash
IndentWidth: '4'
JavaScriptWrapImports: 'true'
Language: Cpp
MaxEmptyLinesToKeep: '1'
NamespaceIndentation: All
PointerAlignment: Left
ReflowComments: 'true'
SortIncludes: 'true'
SortUsingDeclarations: 'true'
SpaceAfterCStyleCast: 'true'
SpaceAfterLogicalNot: 'true'
SpaceAfterTemplateKeyword: 'true'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeCpp11BracedList: 'true'
SpaceBeforeCtorInitializerColon: 'true'
SpaceBeforeInheritanceColon: 'true'
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: 'true'
SpaceInEmptyParentheses: 'false'
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInContainerLiterals: 'false'
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
Standard: Cpp11
TabWidth: '4'
UseTab: Always
...

22
.github/workflows/publish-edge-snap.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Publish Edge Snap
on:
push:
branches:
- master
jobs:
publish_amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: snapcore/action-build@v1
id: build
- uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
with:
snap: ${{ steps.build.outputs.snap }}
release: stable

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
*.snap
.flatpak-builder
# Qt build output
*.user
# doxygen Doxyfile output
doc/
QElectroTech.tag

10
.gitmodules vendored Normal file
View File

@ -0,0 +1,10 @@
[submodule "pugixml"]
path = pugixml
url = https://github.com/zeux/pugixml.git
[submodule "SingleApplication"]
path = SingleApplication
url = https://github.com/itay-grudev/SingleApplication.git
[submodule "elements"]
path = elements
url = https://github.com/qelectrotech/qelectrotech-elements.git

154
CMakeLists.txt Normal file
View File

@ -0,0 +1,154 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
include(cmake/hoto_update_cmake_message.cmake)
cmake_minimum_required(VERSION 3.14...3.19 FATAL_ERROR)
project(qelectrotech
VERSION 0.9.0
DESCRIPTION "QET is a CAD/CAE editor focusing on schematics drawing features."
HOMEPAGE_URL "https://qelectrotech.org/"
LANGUAGES CXX)
include(cmake/copyright_message.cmake)
set(QET_DIR ${PROJECT_SOURCE_DIR})
# Add sub directories
option(PACKAGE_TESTS "Build the tests" ON)
if(PACKAGE_TESTS)
message("Add sub directory tests")
add_subdirectory(tests)
endif()
include(cmake/paths_compilation_installation.cmake)
include(cmake/start_options.cmake)
include(cmake/developer_options.cmake)
include(cmake/git_update_submodules.cmake)
include(cmake/git_last_commit_sha.cmake)
include(cmake/fetch_kdeaddons.cmake)
include(cmake/fetch_singleapplication.cmake)
include(cmake/fetch_pugixml.cmake)
include(cmake/qet_compilation_vars.cmake)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
SET(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(
QT
NAMES
Qt6
Qt5
COMPONENTS
${QET_COMPONENTS}
REQUIRED
)
find_package(
Qt${QT_VERSION_MAJOR}
COMPONENTS
${QET_COMPONENTS}
REQUIRED)
set(CMAKE_AUTOUIC_SEARCH_PATHS ${QET_DIR}/sources/ui)
qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES})
set_source_files_properties(${TS_FILES} PROPERTIES OUTPUT_LOCATION "${QET_DIR}/lang")
qt5_add_translation(QM_FILES ${TS_FILES})
# als laatse
include(cmake/define_definitions.cmake)
add_executable(
${PROJECT_NAME}
${QET_RES_FILES}
${QET_SRC_FILES}
${QM_FILES}
${QET_DIR}/qelectrotech.qrc
)
target_link_libraries(
${PROJECT_NAME}
PUBLIC
PRIVATE
pugixml::pugixml
SingleApplication::SingleApplication
${KF5_PRIVATE_LIBRARIES}
${QET_PRIVATE_LIBRARIES}
)
target_include_directories(
${PROJECT_NAME}
PRIVATE
${QET_DIR}/sources/titleblock
${QET_DIR}/sources/ui
${QET_DIR}/sources/qetgraphicsitem
${QET_DIR}/sources/qetgraphicsitem/ViewItem
${QET_DIR}/sources/qetgraphicsitem/ViewItem/ui
${QET_DIR}/sources/richtext
${QET_DIR}/sources/factory
${QET_DIR}/sources/properties
${QET_DIR}/sources/dvevent
${QET_DIR}/sources/editor
${QET_DIR}/sources/editor/esevent
${QET_DIR}/sources/editor/graphicspart
${QET_DIR}/sources/editor/ui
${QET_DIR}/sources/editor/UndoCommand
${QET_DIR}/sources/undocommand
${QET_DIR}/sources/diagramevent
${QET_DIR}/sources/ElementsCollection
${QET_DIR}/sources/ElementsCollection/ui
${QET_DIR}/sources/autoNum
${QET_DIR}/sources/autoNum/ui
${QET_DIR}/sources/ui/configpage
${QET_DIR}/sources/SearchAndReplace
${QET_DIR}/sources/SearchAndReplace/ui
${QET_DIR}/sources/NameList
${QET_DIR}/sources/NameList/ui
${QET_DIR}/sources/utils
${QET_DIR}/pugixml/src
${QET_DIR}/sources/dataBase
${QET_DIR}/sources/dataBase/ui
${QET_DIR}/sources/factory/ui
${QET_DIR}/sources/print
)
install(TARGETS ${PROJECT_NAME})
if (NOT MINGW)
install(DIRECTORY ico/breeze-icons/16x16 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/22x22 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/32x32 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/48x48 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/64x64 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/128x128 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY ico/breeze-icons/256x256 DESTINATION ${QET_ICONS_PATH})
install(DIRECTORY elements DESTINATION share/qelectrotech)
install(DIRECTORY examples DESTINATION share/qelectrotech)
install(DIRECTORY titleblocks DESTINATION share/qelectrotech)
install(FILES LICENSE ELEMENTS.LICENSE CREDIT README ChangeLog DESTINATION share/doc/qelectrotech)
install(FILES misc/org.qelectrotech.qelectrotech.desktop DESTINATION share/applications)
install(FILES misc/qelectrotech.xml DESTINATION share/mime/packages)
install(FILES misc/qelectrotech.appdata.xml DESTINATION ${QET_APPDATA_PATH})
install(FILES ${QM_FILES} DESTINATION ${QET_LANG_PATH})
endif()

121
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,121 @@
# How to contribute
I'm really glad you're reading this,
because we need volunteer developers to help
this project come to fruition.
Here are some important resources:
* [Qet code style](https://qelectrotech.org/wiki_new/doc/qt_creator#on_ajoute_le_style_de_code_qet)
* [git Documentation](https://git-scm.com/doc)
## Testing
## Submitting changes
Always write a clear log message for your commits.
One-line messages are fine for small changes,
but bigger changes should look like this:
$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."
* It is always appropriate to keep the commits small.
* For major changes it is recommended to use branches.
### Interactive Staging
https://git-scm.com/book/en/v2/Git-Tools-Interactive-Staging
issue: you have modified a class but you want to write it in 2 commits
´git add -p´ or ´git add -i´
/qet> git add -i
staged unstaged path
1: unchanged +1/-1 sources/diagram.cpp
*** Commands ***
1: status 2: update 3: revert 4: add untracked
5: patch 6: diff 7: quit 8: help
What now> 5
staged unstaged path
1: unchanged +1/-1 sources/diagram.cpp
Patch update>> 1
staged unstaged path
* 1: unchanged +1/-1 sources/diagram.cpp
Patch update>>
diff --git a/sources/diagram.cpp b/sources/diagram.cpp
index bffca653f..9bd2280f7 100644
--- a/sources/diagram.cpp
+++ b/sources/diagram.cpp
@@ -103,9 +103,9 @@ Diagram::Diagram(QETProject *project) :
connect(&border_and_titleblock,
&BorderTitleBlock::titleBlockFolioChanged,
this, &Diagram::updateLabels);
- connect(this, &Diagram::diagramActivated,
+ foo(do_a);
- adjust(diagramActivated);
+ bar(do_c);
adjustSceneRect();
}
(1/1) Stage this hunk [y,n,q,a,d,s,e,?]? s
Split into 2 hunks.
@@ -103,5 +103,5 @@
connect(&border_and_titleblock,
&BorderTitleBlock::titleBlockFolioChanged,
this, &Diagram::updateLabels);
- connect(this, &Diagram::diagramActivated,
+ foo(do_a);
(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? y
@@ -107,5 +107,5 @@
this, &Diagram::loadElmtFolioSeq);
- adjust(diagramActivated);
+ bar(do_c);
adjustSceneRect();
}
(2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? n
*** Commands ***
1: status 2: update 3: revert 4: add untracked
5: patch 6: diff 7: quit 8: help
What now>What now>7
Bye.
git commit -m "Mod Signal Slot to funsion"
## Coding conventions
Start reading our code and you'll get the hang of it.
We optimize for readability:
* We use tabs to indent, and interpret tabs as taking up to 8 spaces.
see https://qelectrotech.org/wiki_new/doc/qt_creator#on_ajoute_le_style_de_code_qet
* We try to keep to at most 80 characters per line.
* Try to make your code understandable.
You may put comments in, but comments invariably tend to stale out when
the code they were describing changes.
Often splitting a function into two
makes the intention of the code much clearer.
Thanks,
QElectroTech

44
CREDIT
View File

@ -1,7 +1,5 @@
[en] [en]
Thanks to Qt Software for their Qt library ( http://www.qtsoftware.com/ ), licensed under GNU/GPL. Thanks to Qt Software for their Qt library ( http://www.qtsoftware.com/ ), licensed under GNU/GPL.
Thanks to Everaldo Coelho for the Crystal SVG icons theme ( http://www.iconfinder.com/iconsets/crystalproject) licensed under LGPL.
Thanks to Nuno Pinheiro for the Oxygen icons theme ( http://www.oxygen-icons.org/ ) licensed under LGPL but also for the QElectroTech-dedicated icons.
Thanks to the KDE project ( http://www.kde.org/ ). Thanks to the KDE project ( http://www.kde.org/ ).
Thanks to Loic for his mathematics-related explanations. Thanks to Loic for his mathematics-related explanations.
Thanks to Remi Collet for the Fedora packaging. Thanks to Remi Collet for the Fedora packaging.
@ -10,7 +8,7 @@ Thanks to `trem' for the Mandriva packaging.
Thanks to TuxFamily ( http://tuxfamily.org/ ) for hosting the project. Thanks to TuxFamily ( http://tuxfamily.org/ ) for hosting the project.
Thanks to `Nishiki' for his elements and his support. Thanks to `Nishiki' for his elements and his support.
Thanks to qtcentre.org for their SingleApplication class. Thanks to qtcentre.org for their SingleApplication class.
Thanks to Alfredo Carreto for his Spanish translations and fixing Spanish translations ( http://electronicosmx.comxa.com ) Thanks to Alfredo Carreto for his Spanish translations and fixing Spanish translations ( http://electronicosmx.net )
Thanks to 'Dr.Slump' and Sivio for their translations in Italian Thanks to 'Dr.Slump' and Sivio for their translations in Italian
Thanks to Jose Carlos Martins for his translations in Portuguese Thanks to Jose Carlos Martins for his translations in Portuguese
Thanks to Pavel Fric for his translations in Czech Thanks to Pavel Fric for his translations in Czech
@ -32,8 +30,6 @@ Thanks to Mrbit for ebuild Gentoo packaging.
[fr] [fr]
Merci à Qt Software pour la bibliothèque Qt ( http://www.qtsoftware.com/ ), sous licence GNU/GPL. Merci à Qt Software pour la bibliothèque Qt ( http://www.qtsoftware.com/ ), sous licence GNU/GPL.
Merci à Everaldo Coelho pour le thème d'icônes Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject ) sous licence LGPL.
Merci à Nuno Pinheiro pour le thème d'icônes Oxygen ( http://www.oxygen-icons.org/ ) sous licence LGPL mais aussi pour les icônes dédiées à QElectroTech
Merci au projet KDE ( http://www.kde.org/ ). Merci au projet KDE ( http://www.kde.org/ ).
Merci à Loic pour ses explications d'ordre mathématique. Merci à Loic pour ses explications d'ordre mathématique.
Merci à Remi Collet pour les paquets Fedora. Merci à Remi Collet pour les paquets Fedora.
@ -42,7 +38,7 @@ Merci à `trem' pour les paquets Mandriva.
Merci à TuxFamily ( http://tuxfamily.org/ ) pour l'hébergement du projet. Merci à TuxFamily ( http://tuxfamily.org/ ) pour l'hébergement du projet.
Merci à `Nishiki' pour ses éléments et son soutien. Merci à `Nishiki' pour ses éléments et son soutien.
Merci à qtcentre.org pour leur classe SingleApplication. Merci à qtcentre.org pour leur classe SingleApplication.
Merci à Alfredo Carreto pour ses traductions et corrections en espagnol ( http://electronicosmx.comxa.com ) Merci à Alfredo Carreto pour ses traductions et corrections en espagnol ( http://electronicosmx.net )
Merci à 'Dr.Slump' et Sivio pour leurs traductions en italien Merci à 'Dr.Slump' et Sivio pour leurs traductions en italien
Merci à Jose Carlos Martins pour ses traductions en portugais Merci à Jose Carlos Martins pour ses traductions en portugais
Merci à Pavel Fric pour ses traductions en Tchèque Merci à Pavel Fric pour ses traductions en Tchèque
@ -64,8 +60,6 @@ Merci à Mrbit for ebuild les paquets Gentoo
[ru] [ru]
Спасибо Qt Software за их библиотеку Qt ( http://www.qtsoftware.com/ ), лицензированную на условиях GNU/GPL. Спасибо Qt Software за их библиотеку Qt ( http://www.qtsoftware.com/ ), лицензированную на условиях GNU/GPL.
Спасибо Everaldo Coelho за тему значков Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject ) лицензированную на условиях LGPL.
Спасибо Nuno Pinheiro за тему значков Oxygen ( http://www.oxygen-icons.org/ ) лицензированную на условиях LGPL, а также за значки связанные с QElectroTech.
Спасибо проекту KDE ( http://www.kde.org/ ). Спасибо проекту KDE ( http://www.kde.org/ ).
Спасибо Loic за объяснения связанные с математикой. Спасибо Loic за объяснения связанные с математикой.
Спасибо Remi Collet за пакет для Fedora. Спасибо Remi Collet за пакет для Fedora.
@ -74,13 +68,11 @@ Merci à Mrbit for ebuild les paquets Gentoo
Спасибо TuxFamily ( http://tuxfamily.org/ ) за хостинг для проекта. Спасибо TuxFamily ( http://tuxfamily.org/ ) за хостинг для проекта.
Спасибо `Nishiki' за элементы и поддержку. Спасибо `Nishiki' за элементы и поддержку.
Спасибо qtcentre.org за их класс SingleApplication. Спасибо qtcentre.org за их класс SingleApplication.
Спасибо Alfredo Carreto за исправления и перевод на испанский ( http://electronicosmx.comxa.com ) Спасибо Alfredo Carreto за исправления и перевод на испанский ( http://electronicosmx.net )
Спасибо 'Dr.Slump' за исправления и перевод Спасибо 'Dr.Slump' за исправления и перевод
[pt] [pt]
Agradecimentos a Qt Software pela sua biblioteca Qt ( http://www.qtsoftware.com/ ), licenciada de acordo com a GNU/GPL. Agradecimentos a Qt Software pela sua biblioteca Qt ( http://www.qtsoftware.com/ ), licenciada de acordo com a GNU/GPL.
Agradecimentos a Everaldo Coelho pelo tema de ícones Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject ), licenciado de acordo com a LGPL.
Agradecimentos a Nuno Pinheiro pelo tema de ícones Oxygen e em especial pelos ícones dedicados ao programa QElectroTech ( http://www.oxygen-icons.org/ ), lincenciado de acordo com a LGPL.
Agradecimentos ao projecto KDE ( http://www.kde.org/ ). Agradecimentos ao projecto KDE ( http://www.kde.org/ ).
Agradecimentos a Loic pelas suas explicações relacionadas com problemas matemáticos. Agradecimentos a Loic pelas suas explicações relacionadas com problemas matemáticos.
Agradecimentos a Remi Collet pela criação dos pacotes para Fedora. Agradecimentos a Remi Collet pela criação dos pacotes para Fedora.
@ -89,13 +81,11 @@ Agradecimentos a "trem" pela criação dos pacotes para Mandriva.
Agradecimentos a TuxFamily ( http://tuxfamily.org/ ) por albergarem este projecto. Agradecimentos a TuxFamily ( http://tuxfamily.org/ ) por albergarem este projecto.
Agradecimentos a "Nishiki" pela criação de elementos e o seu suporte. Agradecimentos a "Nishiki" pela criação de elementos e o seu suporte.
Agradecimentos a qtcentre.org pela classe SingleApplication. Agradecimentos a qtcentre.org pela classe SingleApplication.
Agradecimentos a Alfredo Carreto pela tradução para Espanhol e pela correcção de traduções em Espanhol ( http://electronicosmx.comxa.com ). Agradecimentos a Alfredo Carreto pela tradução para Espanhol e pela correcção de traduções em Espanhol ( http://electronicosmx.net ).
Agradecimentos a 'Dr.Slump'pela tradução para italiano Agradecimentos a 'Dr.Slump'pela tradução para italiano
[es] [es]
Agradecimientos a Qt Software por su biblioteca Qt ( http://www.qtsoftware.com/ ), licenciada bajo GNU/GPL. Agradecimientos a Qt Software por su biblioteca Qt ( http://www.qtsoftware.com/ ), licenciada bajo GNU/GPL.
Agradecimientos a Everaldo Coelho por el tema de icónos Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject ), licenciado bajo LGPL.
Agradecimientos a Nuno Pinheiro por el tema de icónos Oxygen y especialmente por los icónos dedicados al programa QElectroTech ( http://www.oxygen-icons.org/ ), licenciado bajo LGPL.
Agradecimientos al proyecto KDE ( http://www.kde.org/ ). Agradecimientos al proyecto KDE ( http://www.kde.org/ ).
Agradecimientos a Loic por sus explicaciones relacionadas con problemas matemáticos. Agradecimientos a Loic por sus explicaciones relacionadas con problemas matemáticos.
Agradecimientos a Remi Collet por criación de paquetes para Fedora. Agradecimientos a Remi Collet por criación de paquetes para Fedora.
@ -104,13 +94,11 @@ Agradecimientos a "trem" por creación de paquetes para Mandriva.
Agradecimientos a TuxFamily ( http://tuxfamily.org/ ) por el alojamiento de este proyecto. Agradecimientos a TuxFamily ( http://tuxfamily.org/ ) por el alojamiento de este proyecto.
Agradecimientos a "Nishiki" por creación de elementos e de su suporte. Agradecimientos a "Nishiki" por creación de elementos e de su suporte.
Agradecimientos a qtcentre.org por classe SingleApplication. Agradecimientos a qtcentre.org por classe SingleApplication.
Agradecimientos a Alfredo Carreto por sus traducciones en español y correcciones de traducción en español ( http://electronicosmx.comxa.com) Agradecimientos a Alfredo Carreto por sus traducciones en español y correcciones de traducción en español ( http://electronicosmx.net)
Agradecimientos a 'Dr.Slump' por sus traducciones en italiano Agradecimientos a 'Dr.Slump' por sus traducciones en italiano
[cs] [cs]
Díky Qt Software za jejich knihovnu Qt ( http://www.qtsoftware.com/ ), pod licencí GNU/GPL. Díky Qt Software za jejich knihovnu Qt ( http://www.qtsoftware.com/ ), pod licencí GNU/GPL.
Díky Everaldovi Coelho za téma Crystal SVG icons theme ( http://www.iconfinder.com/iconsets/crystalproject ) pod licencí LGPL.
Díky Nunovi Pinheirovi za téma ikon Oxygen ( http://www.oxygen-icons.org/ ) pod licencí LGPL ale také za ikony věnované QElectroTech.
Díky projektu KDE ( http://www.kde.org/ ). Díky projektu KDE ( http://www.kde.org/ ).
Díky Loicovi za jeho vysvětlení vztahující se k matematice. Díky Loicovi za jeho vysvětlení vztahující se k matematice.
Díky Remi Colletovi za balíček pro Fedoru. Díky Remi Colletovi za balíček pro Fedoru.
@ -119,13 +107,11 @@ Díky `trem' za balíček pro Mandrivu.
Díky TuxFamily ( http://tuxfamily.org/ ) za poskytování hostingu pro projekt. Díky TuxFamily ( http://tuxfamily.org/ ) za poskytování hostingu pro projekt.
Díky `Nishiki' za jeho prvky a jeho podporu. Díky `Nishiki' za jeho prvky a jeho podporu.
Díky qtcentre.org za jejich třídu SingleApplication. Díky qtcentre.org za jejich třídu SingleApplication.
Poděkování Alfredovi Carretovi za jeho španělský překlad a opravy španělského překladu ( http://electronicosmx.comxa.com ) Poděkování Alfredovi Carretovi za jeho španělský překlad a opravy španělského překladu ( http://electronicosmx.net )
Dìky 'Dr.Slump' za jeho italianský překlad Dìky 'Dr.Slump' za jeho italianský překlad
[pl] [pl]
Podziękowania dla Qt Software, za biblioteki Qt (http://www.qtsoftware.com/) na licencji GNU / GPL. Podziękowania dla Qt Software, za biblioteki Qt (http://www.qtsoftware.com/) na licencji GNU / GPL.
Podziękowania dla Everaldo Coelho, za ikony Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject) na licencji LGPL.
Podziękowania dla Nun Pinheiro, za ikony Oxygen (http://www.oxygen-icons.org/) na licencji LGPL, a także za ikony przeznaczone do projektu QElectroTech.
Podziękowania dla projektu KDE (http://www.kde.org/). Podziękowania dla projektu KDE (http://www.kde.org/).
Podziękowania dla Loic, za pomoc w rozwiązaniu problemów matematycznych. Podziękowania dla Loic, za pomoc w rozwiązaniu problemów matematycznych.
Podziękowania dla Remi Collet, za pakiety dla Fedory. Podziękowania dla Remi Collet, za pakiety dla Fedory.
@ -134,12 +120,10 @@ Podziękowania dla "trem", za pakiety dla Mandrivy.
Podziękowania dla TuxFamily (http://tuxfamily.org/), za organizację projektu. Podziękowania dla TuxFamily (http://tuxfamily.org/), za organizację projektu.
Podziękowanie dla "Nishiki", zajego elementy i poparcie. Podziękowanie dla "Nishiki", zajego elementy i poparcie.
Podziękowania dla qtcentre.org, za klasę SingleApplication. Podziękowania dla qtcentre.org, za klasę SingleApplication.
Podziękowania dla Alfredo Carreto, za jego tłumaczenie na język hiszpański i korektę ( http://electronicosmx.comxa.com) Podziękowania dla Alfredo Carreto, za jego tłumaczenie na język hiszpański i korektę ( http://electronicosmx.net)
[it] [it]
Grazie a Qt Software per le loro librerie Qt (http://www.qtsoftware.com/), licenzate sotto GNU/GPL. Grazie a Qt Software per le loro librerie Qt (http://www.qtsoftware.com/), licenzate sotto GNU/GPL.
Grazie a Everaldo Coelho per il tema icone Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject) licenzato sotto LGPL.
Grazie a Nuno Pinheiro per il tema icone Oxygen (http://www.oxygen-icons.org/) licenzato sotto LGPL ma anche per le icone dedicate a QElectroTech.
Grazie al progetto KDE (http://www.kde.org/). Grazie al progetto KDE (http://www.kde.org/).
Grazie a Loic per le sue spiegazioni matematiche. Grazie a Loic per le sue spiegazioni matematiche.
Grazie a Remi Collet per i pacchetti per Fedora. Grazie a Remi Collet per i pacchetti per Fedora.
@ -148,7 +132,7 @@ Grazie a `trem' per i pacchetti per Mandriva.
Grazie a TuxFamily (http://tuxfamily.org/) per l'ospitalità al progetto. Grazie a TuxFamily (http://tuxfamily.org/) per l'ospitalità al progetto.
Grazie a `Nishiki' per i suoi elementi ed il supporto. Grazie a `Nishiki' per i suoi elementi ed il supporto.
Grazie a qtcentre.org per la loro classe SingleApplication. Grazie a qtcentre.org per la loro classe SingleApplication.
Grazie a Alfredo Carreto per le traduzioni e le correzioni in spagnolo (http://electronicosmx.comxa.com). Grazie a Alfredo Carreto per le traduzioni e le correzioni in spagnolo (http://electronicosmx.net).
Grazie a 'Dr.Slump' e 'Silvio' per la traduzione in italiano. Grazie a 'Dr.Slump' e 'Silvio' per la traduzione in italiano.
Grazie a Jose Carlos Martins per la traduzione in portoghese. Grazie a Jose Carlos Martins per la traduzione in portoghese.
Grazie a Pavel Fric per la traduzione in ceco. Grazie a Pavel Fric per la traduzione in ceco.
@ -165,8 +149,6 @@ Grazie a Markos Chandras per i pacchetti per Gentoo.
[el] [el]
Ευχαριστίες στην Qt Software για την βιβλιοθήκη Qt ( http://www.qtsoftware.com/ ), αδειοδοτημένο ως GNU/GPL. Ευχαριστίες στην Qt Software για την βιβλιοθήκη Qt ( http://www.qtsoftware.com/ ), αδειοδοτημένο ως GNU/GPL.
Ευχαριστίες στον Everaldo Coelho για τα εικονίδια του θέματος Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject) αδειοδοτημένο ως LGPL.
Ευχαριστίες to Nuno Pinheiro για τα εικονίδια του θέματος Oxygen ( http://www.oxygen-icons.org/ ) αδειοδοτημένο ως LGPL και επίσης για τα εικονίδια ειδικά για το QElectroTech.
Ευχαριστίες στο έργο KDE ( http://www.kde.org/ ). Ευχαριστίες στο έργο KDE ( http://www.kde.org/ ).
Ευχαριστίες στον Loic για τις εξηγήσεις σχετικές με μαθηματικά. Ευχαριστίες στον Loic για τις εξηγήσεις σχετικές με μαθηματικά.
Ευχαριστίες στον Remi Collet για τα πακέτα Fedora. Ευχαριστίες στον Remi Collet για τα πακέτα Fedora.
@ -175,7 +157,7 @@ Grazie a Markos Chandras per i pacchetti per Gentoo.
Ευχαριστίες στο TuxFamily ( http://tuxfamily.org/ ) για τη φιλοξενία του έργου. Ευχαριστίες στο TuxFamily ( http://tuxfamily.org/ ) για τη φιλοξενία του έργου.
Ευχαριστίες στον `Nishiki' για τα στοιχεία και την υποστήριξη του. Ευχαριστίες στον `Nishiki' για τα στοιχεία και την υποστήριξη του.
Ευχαριστίες στο qtcentre.org για την κλάση SingleApplication. Ευχαριστίες στο qtcentre.org για την κλάση SingleApplication.
Ευχαριστίες στον Alfredo Carreto για τις μεταφράσεις του και για την επισκευή της Ισπανικής μετάφρασης ( http://electronicosmx.comxa.com ) Ευχαριστίες στον Alfredo Carreto για τις μεταφράσεις του και για την επισκευή της Ισπανικής μετάφρασης ( http://electronicosmx.net )
Ευχαριστίες στον 'Dr.Slump' και τον Sivio για τις μεταφράσεις τους στα Ιταλικά Ευχαριστίες στον 'Dr.Slump' και τον Sivio για τις μεταφράσεις τους στα Ιταλικά
Ευχαριστίες στον Jose Carlos Martins για την μετάφραση στα Πορτογαλικά Ευχαριστίες στον Jose Carlos Martins για την μετάφραση στα Πορτογαλικά
Ευχαριστίες στον Pavel Fric Για την μετάφραση στα Τσέχικα Ευχαριστίες στον Pavel Fric Για την μετάφραση στα Τσέχικα
@ -197,8 +179,6 @@ Grazie a Markos Chandras per i pacchetti per Gentoo.
[nl] [nl]
Dank aan Qt Software voor hun Qt library ( http://www.qtsoftware.com/ ) , onder de GNU / GPL licentie . Dank aan Qt Software voor hun Qt library ( http://www.qtsoftware.com/ ) , onder de GNU / GPL licentie .
Dank aan Everaldo Coelho voor de Crystal SVG iconen thema ( http://www.iconfinder.com/iconsets/crystalproject ) gelicenseerd onder LGPL .
Dank aan Nuno Pinheiro voor de Oxygen iconen thema ( http://www.oxygen-icons.org/ ) gelicenseerd onder LGPL maar ook voor de QElectroTech -dedicated iconen.
Dank aan het KDE-project ( http://www.kde.org/ ) . Dank aan het KDE-project ( http://www.kde.org/ ) .
Dank aan Loic voor zijn wiskunde - gerelateerde verklaringen . Dank aan Loic voor zijn wiskunde - gerelateerde verklaringen .
Met dank aan Remi Collet voor de Fedora pakket. Met dank aan Remi Collet voor de Fedora pakket.
@ -207,7 +187,7 @@ Dank aan ` tremolo ' voor de Mandriva pakket.
Dank aan TuxFamily ( http://tuxfamily.org/ ) voor het hosten van het project . Dank aan TuxFamily ( http://tuxfamily.org/ ) voor het hosten van het project .
Dank aan ` Nishiki ' voor zijn elementen en zijn steun . Dank aan ` Nishiki ' voor zijn elementen en zijn steun .
Dank aan qtcentre.org voor hun SingleApplication klasse . Dank aan qtcentre.org voor hun SingleApplication klasse .
Dank aan Alfredo Carreto voor zijn Spaanse vertalingen en tot vaststelling Spaanse vertalingen ( http://electronicosmx.comxa.com ) Dank aan Alfredo Carreto voor zijn Spaanse vertalingen en tot vaststelling Spaanse vertalingen ( http://electronicosmx.net )
Dank aan ' Dr.Slump ' en Sivio voor hun vertalingen in het Italiaans Dank aan ' Dr.Slump ' en Sivio voor hun vertalingen in het Italiaans
Met dank aan Jose Carlos Martins voor zijn vertalingen in het Portugees Met dank aan Jose Carlos Martins voor zijn vertalingen in het Portugees
Met dank aan Pavel Fric voor zijn vertalingen in het Tsjechisch Met dank aan Pavel Fric voor zijn vertalingen in het Tsjechisch
@ -229,8 +209,6 @@ Dank aan Mrbit voor ebuild Gentoo pakket.
[be] [be]
Dank aan Qt Software bibliotheek voor Qt ( http://www.qtsoftware.com/ ), onder licentie van GNU/GPL. Dank aan Qt Software bibliotheek voor Qt ( http://www.qtsoftware.com/ ), onder licentie van GNU/GPL.
Dank aan Everaldo Coelho voor het pictogram thema Crystal SVG ( http://www.iconfinder.com/iconsets/crystalproject )onder licentie van licence LGPL.
Dank aan Nuno Pinheiro voor het pictogram thema Oxygen ( http://www.oxygen-icons.org/ ) onder licentie van LGPL maar ook voor de iconen opgedragen aan QElectroTech
Dank aan project KDE ( http://www.kde.org/ ). Dank aan project KDE ( http://www.kde.org/ ).
Dank aan Loic voor zijn uitleg van de mathematische orde. Dank aan Loic voor zijn uitleg van de mathematische orde.
Dank aan Remi Collet voor de pakketten Fedora. Dank aan Remi Collet voor de pakketten Fedora.
@ -239,7 +217,7 @@ Dank aan `trem' voor de pakketten Mandriva.
Dank aan TuxFamily ( http://tuxfamily.org/ ) voor het hosten van het project. Dank aan TuxFamily ( http://tuxfamily.org/ ) voor het hosten van het project.
Dank aan `Nishiki' voor zijn elementen en ondersteuning. Dank aan `Nishiki' voor zijn elementen en ondersteuning.
Dank aan qtcentre.org voor hun SingleApplication klasse. Dank aan qtcentre.org voor hun SingleApplication klasse.
Dank aan Alfredo Carreto voor zijn vertalingen en correcties in het Spaans ( http://electronicosmx.comxa.com ) Dank aan Alfredo Carreto voor zijn vertalingen en correcties in het Spaans ( http://electronicosmx.net )
Dank aan 'Dr.Slump' en Sivio hun vertaling in het Italiaans Dank aan 'Dr.Slump' en Sivio hun vertaling in het Italiaans
Dank aan Jose Carlos Martins voor zijn vertalingen in het Portugees Dank aan Jose Carlos Martins voor zijn vertalingen in het Portugees
Dank aan Pavel Fric voor zijn vertalingen in het Tsjechisch Dank aan Pavel Fric voor zijn vertalingen in het Tsjechisch

398
ChangeLog
View File

@ -1,3 +1,398 @@
====== ChangeLog from 0.8 to 0.9 ======
*Diagram editor :
Improved QElectroTech speed (launch qet, open project, function)
A drop-down list has been added to the toolbar to change the size of the resize handles.
*Element Editor:
The "keep visual rotation" property of element texts is editable from the element editor.
Thanks to the work of antonioaja it is now possible to import a dxf directly from the element editor in a completely transparent way for the user.
In the background QElectroTech uses the dxf2elmt software. https://qelectrotech.org/forum/viewtopic.php?id=2265 https://github.com/antonioaja/dxf2elmt
Improved responsiveness when multiple shapes are selected or deleted, especially when working on a large converted DXF element.
https://qelectrotech.org/forum/viewtopic.php?pid=16612#p16612
*Other:
Add a "side project" tab in the "about" window.
In the general QElectroTech configuration, a drop down list allows to choose the scaling method for hdpi screens.
Allow open polygons (i.e. polylines) when saving in dxf format.
https://qelectrotech.org/forum/viewtopic.php?pid=16611#p16611
Added 'Other' option for slave device contact type.
https://github.com/qelectrotech/qelectrotech-source-mirror/pull/222
https://qelectrotech.org/forum/viewtopic.php?id=2264
*Logs:
Added a QElapsedTimer to calculate the time used to reload the item collection.
Improved QElapsedTimer to calculate the time used to reload the item collection in seconds instead of ms.
Added Linux pc.gpu.RAM information, but requires mesa-utils dependency on the Linux OS.
Added information about mounted disk volumes.
Added CPU architecture for which Qt was compiled in the aboutqetdialog widget and in the logs.
Added MSVC support to MachineInfo.
Added RAM information on Windows of available RAM.
Added QElectroTech version to the log file.
* Elements collection :
Improve collection 8274 elements in 1097 categories (i.e. 9371 files).
* macOS :
Fix sqlite3 database export on macOS, now I use macports with Digikam scripts instead off Homebrew Package Manager.
See: https://invent.kde.org/graphics/digikam/-/tree/master/project/bundles/macports
*Bug fix:
see: https://git.tuxfamily.org/qet/qet.git/log/?h=0.8.1
====== ChangeLog from 0.7 to 0.8 ======
* Moving the main QET repository SVN trunk to GIT.
* Add a mirror of the main QET repository, which is synced to hosted at tuxfamily.org to Github.
* Doxyfile update add QCH file for doxygen-generated docs using qhelpgenerator and then import them into Qt Creator.
* Improve portability of Doxyfile (Simon).
* Fix deprecated warnings (Simon).
* Wrap code for better readability (Simon, Damian).
* Elements collection :
Improve collection 7378 elements in 1092 categories
Thanks Sebastien, Dinozzo, Simon, Rafał, Arnaud, Bisku, Fernando, Riesermauf, Alexis, david, Plc-user, Christophe, Michele, Galexis, Jevgenijs, Gabor,
Benoit Michel, Franck, Ludovic, Cyrille, ossau2mation, Mitzot, Edgar, Nuri, Friskolon, Baboune41, Wiktor, shateks, Dik, Shateks, Marcin
* Diagram editor :
* The export of the nomenclature to csv file has been completely rewritten :
It is now possible to choose which information to export as well as the order in which it should be displayed.
An option allows filtering by type of element: all, terminal block, button / switch.
Another option allows to display or not the column headers in the csv file.
With these options, it is possible to create a nomenclature, an order list, but also for printing labels: list of terminals and list of buttons / switches.
It is possible to save / load a configuration easily.
Finally, the work being done by an SQLite database, a text field allows the user to create his own SQL query.
* Add Conductors numbering to csv file.
* Add new summary table.
* add BOM creation dialog :
nomenclature is now integrated into the project (accompanied by several parameters in order to be customizable).
Tables can have a name.
Tables an be added to any folio.
Font margin and alignment (right center left) separately adjustable for headers and table cells.
Position size and number of lines is adjustable.
Possibility of linking several tables together, especially when the entire nomenclature cannot be contained in a folio.
Automatic adjustment of the size of the table in relation to the folio.
Option to apply the geometry of an array to all the array linked to it, so that everything is homogeneous.
Save / load table configuration and content to make creation faster.
Option to automatically adjust the table to the folio.
Option to automatically add new tables in new folios if the nomenclature cannot be contained in 1 to N folios / tables.
* Table content:
Fully customizable, you display what you want or want (info to display in the desired order, filter on type of element, filter on content of the info "contains, not contains, not empty etc ..." ).
The content being generated from a sqlite database, you can write your own request.
* Loading of element collections is now faster (thanks to the pugixml parser)
* The loading of collections of elements no longer freezes QElectroTech.
* The appearance and disappearance of the search / replace menu is animated.
* Fix wrong position of slave xref after open a saved project
* Add font color of the conductors (Simon).
* Add section and color properties for wires.
* config dialog :
* Add QScrollArea to configdialog and resize to max_screen (Simon).
* Add gui resize depending on screen size (Simon).
* Add Screen info user (Simon).
* Mod ScrollArea on demand (Simon).
* Element editor:
* Polygon editing widget, when you click on a point in the list, the corresponding point changes color in order to better visualize what you are doing.
On this same list, a right click opens a contextual menu allowing to delete the selected point or inserted a point after the selected one.
When holding the ctrl + directional arrow key, the selected parts move by 0.1 instead of 1 point.
* with Ctrl key you can moving by keyboard primitives selected by 0.1 point instead by 1 points, added the same feature for moving the selected aera.
* Added 140 web standard colors In Element editor (Arnaud).
* Add multiedit feature (martin).
* Add terminals uuid for next features (martin).
* Windows :
* Fix bad fonts rendering if Qt version >= 5.13.1.
See : https://bugreports.qt.io/browse/QTBUG-83161
* Fix backup file on windows
For unknown reason KautoSaveFile don't write the file on Windows if file
is open in another part of the code.
No error is returned and use the method :
qint64 QIODevice::write(const QByteArray &byteArray) return the good
number of bytes written but the real file stay empty.
Probably the problem don't come from KautoSaveFile but QFileDevice or
QIODevice on windows.
The fix consist to open the file just before write on it and close it
just after.
* writeToFile on a other Thread to improve this for windows performance (Simon).
* macOS :
* Add Fusion style and fix tilesets tab bar size
* Enable mouse wheel on tilesets tab bar with command keyboard, thanks Giovanni.
(removed by Qt upstream) https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=commitdiff;h=ea47d152b35158ba07a55d009f57df0e4c2a048f;hp=08cc9b9991ae9ab51bed5b857b6257401401ff6f
* Add Snap packages :
* thanks Max for help.
https://snapcraft.io/qelectrotech
See: https://qelectrotech.org/forum/viewtopic.php?id=1426
* Use kde-neon extension
The kde-neon extension reduces our boilerplate in snapcraft.yaml
and reduces the snap size considerably, as we do not need to ship
any library that is already included in the kde-frameworks-5-core18
snap itself.
This limits qelectrotech builds to the architectures supported
by kde-frameworks-5-core18, i.e. only amd64.
https://git.tuxfamily.org/qet/qet.git/log/?qt=grep&q=snap
* Add Flatpak packages :
* thanks Mathieu for help.
See: https://github.com/qelectrotech/qelectrotech-source-mirror/pull/18
* remove the file name extension added
automatically to the saved files even if the user sets an unknown file
extension for the program.
https://git.tuxfamily.org/qet/qet.git/log/?qt=grep&q=flatpak
====== ChangeLog from 0.6 to 0.7 ======
* Element editor :
* Element informations (manufacturer, reference etc...) can be created directly from the element editor. For that go to the widget "Element Property"
* It is no longer required to have a text field, for save the edited element.
* Improve the behavior with the arrow keys (depending to the current selection (nothing / one / several).
* Context menu display only enabled actions.
* Added new feature -> alignment.
* Alignment of text field can be edited.
* Added two new actions in context menu for insert or remove point of a selected polygon.
* Rectangle can have rounded corner.
* Polyline: finish the creation of polyline with the last point at the same position of the first point, close the polyline.
* Diagram editor :
* Conductors can now be drawn with two colors.
* Improve High-DPI support on Windows and Linux plateform.
* The code for the resize handles has been almost completely redesigned.
* Dissociate fonts policy and size for independent text item and for summarry pages (foliolist), added a 2 button in config page for open Qfontdialog widget and choose policy for independent text item.
* Add in config page a Qfontdialog widget for change dynamic text size, font family, orientation angle and text length, by default.
* Basic shape add new CustomDashLine style with Dash Pattern (<< 10 << 10 );
* It is now possible to add a text field to an element directly from the diagram.
* Element text item with are now converted to dynamic element text item.
* Element editor, part text can't be edited directly.
* User can export / import the configuration of the texts and texts group of an element.
* Context menu display only enabled actions.
* Added new action in the context menu, multiple paste, check box for autonum the pasted element.
* Multipaste -> improve the conductor autonum, conductors are numerated from top to bottom, and left to right.
* Text of conductor can be placed at top/bottom/left/right of conductor, and text never overlaps the conductor.
* Function for search conductor at the same potential.
When the search function is searching in a terminal element, they search only for the first terminal found, no matter if the terminal element have more than two terminals.
So the list of conductors at the same potential is missing some conductors.
This commit fix it, now the search function search for every terminals of a terminal element.
* When remove an element with several conductors connected to the same terminal, the electrical potential is partially or totally destroyed.
This commit fix it : When element is removed one or several conductors are created (if needed) to conserve the electrical potential.
* Added new feature -> alignment.
* Alignment of text field can be edited.
* Added new context menu action "group the selected texts".
* Widget used to edit text item group can edit the pos of the group.
* Element text item group can now be framed.
* Added two new actions in context menu for insert or remove point of a selected polygon.
* QETshapeItem rectangle can have rounded corner.
* Add in config the possibility to start the numbering of the columns of titleblocks at 0.
* Add new function Search and replace widget Crtl +F
* Diagram properties, Element properties, Independent text item can be changed (and mass changed) through the search and replace widget.
* Added 4 tools for edit the depth (Z value) of items.
* Element panel : elements can be searched by their name but also with by all their informations.
* New free selection style.
* Diagram editor : dock used to edit the shape item, can now edit several items in the same time.
* Dynamic element text item : The font of the dynamic texts can be individually be setted.
* Adding or revoming diagram set project to modified
* When user cleanning an project, set project to modified
* Add a shortcut "Ctrl+Shift+P" to quickly open the dialog used for create the auto numbering rules.
* Add missing StatusTip of some QAction
* When user add a polygon, a message in statusBar show how to finish this shape
* Polyline: finish the creation of polyline with the last point at the same position of the first point, close the polyline.
* Plug-in : Add StatusTip instruction for install and launching DXF plugin depending on the operating system
* when plugin qet-tb-generator"generate terminal blocks and connectors" isn't installed show an QMessageBox instruction now depending on the operating system for install it
Add in QMessageBox url encoding/decoding for easy download packages
* Elementspanelwidget: adds keyboard shortcuts to quickly move up, down,or move the targeted folio to the beginning of the project
F3 MoveUp
F4 MoveDown
F5 MoveUpTop
* Title block editor :
Added new title block variables %projectpath, %projectfilename, %projecttitle, previous-folio-num and next-folio-num
"%saveddate, %savedtime, %savedfilename and %savedfilepath" they variables should be updated after file save or save as dialog is confirmed,
before file is saved.
* NameList widget : add a combo box for easily paste texts, like the variables for title block.
* The font of the dynamic text field can be edited.
* The font of the static text field can be edited.
* The color of the static text field can be edited.
* Improve for new qet_tb_generator plug-in : added the full path of the current project as
an argument when calling the plug-in from QET if a project is open.
If not a file dialog is showed to select the QET project.
* QET create a backup file, use to restore the project when a crash occur.
* Use KAutoSaveFile for the backup system, instead of home made function.
* Use of QSAveFile instead a QFile.
* User can enable and edit autosave timer.
* let user define the file system path of the common,custom elements collections, and custom title blocks template.
* QetGraphicsItem, remove the function applyRotation and rotateBy, and use instead the native function of QGraphicsItem : setRotation
* Conductor is an herited class of QGraphicsObject, instead of QObject and QGraphicsPathItem
* Clean (and reduce the size) the class QETDiagramEditor, mostly by replacing the connection syntax "signal -> slot" by "signal -> lambda".
* Replace deprecated QMatrix by QTransform.
* DXF export : fix some double items in dxf file.
* DXF export : add some colors for basic shapes inside dxf.
* Bug fix :
* Fix compilation warning (clang and gcc).
* Fix element text item alignment work well when text rotation != 0.
* Fix crash when the properties of a element text item group
* Fix crash occurred by the conductor and shape "ghost".
* Fix element text alignment work also when font size change.
* fix :
1- When open a .qet by double click on it, QET ask user for open the backup file, of this .qet.
2- On windows, if user open a project from the recent files menu, when close QET the file is deleted user lose her work.
clear the element texts when paste an element with the option "Do not store the labels of items in the copy paste" enabled.
* elements can't be moved up and left, when there rotation are different than 0.
* minor fix : slave link dialog doesn't display the good label, when the label of master element is build from formula.
* Fix : in some condition, dynamic text are not at the same position when open a project.
* On windows when user drag and drop an element from the common elements collection to the custom elements collection,
the element file stay in read only mode, and so user can't save the element
* Improvement : minimize the unwanted gap of the top right folio of the view (see https://qelectrotech.org/forum/viewtopic.php?pid=9379#p9379)
* Fix: bug 168
* Fix : when create multiple conductors with the free hand selection, the checking of existing potentiel don't search trought a folio report.
* Fix: DXF export.
* Minor fix : remove from the element information the html hexadecimal and decimal characters of line feed and carriage return.
* fix : in the diagram editor, when we select several shapes at the same time, the properties widget only apply the change to one shape.
* Bug fix : when user load a project which contains summary pages, project was marked modified (summary was created on the fly and moved from the end on second
position), now the project is no longer marked as amended when user have one or multiples summary pages when loading this project.
* Static text of element are now exported to dxf
* Fix Static text size of element exported to dxf
* Improvement : minimize the unwanted gap of the top right folio of the view
* Fix : when create multiple conductors with the free hand selection, the checking of existing potentiel don't search trought a folio report.
* Don't display gui when qet is launched with specific argument
====== ChangeLog from 0.5 to 0.6 ======
In the official collection, there are now 4106 elements, and 539 categoris for a total of 4645 files
* Improved performance, added multithreading to speed up the loading of items when launching QET.
* RAM consumption has been considerably reduced.
* New "collections" panel.
* Automatic numberings (autonum), Variables and prefix.
* Folio generator
* Management Policy
* New thickness properties for conductors.
* The thickness of the lines of all basic shapes (lines, rectangles, ellipses, polygons) can be changed from 0,2px to 50,0px.
* The color of lines and fillings of basic shapes can be choosed from a color palette or set with a html color code.
* Added Copy/paste from another project.
* Online documentation and links to download the latest packages of the version under development for Windows and MacOS are available directly from the software.
* Resetting the layout of the summary pages.
* In the panel left split the view into a several docks.
* High-DPI support (Qt 5.6.0)
* new python plugin to generate terminal block.
* Windows packages are now created on a Debian operating system using cross-compilation and targeted to make executable binary files for these operating systems.
This technical evolution allows a significant time saving during the creation of the packages. And we can provide also in the same time Windows XP and Vista packages by cross-compil with Qt 5.7.1 environment
* The Mac OS X executable binary files are created on a virtual environment, moved compiler to latest LLVM clan version, improved dmg packages with added Info.plist.
* An annoying memory leak has been found and solved. Afters hours of use, some users noticed that the RAM consumption growed steadily, up to 10GB or more. This problem is now solved.
====== ChangeLog from 0.4 to 0.5 ======
In the official collection, there are now 2625 elements, and 418 catégoris for a total of 3043 files.
* Port to Qt 5 framework
* New QSettings native format for config files.
* In the diagram editor, the grid is not displayed by default outside the diagram, the minimum zoom is blocked. A button allows you to un-validate this operation.
* It is now possible to put the tittle block on the right vertical mode.
* The default tittle block can be defined for the next folios of the project.
* The summary now takes the font set in the QElectroTech.conf
* The floating dock is now operational, variables, actions are taken into account on the fly.
* A transformation tool transforms quickly and finely each primitive by handles.
* Add UUID tag for element XML.
* The database enables faster loading a large number of managing symbols in tables changes pixmaps collections, it no longer compares the modification date of the files but their use UUID attributes to update the cache .
* In terms of basic shapes, the transform tool works directly on vectors, it replaces the reduction tool / enlargement that has just been deleted as unnecessary.
* Improve Undo command by QPropertyUndoCommand class.
====== ChangeLog from 0.3 to 0.4 ======
In the official collection, there are now 2298 elements, and 376 catégoris for a total of 2674 files.
* We have removed the flag '-fno-ipa-sra "This settled the compilation problems on Mac OS X and FreeBSD clang.
* The official collection has been redesigned, through the work of Nuri a new structure is in place.
* A menu has been added, allowing you to change the application language.
* we added a summary creation tool.
* Added button "export the nomenclature" transforms data from diagrams to CSV file for spreadsheet.
Arun wrote a detailed manual in English.
* New tools have been added, they can create mechanical connections and draw cabinets, desks, junction boxes, or areas on the schematic (line tool, rectangle, ellipse, polygon type: respect for style dashes).
* An aid in positioning cross, drawing, was added.
* The locked state images and basic forms (basic shapes) is now stored in the project.
* The "control" during the movement of an element, text field disables snapping to the grid, for free positioning.
It is now possible to choose the background folios in white or gray.
* Add supports trackpad gestures (multitouch).
The dates of the cartridges are now using the short system date and date format according to the language detected setting in the OS.
We take advantage of the transition to standard C ++ 11, and a big cleanup in the code was done.
* The undo action or redo the undo stack are now animated graphically.
When the action save, save as, the status bar displays the name and path of the backup job.
Qet is now able to come to load a style sheet (stylesheet) directly from the conf directory.
* A DXF export has been added, the entire project folios can be exported in this format.
* Added reports folio, Cross references.
* Added a variable font size for text of conductors.
* Added new properties to all conductors at the same potential, even through referrals.
* When several conductors have the same value potential equalization, it is not useful to display on all conductors.
* Added button to activates the automatic connection of the conductors of the element when moving it.
* Numbering rules are now available for the entire project.
Qet detects the Windows version and applies the appropriate graphic style, depending on the version of Windows.
====== ChangeLog from 0.3 rc to 0.3 ====== ====== ChangeLog from 0.3 rc to 0.3 ======
First, the collection of symbols has made a big step forward, with about 1560 new elements. First, the collection of symbols has made a big step forward, with about 1560 new elements.
@ -199,4 +594,5 @@ Le dialogue "Exporter" (pour générer un fichier image d'un schéma) a égaleme
* Affinage du constructeur de la classe QETApp * Affinage du constructeur de la classe QETApp
* Moins d'avertissements à la compilation (testé avec gcc 4.3) * Moins d'avertissements à la compilation (testé avec gcc 4.3)
* Moins d'inclusions non pertinentes * Moins d'inclusions non pertinentes
* Nettoyage du trunk : déplacement des sources dans un sous-répertoire

2672
Doxyfile

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,10 @@ without any warranty of fitness for your purpose or working.
The usage, the modification and the integration of the elements into electric The usage, the modification and the integration of the elements into electric
diagrams is allowed without any condition, whatever the final license of the diagrams is allowed without any condition, whatever the final license of the
diagrams is. diagrams is.
Permission is not granted to use this software or any of the associated files
as sample data for the purposes of building machine learning models.
If you redistribute all or a part of the QElectroTech collection, with or If you redistribute all or a part of the QElectroTech collection, with or
without any modification, out of an electric diagram, you must respect the without any modification, out of an electric diagram, you must respect the
conditions of the CC-BY license: conditions of the CC-BY license:
@ -19,6 +23,9 @@ fonctionne.
L'utilisation, la modification et l'intégration des éléments dans des schémas L'utilisation, la modification et l'intégration des éléments dans des schémas
électriques est autorisée sans condition, quelle que soit la licence finale des électriques est autorisée sans condition, quelle que soit la licence finale des
schémas. schémas.
L'autorisation n'est pas accordée pour utiliser ce logiciel ou l'un des fichiers associés
comme exemples de données aux fins de création de modèles dapprentissage automatique.
Si vous redistribuez tout ou partie de la collection QElectroTech, avec ou sans Si vous redistribuez tout ou partie de la collection QElectroTech, avec ou sans
modification, en dehors d'un schéma électrique, vous devrez respecter les modification, en dehors d'un schéma électrique, vous devrez respecter les
conditions de la licence CC-BY : conditions de la licence CC-BY :
@ -27,6 +34,26 @@ disponible en ligne http://creativecommons.org/licenses/by/3.0/ ou par
courrier postal à Creative Commons, 171 Second Street, Suite 300, San Francisco, courrier postal à Creative Commons, 171 Second Street, Suite 300, San Francisco,
California 94105, USA. California 94105, USA.
[de]
Die mit QElectroTech zur Verfügung gestellte Sammlung von Elementen wird ohne
Gewährleistung der Eignung für einen bestimmten Zweck oder der Funktions-
fähigkeit zur Verfügung gestellt.
Die Verwendung, Modifikation und Integration der Elemente in elektrische
Schaltpläne ist uneingeschränkt erlaubt, unabhängig von der endgültigen Lizenz
der Schaltpläne.
Es ist nicht gestattet, diese Software oder eine der zugehörigen Dateien
als Beispieldaten für die Erstellung von Modellen für maschinelles Lernen
zu verwenden.
Wenn Sie die gesamte QElectroTech-Sammlung oder Teile davon, mit oder ohne
Modifikationen, aus einem Schaltplan weitergeben, müssen Sie die Bedingungen
der CC-BY-Lizenz einhalten.
Dieses Werk steht unter einer Creative Commons Attribution 3.0 Lizenz.
Eine Kopie dieser Lizenz finden Sie unter:
http://creativecommons.org/licenses/by/3.0/
oder senden Sie einen Brief an:
Creative Commons, 171 Second Street, Suite 300,
San Francisco, Kalifornien, 94105, USA.
[ru] [ru]
Коллекция элементов, поставляемая вместе с QElectroTech, поставляется "как есть" Коллекция элементов, поставляемая вместе с QElectroTech, поставляется "как есть"
и без каких-либо гарантий пригодности для той или иной цели или работы. и без каких-либо гарантий пригодности для той или иной цели или работы.
@ -59,7 +86,7 @@ ou envie uma carta para o endereço Creative Commons, 171 Second Street, Suite
[es] [es]
La colección de elementos QElectrotech es distruibida tal cual y sin ninguna La colección de elementos QElectrotech es distruibida tal cual y sin ninguna
garantía a la conveniencia de su uso y sin garantía de que funciona. garantía a la conveniencia de su uso y sin garantía de que funciona.
Se permite sin condicione alguna, cualquiera que sea la licencia final, usar, Se permite sin condicion alguna, cualquiera que sea la licencia final, usar,
editar, e incluir estos elementos en esquemas eléctricos. editar, e incluir estos elementos en esquemas eléctricos.
Si usted redistribuye una parte de la colección o toda la collección de Si usted redistribuye una parte de la colección o toda la collección de
QElectrotech, con o sin ediciones, fuera de un esquema eléctrico, tiene que QElectrotech, con o sin ediciones, fuera de un esquema eléctrico, tiene que
@ -136,7 +163,6 @@ http://creativecommons.org/licenses/by/3.0/ ή στείλτε μια επιστ
Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
[nl] [nl]
De elementen collectie voorzien, samen met QElectroTech wordt geleverd als en De elementen collectie voorzien, samen met QElectroTech wordt geleverd als en
zonder enige garantie van geschiktheid voor uw doel of werk. zonder enige garantie van geschiktheid voor uw doel of werk.
Het gebruik, de wijziging en de integratie van de elementen in elektrische Het gebruik, de wijziging en de integratie van de elementen in elektrische
@ -151,7 +177,6 @@ http://creativecommons.org/licenses/by/3.0/ of stuur een brief naar Creative
Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
[be] [be]
De elementen collectie welke samen met QElectroTech wordt geleverd zonder enige garantie De elementen collectie welke samen met QElectroTech wordt geleverd zonder enige garantie
of deze geschikt zijn voor uw doel of de werking. of deze geschikt zijn voor uw doel of de werking.
Het gebruik, wijzigen en integratie van de elementen in uw elektrische Het gebruik, wijzigen en integratie van de elementen in uw elektrische
@ -163,3 +188,27 @@ Dit werk is gelicenseerd onder de Creative Commons Attribution 3.0-licentie.
Om een kopie van deze licentie te bekijken, bezoek Om een kopie van deze licentie te bekijken, bezoek
http://creativecommons.org/licenses/by/3.0/ of stuur een brief naar Creative http://creativecommons.org/licenses/by/3.0/ of stuur een brief naar Creative
Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
[da]
Element samlinger leveret sammen med QElectroTech er tilvejebragt som er og
uden nogen garanti for egnethed til dit formål eller arbejde.
Brug, modifikation og integration af elementer til elektrisk diagrammer er
tilladt uden nogen betingelse uanset den endelige diagram licens.
Omfordeling af hele eller dele af QElectroTech samlingen, med eller
uden ændring af et elektrisk diagram, skal du respektere betingelser for CC-BY-licens:
Dette værk er licenseret under Creative Commons Attribution 3.0 License.
For at se en kopi af denne licens, besøg
http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative
Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
[ja]
QElectroTech と一緒に提供される要素コレクションは現状のまま提供され、
あなたの目的や作業に適合することを保証するものではありません。
回路図での要素の利用、変更、統合は、回路図の最終的なライセンスに関わらず
無条件で許可されます。
回路図とは別に QElectroTech コレクションの全部または一部を
変更の有無に関わらず再配布する場合は CC-BY ライセンスを尊重しなければなりません:
この作品は Creative Commons Attribution 3.0 の下でライセンスされます。
ライセンスのコピーを見るには http://creativecommons.org/licenses/by/3.0/ にアクセスするか、
「Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.」に
手紙を送ってください。

81
INSTALL
View File

@ -1,131 +1,164 @@
[en] [en]
Requirements : Requirements :
libQt4 (see packages libqt4*) libQt5 (see packages libqt5*)
cupsys-bsd for printing cupsys-bsd for printing
Howto compile : Howto compile :
$ qmake (qmake-qt4 for Debian-based systems) $ qmake (qmake-qt5 for Debian-based systems)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[fr] [fr]
Pré-requis : Pré-requis :
libQt4 (paquets libqt4*) libQt5 (paquets libqt5*)
cupsys-bsd pour l'impression cupsys-bsd pour l'impression
Comment compiler : Comment compiler :
$ qmake (qmake-qt4 pour les systèmes basés sur Debian) $ qmake (qmake-qt5 pour les systèmes basés sur Debian)
$ make
# umask 0022
# make install
[de]
Abhängigkeiten:
libQt5 (Pakete libqt5*)
cupsys-bsd zum Drucken
Kompilieren:
$ qmake (qmake-qt5 für Debian-basierende Systeme)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[ru] [ru]
Зависимости: Зависимости:
libQt4 (пакет libqt4*) libQt5 (пакет libqt5*)
cupsys-bsd для печати cupsys-bsd для печати
Как компилировать?: Как компилировать?:
$ qmake (qmake-qt4 для систем основанных на Debian) $ qmake (qmake-qt5 для систем основанных на Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[pt] [pt]
Dependências: Dependências:
libQt4 (ver pacotes libqt4*) libQt5 (ver pacotes libqt5*)
cupsys-bsd para impressão cupsys-bsd para impressão
Como compilar: Como compilar:
$ qmake (qmake-qt4 para sistemas baseados em Debian) $ qmake (qmake-qt5 para sistemas baseados em Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[es] [es]
Dependencias: Dependencias:
libQt4 (paquetes libqt4*) libQt5 (paquetes libqt5*)
cupsys-bsd para imprimir cupsys-bsd para imprimir
Cómo compilar: Cómo compilar:
$ qmake (qmake-qt4 para los sistemas basados en Debian) $ qmake (qmake-qt5 para los sistemas basados en Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[ca] [ca]
Dependències: Dependències:
libQt4 (paquets libqt4*) libQt5 (paquets libqt5*)
cupsys-bsd per imprimir cupsys-bsd per imprimir
Com compilar: Com compilar:
$ qmake (qmake-qt4 pels sistemes basats en Debian) $ qmake (qmake-qt5 pels sistemes basats en Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[cs] [cs]
Požadavky : Požadavky :
libQt4 (viz balíček libqt4*) libQt5 (viz balíček libqt5*)
cupsys-bsd kvůli tisku cupsys-bsd kvůli tisku
Jak program sestavit : Jak program sestavit :
$ qmake (qmake-qt4 u systémů založených na Debianu) $ qmake (qmake-qt5 u systémů založených na Debianu)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[pl] [pl]
Zależności: Zależności:
libQt4 (pakiety libqt4 *) libQt5 (pakiety libqt5 *)
cupsys-bsd do druku cupsys-bsd do druku
Sposób kompilacji: Sposób kompilacji:
$ qmake (qmake-qt4 dla systemów opartych na Debianie) $ qmake (qmake-qt5 dla systemów opartych na Debianie)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[it] [it]
Dipendenze: Dipendenze:
libQt4 (vedi pacchetti libqt4*) libQt5 (vedi pacchetti libqt5*)
cupsys-bsd per la stampa cupsys-bsd per la stampa
Come compilare: Come compilare:
$ qmake (qmake-qt4 per sistemi basati su Debian) $ qmake (qmake-qt5 per sistemi basati su Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[el] [el]
Απαιτήσεις: Απαιτήσεις:
libQt4 (δείτε για πακέτα libqt4*) libQt5 (δείτε για πακέτα libqt5*)
cupsys-bsd για εκτύπωση cupsys-bsd για εκτύπωση
Πως να το μεταγλωττίσετε: Πως να το μεταγλωττίσετε:
$ qmake (qmake-qt4 για συστήματα βασισμένα σε Debian) $ qmake (qmake-qt5 για συστήματα βασισμένα σε Debian)
$ make $ make
# umask 0022 # umask 0022
# make install # make install
[nl] [nl]
vereisten: vereisten:
libqt4 (zie pakketten libqt4 *) libqt5 (zie pakketten libqt5 *)
cupsys-bsd om af te drukken cupsys-bsd om af te drukken
Hoe te compileren: Hoe te compileren:
$ Qmake (qmake-qt4 voor Debian-gebaseerde systemen) $ Qmake (qmake-qt5 voor Debian-gebaseerde systemen)
$ make $ make
# Umask 0022 # Umask 0022
# Make install # Make install
[be] [be]
Vereisten: Vereisten:
libQt4 (pakketten libqt4*) libQt5 (pakketten libqt5*)
cupsys-bsd voor het afdrukken cupsys-bsd voor het afdrukken
Hoe te compileren : Hoe te compileren :
$ qmake (qmake-qt4 voor systemen op basis van Debian) $ qmake (qmake-qt5 voor systemen op basis van Debian)
$ make
# umask 0022
# make install
[da]
Krav:
libQt5 (se pakke libqt5*)
cupsys-bsd til udskrivning
Hvordan man kompilerer:
$ qmake (qmake-qt5 for Debian baserede systemer)
$ make
# umask 0022
# make install
[ja]
必要条件 :
libQt5 (パッケージ libqt5* を参照)
cupsys-bsd 印刷用
コンパイルの方法 :
$ qmake (Debian ベースのシステムでは qmake-qt5)
$ make $ make
# umask 0022 # umask 0022
# make install # make install

View File

@ -7,6 +7,7 @@
Everyone is permitted to copy and distribute verbatim copies Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed. of this license document, but changing it is not allowed.
Preamble Preamble
The licenses for most software are designed to take away your The licenses for most software are designed to take away your

37
README
View File

@ -1,43 +1,56 @@
[en] [en]
QElectroTech is a Qt4 application to design electric diagrams. QElectroTech is a Qt5 application to design electric diagrams.
It uses XML files for elements and diagrams, and includes both a diagram editor, a element editor, and an titleblock editor. It uses XML files for elements and diagrams, and includes both a diagram editor, a element editor, and an titleblock editor.
[fr] [fr]
QElectroTech est une application Qt4 pour réaliser des schémas électriques. QElectroTech est une application Qt5 pour réaliser des schémas électriques.
QET utilise le format XML pour ses éléments et ses schémas et inclut un éditeur de schémas, un éditeur d'élément, ainsi qu'un editeur de cartouche. QET utilise le format XML pour ses éléments et ses schémas et inclut un éditeur de schémas, un éditeur d'élément, ainsi qu'un editeur de cartouche.
[de]
QElectroTech ist eine Qt5 Software, um Schaltpläne zu erstellen.
QET benutzt das XML Format für seine Bauteile und seine Projekte, und beinhaltet einen Schaltplaneditor, einen Bauteileditor sowie einen Schriftfeldeditor.
[ru] [ru]
QElectroTech - приложение написанное на Qt4 и предназначенное для разработки электрических схем. QElectroTech - приложение написанное на Qt5 и предназначенное для разработки электрических схем.
Оно использует XML-файлы для элементов и схем, и включает, как редактор схем, так и редактор элементов. Оно использует XML-файлы для элементов и схем, и включает, как редактор схем, так и редактор элементов.
[pt] [pt]
QElectroTech é uma aplicação baseada em Qt4 para desenhar esquemas eléctricos. QElectroTech é uma aplicação baseada em Qt5 para desenhar esquemas eléctricos.
QET utiliza ficheiros XML para os elementos e para os esquemas e inclui um editor de esquemas e um editor de elementos. QET utiliza ficheiros XML para os elementos e para os esquemas e inclui um editor de esquemas e um editor de elementos.
[es] [es]
QElectroTech es una aplicación Qt4 para diseñar esquemas eléctricos. QElectroTech es una aplicación Qt5 para diseñar esquemas eléctricos.
Utiliza archivos XML para los elementos y esquemas, e incluye un editor de esquemas y un editor de elemento. Utiliza archivos XML para los elementos y esquemas, e incluye un editor de esquemas y un editor de elementos.
[cs] [cs]
QElectroTech je aplikací Qt4 určenou pro návrh nákresů elektrických obvodů. QElectroTech je aplikací Qt5 určenou pro návrh nákresů elektrických obvodů.
Pro prvky a nákresy používá soubory XML, a zahrnuje v sobě jak editor nákresů, tak editor prvků. Pro prvky a nákresy používá soubory XML, a zahrnuje v sobě jak editor nákresů, tak editor prvků.
[pl] [pl]
QElectroTech to aplikacja napisana w Qt4, przeznaczona do tworzenia schematów elektrycznych. QElectroTech to aplikacja napisana w Qt5, przeznaczona do tworzenia schematów elektrycznych.
Wykorzystuje XML do zapisywania plików elementów i projektów. Posiada edytor schematów i elementów. Wykorzystuje XML do zapisywania plików elementów i projektów. Posiada edytor schematów i elementów.
[it] [it]
QElectroTech è una applicazione fatta in Qt4 per disegnare schemi elettrici. QElectroTech è una applicazione fatta in Qt5 per disegnare schemi elettrici.
QET usa il formato XML per i suoi elementi e schemi, includendo anche un editor per gli stessi. QET usa il formato XML per i suoi elementi e schemi, includendo anche un editor per gli stessi.
[el] [el]
Το QElectroTech είναι μια εφαρμογή Qt4 για σχεδίαση ηλεκτρικών διαγραμμάτων. Το QElectroTech είναι μια εφαρμογή Qt5 για σχεδίαση ηλεκτρικών διαγραμμάτων.
Χρησιμοποιεί αρχεία XML για στοιχεία και διαγράμματα, και περιλαμβάνει επεξεργαστή διαγραμμάτων καθώς και επεξεργαστή στοιχείων. Χρησιμοποιεί αρχεία XML για στοιχεία και διαγράμματα, και περιλαμβάνει επεξεργαστή διαγραμμάτων καθώς και επεξεργαστή στοιχείων.
[nl] [nl]
QElectroTech is een Qt4 applicatie om elektrische schema's te ontwerpen. QElectroTech is een Qt5 applicatie om elektrische schema's te ontwerpen.
Het maakt gebruik van XML-bestanden voor elementen en diagrammen, en omvat zowel een diagram bewerker, een element bewerker, en een bloksjabloon bewerker. Het maakt gebruik van XML-bestanden voor elementen en diagrammen, en omvat zowel een diagram bewerker, een element bewerker, en een bloksjabloon bewerker.
[be] [be]
QElectroTech is een QT4 toepassing voor het maken en beheren van elektrische schema's. QElectroTech is een Qt5 toepassing voor het maken en beheren van elektrische schema's.
QET gebruikt XML voor de elementen en schema's en omvat een schematische editor, itemeditor, en een titel sjabloon editor. QET gebruikt XML voor de elementen en schema's en omvat een schematische editor, itemeditor, en een titel sjabloon editor.
[da]
QElectroTech er et Qt5 program til at redigere elektriske diagrammer.
Det bruger XML filer for symboler og diagrammer og inkluderer diagram, symbol og titelblok redigering.
[ja]
QElectroTech は電気回路図を作成する Qt5 アプリケーションです。
QET は要素と回路図に XML 形式を利用し、回路図エディタ、要素エディタ、表題欄エディタを含みます。

229
README.md Normal file
View File

@ -0,0 +1,229 @@
![](logo.png)
# QElectroTech
### What it is
QElectroTech, or QET in short, is a libre and open source desktop application to create diagrams and schematics.
The software is primarily intended to create electrical documentation but it can also be used to draw any kinds of diagrams, such as those made in pneumatics, hydraulics, process industries, electronics...
Generally speaking, QET is a **CAD/CAE editor focusing on schematics drawing features**.
This means that there are no embedded simulating or calculating functionalities and it is not planned to implement them.
The main goal of the developers is to provide a libre, easy to use and effective software for **schematics drawing purposes**.
### Version
The current stable version is 0.90 and was released on 2023.01.06.
Once it has been officially released, the stable version is always frozen and is no longer developed.
New functionalities, bug and issue fixings are further made in the development version (currently 0.100), which can also be [downloaded](https://qelectrotech.org/download.php).
Users who want to test and take benefits from the last software implementations should use the development version. But... use it at your own risk, since things are sometimes broken or only partially implemented until they are done!
### License
The software is licensed under [GNU/GPL](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html).
You are free to use, copy, modify and redistribute it under the terms of the license.
Like many other open source software, QElectroTech is provided as is, without any warranty.
### Development / technical choices
The development follows the classical way of free and open source software: the source code, written by a community of users, is freely accessible.
* Get sources and sub-modules
```txt
git clone --recursive https://github.com/qelectrotech/qelectrotech-source-mirror.git
```
Here are the technical choices made for the software development:
* Integrated development environment: [Qt Framework](https://www.qt.io/ide/)
* Libraries: Qt 5.x
* [KF5 Framework](https://github.com/KDE)
[Cmake](https://cmake.org/install/)
[kcoreaddons](https://github.com/KDE/kcoreaddons/tree/kf5)
[kwidgetsaddons](https://github.com/KDE/kwidgetsaddons/tree/kf5).
* Coding language: [C++](https://en.wikipedia.org/wiki/C%2B%2B)
* GUI translations: [Qt Linguist](http://doc.qt.io/qt-5/qtlinguist-index.html)
* Version control: [GIT](https://github.com/qelectrotech/qelectrotech-source-mirror.git)
* Doxygen documentation :[Doxygen](https://download.qelectrotech.org/qet/doxygen/html/)
* QtCreator qch doxygen :[QElectroTech.qch](https://download.qelectrotech.org/qet/doxygen/)
* File format for projects, elements and titleblocks: [XML](http://www.w3schools.com/xml/xml_whatis.asp)
* Main development platform: [GNU/Linux](http://getgnulinux.org/en/linux/)
* Targeted platforms: Windows, GNU/Linux, Mac OS X, BSDs
* [Forum](https://qelectrotech.org/forum/index.php)
* [Wiki](https://qelectrotech.org/wiki_new/)
* [Mantis_bugtracker](https://qelectrotech.org/bugtracker/my_view_page.php)
If you wish to be informed of the latest developments, browse the [archive](https://listengine.tuxfamily.org/lists.tuxfamily.org/qet/) of the project mailing list where all commits (changes) are registered. This archive is publicly available, you don't need any account to access it.
# Features
QElectroTech is a free and open source software.
No need to worry about restrictive licensing, privacy violation or dependency on a company.
Zero cost and no licensing fees!
But you are welcome to make a donation to support the development
QElectroTech runs on the 3 most widespread operating systems for desktop computers in the world.
Files that were created on an OS can be edited on another OS without any conversion or restriction.
MS Windows users can even run the "ready-to-use" version of QElectroTech from an external medium with no need to install it on an access restricted computer.
Take advantage of the modern GUI
Toolbars and panels can be enabled/disabled, moved and displayed the way you want to work.
Panels can be stacked on each other (as tabs) or docked on the sides (as docks) or completely separated from the main window (as windows).
The GUI can fit to small or big screens, and even to multi-display configurations.
![](https://download.qelectrotech.org/qet/images-features/0030.png "GUI overview")
The GUI of QElectroTech is translated in 25 languages.
You only need to restart the application for the new selected language to take effect.
![](https://download.qelectrotech.org/qet/images-features/0040.png "Lang menu")
Create technical documentation in professional quality
Size, look and informations of the folios (sheets) are fully configurable.
You can set vertical and horizontal headers (printed rulers) individually on and off, set number of columns and rows, and set width/height of each column/row.
Titlebocks can be created and edited with the embedded titleblock editor to perfectly suit your needs.
Custom variables can be defined to display the informations you wish in the titleblock.
![](https://download.qelectrotech.org/qet/images-features/0055.png "Titleblock editor")
With only 2 mouse clicks you can add a full automatic generated table of content.
Changes in the documentation are updated on the fly.
![](https://download.qelectrotech.org/qet/images-features/0060.png "Table of content")
Choose from more than 8.200 symbols...
The embedded QET collection contains a rich library of electric, logic, pneumatic, hydraulic and fluid symbols.
The library grows at every new release thanks to an active user community.
![](https://download.qelectrotech.org/qet/images-features/0070.png "Collections")
...or create your own collection
The embedded element editor is a nice tool to create your own elements (symbols or anything else).
Your own elements are stored in the user collection.
![](https://download.qelectrotech.org/qet/images-features/0080.png "Element editor")
Quickly find what you need
All collections can quickly be searched with the integrated search engine.
Furthermore, the search request can be restricted to the folder of your choice.
![](https://download.qelectrotech.org/qet/images-features/0090.png "Search engine")
Easily draw complex schematics
To add an element on the drawing area, it only needs a drag & drop from the collection panel.
![](https://download.qelectrotech.org/qet/images-features/0102.png "Drag and drop")
Elements are automatically connected if they are aligned, or connected from point to point by pulling a conductor with the mouse.
![](https://download.qelectrotech.org/qet/images-features/0105.png "Conductor connections")
The path of every conductor can be modified by moving its handles with the mouse.
![](https://download.qelectrotech.org/qet/images-features/0107.png "Conductor handles")
And of course, you can accurately zoom with the mouse wheel over the drawing area to catch the smallest details.
Link elements together to create cross references
Several types of element can be linked together to display a cross reference text.
All types of cross references are automatically updated on the fly, you don't need to think about them if you make changes.
![](https://download.qelectrotech.org/qet/images-features/0112.png "Cross ref elements")
To speed up your work, linkable elements are easily searched and shown.
![](https://download.qelectrotech.org/qet/images-features/0115.png "Cross ref search")
Export informations to a parts list
Informations of all elements in the project can be exported to a .csv file that can be read and edited by any spreadsheet application.
![](https://download.qelectrotech.org/qet/images-features/0122.png "Element informations")
This way, you can make your own parts list or bill of material using the full power of a spreadsheet program.
![](https://download.qelectrotech.org/qet/images-features/0125.png "Spreadsheet")
Print to pdf and/or export your work to images
Your whole documentation or only selected parts of it can be printed to a real printer or to a pdf file.
Alternatively, you can export to vector (svg) or pixel (png, jpg, bmp) format images.
### And much more:
* open and edit several projects at the same time
* import images (.bmp, .jpg, .png, .svg) in your diagrams
* add basic shapes (lines, rectangles, ellipses, polygons) to your drawings
* edit the thickness, the line style and the color of conductors
* define some autonum patterns for conductors, symbols and folios
* take advantage of the open xml standard of elements and projects to create custom tools
* search and replace Widget (Ctrl + F) in entire project
* conductors num can be exported to csv file.
* ***
Nomenclature
A new nomenclature tool appears in the menu: project -> Add a nomenclature.
The nomenclature is presented in the form of a configurable table separated into two parts: the display (the form) and the content (the background).
- Display: the size and position of the table, the margins between text and the table cell, the alignment of the text in the cells and the font. The configuration of the table headers and the table itself are separate.
- Content: the information to display in the table and the order in which it should be displayed.
![](https://download.qelectrotech.org/qet/images_depeche_linuxfr/08/dialogue_nomenclature.png "nomenclature dialogue")
In order to speed up the establishment of a nomenclature, it is possible to export / import the display and content configurations separately. This is the "Configuration" part that can be seen in the photos above.
Behind the scenes, an SQLite database does the work, so setting up the content is nothing more or less than an SQL query created using a dialog (screenshot by right).
The SQL query is configured as follows (from top to bottom in the screenshot):
- “Available information”: the information to display;
- "Filter": filter the information (is not empty, is empty, contains, does not contain, is equal to, is not equal to) only one filter can be applied per information, it is not possible combine several;
- "Type of elements": allows you to filter on what type of element you want to obtain information.
At the bottom, a checkmark "SQL query" allows you to edit a personalized query, if the basic options are not sufficient.
When a nomenclature is too large to be contained in a single folio, it is possible to separate it on several folios, the tables of each folio are then linked together. When creating a nomenclature, this option is activated by default, which has the effect of adding the necessary number of folios, adding a table in each of them and linking them together.
Finally two buttons are available in the property panel:
- "Fit the table to the folio": positions and adjusts the size and determines the number of rows in the table in relation to the folio;
- "Apply geometry to all tables linked to this one": applies the three properties mentioned above to all linked tables in order to save time and maintain aesthetic consistency.
And to finish a table
![](https://download.qelectrotech.org/qet/images_depeche_linuxfr/08/tableau.png "table")
Summary
The old summary has been completely removed from the code in order to make room for the new one which is exactly the same as the nomenclature (a large amount of the code is common), with the exception of the SQL query (and its dialog to configure it) which offers specific information for editing a summary.
Export of the internal database
The database used by the nomenclature and the summary can be exported in a “.sqlite” file.
Currently this is irrelevant, as the function was created during development for debugging purposes, we left it.
Note that the database will become increasingly important in the future of Qet.
Export of the wiring list
In order to be able to use the wiring number printers more easily, the names of conductors can be exported in CSV format, the export respects the quantity of conductors in order to print the right quantity of numbers, for example a potential numbered 240 composed of 3 wires will give 6 × 240 (2 numbers per wire × 3 wires) in the CSV.
### Story
The QElectroTech project was founded in 2007 by two french students, Xavier and Benoit.
Xavier developed the base application itself and made all technical choices about the development.
The first version of QET (0.1) was released on 09.03.2008.
However, both Xavier and Benoit do not participate anymore in the project since 2013.
Following this period, new developers and contributors took over the project and kept it alive.
The development and the many translations are actively maintained.
New functionalities and evolutions are planned to make QET ever better.
Nowadays, QET is not only used by many individuals, teachers and students but also by professional electricians and companies all over the world.
### Donate Money
If you love QElectroTech, you can help developers to buy new hardware to test
and implement new features. Thanks in advance for your generous donations.
For more information, look at [Paypal](https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=ZZHC9D7C3MDPC&ssrt=1694606609672)

1
SingleApplication Submodule

@ -0,0 +1 @@
Subproject commit cbe496bc01e6515f9692824bf36d5136e8208c85

View File

@ -0,0 +1,112 @@
{
"id": "org.qelectrotech.QElectroTech",
"base-version": "5.15-23.08",
"runtime": "org.kde.Platform",
"runtime-version": "5.15-23.08",
"sdk": "org.kde.Sdk",
"command": "qelectrotech",
"rename-desktop-file": "org.qelectrotech.qelectrotech.desktop",
"rename-appdata-file": "qelectrotech.appdata.xml",
"rename-icon": "qelectrotech",
"copy-icon": true,
"finish-args": [
"--socket=wayland",
"--socket=fallback-x11",
"--device=dri",
"--share=ipc",
"--share=network",
"--socket=cups",
"--filesystem=host"
],
"modules": [
{
"name": "tkinter",
"buildsystem": "simple",
"build-commands": [
"pip3 install --prefix=${FLATPAK_DEST} ."
],
"sources": [
{
"type": "git",
"url": "https://github.com/iwalton3/tkinter-standalone",
"commit": "23c793bad2429f4a81eee9f50e2d07ae845b7785"
}
],
"modules": [
{
"name": "tcl",
"sources": [
{
"type": "archive",
"url": "https://sourceforge.net/projects/tcl/files/Tcl/8.6.11/tcl8.6.11-src.tar.gz",
"sha256": "8c0486668586672c5693d7d95817cb05a18c5ecca2f40e2836b9578064088258"
}
],
"subdir": "unix",
"post-install": [
"chmod +w ${FLATPAK_DEST}/lib/libtcl8.6.so"
]
},
{
"name": "tk",
"sources": [
{
"type": "archive",
"url": "https://sourceforge.net/projects/tcl/files/Tcl/8.6.11/tk8.6.11-src.tar.gz",
"sha256": "5228a8187a7f70fa0791ef0f975270f068ba9557f57456f51eb02d9d4ea31282"
}
],
"subdir": "unix",
"post-install": [
"chmod +w ${FLATPAK_DEST}/lib/libtk8.6.so"
]
}
]
},
{
"name": "qelectrotech",
"buildsystem": "qmake",
"post-install": [
"mv ${FLATPAK_DEST}/share/mime/packages/qelectrotech.xml ${FLATPAK_DEST}/share/mime/packages/org.qelectrotech.QElectroTech.xml"
],
"sources": [
{
"type": "dir",
"path": "../.."
},
{
"type": "patch",
"path": "patches/0001-build-Fix-the-installation-paths.patch"
}
]
},
{
"name": "python3-PySimpleGUI",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} PySimpleGUI"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/d0/c3/c1ce811a1e48d5e0f2df0b393ff189fae4842ec840bb6e4db79c8da55e74/PySimpleGUI-4.41.2.tar.gz",
"sha256": "cf42d9f61f28c8e790a9c031ce900a9cee5fd2f950da2f055ed36bbc487dcf11"
}
]
},
{
"name": "python3-qet-tb-generator",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} qet-tb-generator"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/70/aa/ebde0dddfbde799a4e8cf0564e52f95089105a7f562739ee1d16ff5a495a/qet_tb_generator-1.3.1.tar.gz",
"sha256": "52c9836387d54bc30ea29272068ec156fc65c3905e0cb863afd9418abc3c0907"
}
]
}
]
}

View File

@ -0,0 +1,40 @@
From 14f0685ddcf3a7d64bb85a3e9a9ac97c369bb508 Mon Sep 17 00:00:00 2001
From: Laurent Trinques <scorpio@qelectrotech.org>
Date: Sat, 26 Sep 2020 22:52:52 +0200
Subject: [PATCH] build: Fix the installation paths
---
qelectrotech.pro | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/qelectrotech.pro b/qelectrotech.pro
index 7baddbb08..5dcda04b6 100644
--- a/qelectrotech.pro
+++ b/qelectrotech.pro
@@ -5,18 +5,18 @@
# Chemins utilises pour la compilation et l'installation de QET
unix {
# Chemins UNIX
- COMPIL_PREFIX = '/usr/local/'
- INSTALL_PREFIX = '/usr/local/'
+ COMPIL_PREFIX = '/app/'
+ INSTALL_PREFIX = '/app/'
QET_BINARY_PATH = 'bin/'
QET_COMMON_COLLECTION_PATH = 'share/qelectrotech/elements/'
QET_COMMON_TBT_PATH = 'share/qelectrotech/titleblocks/'
QET_LANG_PATH = 'share/qelectrotech/lang/'
QET_EXAMPLES_PATH = 'share/qelectrotech/examples/'
- QET_LICENSE_PATH = 'doc/qelectrotech/'
- QET_MIME_PACKAGE_PATH = '../share/mime/packages/'
+ QET_LICENSE_PATH = 'share/doc/qelectrotech/'
+ QET_MIME_PACKAGE_PATH = 'share/mime/packages/'
QET_DESKTOP_PATH = 'share/applications/'
QET_ICONS_PATH = 'share/icons/hicolor/'
- QET_MAN_PATH = 'man/'
+ QET_MAN_PATH = 'share/man/'
QET_APPDATA_PATH = 'share/appdata'
}
win32 {
--
2.35.1

View File

@ -4,6 +4,9 @@ Collection d'éléments pour QElectroTech.
[en] [en]
Elements collection for QElectroTech. Elements collection for QElectroTech.
[de]
Bauteilsammlung für QElectroTech.
[es] [es]
Collección de elementos para QElectroTech. Collección de elementos para QElectroTech.
@ -30,3 +33,9 @@ Elementen collectie voor QElectroTech.
[be] [be]
Elementen collectie voor QElectroTech. Elementen collectie voor QElectroTech.
[da]
Symbol samling for QElectroTech.
[ja]
QElectroTech の要素コレクション。

View File

@ -0,0 +1,14 @@
#!/bin/sh
# migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON
from="$SNAP_USER_DATA/.qet"
to="$SNAP_USER_COMMON/.qet"
if [ ! -d "$to" ] && [ -d "$from" ]; then
echo "Migrating user data from $from to $to"
mkdir "$to"
cp -av "$from/." "$to"
fi
exec "${@}"

View File

@ -0,0 +1,111 @@
name: qelectrotech
title: QElectroTech
base: core22
adopt-info: qelectrotech
license: GPL-2.0
summary: Electrical diagram editor
description: |
QElectroTech, or QET in short, is a libre and open source desktop application
to create diagrams and schematics.
grade: stable
confinement: strict
compression: lzo
architectures:
- build-on: amd64
build-for: amd64
- build-on: arm64
build-for: arm64
layout:
/usr/local/share/qelectrotech:
symlink: $SNAP/usr/local/share/qelectrotech
apps:
qelectrotech:
command: usr/local/bin/qelectrotech
common-id: qelectrotech.desktop
extensions:
- kde-neon
plugs: &plugs [opengl, unity7, home, removable-media, gsettings, network, cups-control, wayland, x11]
environment: &env
TCL_LIBRARY: $SNAP/usr/share/tcltk/tcl8.6
HOME: $SNAP_USER_COMMON
PYTHONPATH: $SNAP:$SNAP/lib/python3.10/site-packages:$SNAP/usr/lib/python3.10:$SNAP/usr/lib/python3.10/lib-dynload
qet-tb-generator:
command: bin/qet_tb_generator
extensions:
- kde-neon
plugs: *plugs
environment: *env
parts:
launchers:
plugin: dump
source: build-aux/snap/local/launchers
organize:
'*': bin/
qet-tb-generator:
plugin: python
source: https://github.com/raulroda/qet_tb_generator-plugin.git
python-packages: [PySimpleGUI]
stage-packages:
- python3-lxml
- python3-tk
- libtk8.6
kde-sdk-setup:
plugin: nil
build-snaps:
- kf5-5-110-qt-5-15-11-core22-sdk
build-packages:
- g++
- mesa-common-dev
- libglvnd-dev
- rsync
override-build: |
rsync -a --ignore-existing /snap/kf5-5-110-qt-5-15-11-core22-sdk/current/ /
qelectrotech:
after: [kde-sdk-setup]
plugin: nil
source: .
stage-packages: [ git, sqlite3, xdg-user-dirs ]
build-packages:
- git
- libsqlite3-dev
override-build: |
displayed_version=$(cat sources/qetversion.cpp | grep "return QVersionNumber{"| head -n 1| awk -F "{" '{ print $2 }' | awk -F "}" '{ print $1 }' | sed -e 's/,/./g' -e 's/ //g')
snap_version="${displayed_version}-g$(git rev-parse --short=8 HEAD)"
modified_displayed_version="${snap_version}.snap"
sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h
craftctl set version="$snap_version"
qmake "$CRAFT_PART_SRC/qelectrotech.pro"
make -j${CRAFT_PARALLEL_BUILD_COUNT}
make install INSTALL_ROOT="$CRAFT_PART_INSTALL"
override-stage: |
craftctl default
# patch desktop file with correct icon path
SED_CMD="sed -i -E s|^Icon=(.*)|Icon=\${SNAP}/usr/local/share/icons/hicolor/128x128/apps/\1.png|g"
$SED_CMD usr/local/share/applications/org.qelectrotech.qelectrotech.desktop
cleanup:
after: [qelectrotech, qet-tb-generator]
plugin: nil
build-snaps: [kf5-5-110-qt-5-15-11-core22]
override-prime: |
set -eux
for snap in "kf5-5-110-qt-5-15-11-core22"; do # List all content-snaps you're using here
cd "/snap/$snap/current" && find . -type f,l -exec rm -f "$CRAFT_PRIME/{}" "$CRAFT_PRIME/usr/{}" \;
done
for cruft in bug lintian man; do
rm -rf $CRAFT_PRIME/usr/share/$cruft
done
find $CRAFT_PRIME/usr/share/doc/ -type f -not -name 'copyright' -delete
find $CRAFT_PRIME/usr/share -type d -empty -delete

View File

@ -0,0 +1,191 @@
# Header, don't edit
NLF v6
# Start editing here
# Language ID
2067
# Font and size - dash (-) means default
-
-
# Codepage - dash (-) means ANSI code page
1252
# RTL - anything else than RTL means LTR
-
# Translation by Ronny Desmedt (any credits should go here)
# ^Branding
Nullsoft Install System %s
# ^SetupCaption
$(^Name) Installatie
# ^UninstallCaption
$(^Name) Deïnstallatie
# ^LicenseSubCaption
: Licentie overeenkomst
# ^ComponentsSubCaption
: Installatie Opties
# ^DirSubCaption
: Installatie Map
# ^InstallingSubCaption
: Installeren
# ^CompletedSubCaption
: Voltooid
# ^UnComponentsSubCaption
: Deïnstallatie Opties
# ^UnDirSubCaption
: Deïnstallatie Map
# ^ConfirmSubCaption
: Bevestigen
# ^UninstallingSubCaption
: Deïnstalleren
# ^UnCompletedSubCaption
: Voltooid
# ^BackBtn
< &Terug
# ^NextBtn
&Volgende >
# ^AgreeBtn
Ik ben &Akkoord
# ^AcceptBtn
Ik &Accepteer de licentie overeenkomst
# ^DontAcceptBtn
Ik &Accepteer de licentie overeenkomst niet
# ^InstallBtn
&Installeer
# ^UninstallBtn
&Deïnstalleer
# ^CancelBtn
Afbreken
# ^CloseBtn
&Sluiten
# ^BrowseBtn
B&laderen...
# ^ShowDetailsBtn
Toon &details
# ^ClickNext
Klik op volgende om verder te gaan.
# ^ClickInstall
Klik op installeren om de installatie te starten.
# ^ClickUninstall
Klik op deïnstalleren om de installatie te verwijderen.
# ^Name
Naam
# ^Completed
Voltooid
# ^LicenseText
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te installeren. Als u akkord bent met de licentie overeenkomst, klik op akkoord.
# ^LicenseTextCB
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te installeren. Als u akkord bent met de licentie overeenkomst, klik op onderstaande selectievakje. $_CLICK
# ^LicenseTextRB
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te installeren. Als u akkord bent met de licentie overeenkomst, selecteer de eerste onderstaande optie. $_CLICK
# ^UnLicenseText
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te deïnstalleren. Als u akkord bent met de licentie overeenkomst, klik op akkoord.
# ^UnLicenseTextCB
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te deïnstalleren. Als u akkord bent met de licentie overeenkomst, klik op onderstaande selectievakje. $_CLICK
# ^UnLicenseTextRB
Gelieve de licentie overeenkomst te lezen alvorens $(^NameDA) te deïnstalleren. Als u akkord bent met de licentie overeenkomst, selecteer de eerste onderstaande optie. $_CLICK
# ^Custom
Aangepast
# ^ComponentsText
Selecteer de onderdelen die u wilt installeren en deselecteer de onderdelen die u niet wilt installeren. $_CLICK
# ^ComponentsSubText1
Selecteer een installatie type:
# ^ComponentsSubText2_NoInstTypes
Selecteer de onderdelen om te installeren:
# ^ComponentsSubText2
Of, selecteer optionelen onderdelen die u wilt installeren:
# ^UnComponentsText
Selecteer de onderdelen die u wilt deïnstalleren en deselecteer de onderdelen die u niet wilt deïinstalleren. $_CLICK
# ^UnComponentsSubText1
Selecteer een deïnstallatie type:
# ^UnComponentsSubText2_NoInstTypes
Selecteer de onderdelen om te deïnstalleren:
# ^UnComponentsSubText2
Of, selecteer optionelen onderdelen die u wilt deïnstalleren:
# ^DirText
De installatie van $(^NameDA) wordt in volgende map uitgevoerd. Om in een andere map te installeren, klik op bladeren om een andere map te selecteren. $_CLICK
# ^DirSubText
Installatie map
# ^DirBrowseText
Selecteerd de map om $(^NameDA) in te installeren:
# ^UnDirText
De deïnstallatie van $(^NameDA) in de volgende map. Om een andere map te deïnstalleren, klik op bladren om een andere map te selecteren. $_CLICK
# ^UnDirSubText
""
# ^UnDirBrowseText
Selecteer en map om $(^NameDA) van te deînstalleren:
# ^SpaceAvailable
"Beschikbare ruimte: "
# ^SpaceRequired
"Benodigde ruimte: "
# ^UninstallingText
$(^NameDA) wordt gedeïnstalleerd uit volgende map. $_CLICK
# ^UninstallingSubText
Deïnstalleren van:
# ^FileError
Fout bij openen van bestand om te schrijven: \r\n\r\n$0\r\n\r\nKlik op afbreken om de installatie te stoppen,\r\nOpnieuw om te proberen, of\r\nNegeren om dit bestand over te slaan.
# ^FileError_NoIgnore
Fout bij openen van bestand om te schrijven: \r\n\r\n$0\r\n\r\nOpnieuw om te proberen, of\r\nAfbreken om de installatie te stoppen.
# ^CantWrite
"Kan niet schrijven: "
# ^CopyFailed
Kopieren mislukt
# ^CopyTo
"Copier naar "
# ^Registering
"Registreren: "
# ^Unregistering
"Deregistreren: "
# ^SymbolNotFound
"Kan symbool niet vinden: "
# ^CouldNotLoad
"Kan niet laden: "
# ^CreateFolder
"Map maken: "
# ^CreateShortcut
"Snelkoppeling maken: "
# ^CreatedUninstaller
"Doe deïnstallatie: "
# ^Delete
"Verwijder bestanden: "
# ^DeleteOnReboot
Verwijder bij herstarten: "
# ^ErrorCreatingShortcut
"Fout bij maken snelkoppeling: "
# ^ErrorCreating
"Fout bij maken: "
# ^ErrorDecompressing
Fout bij uitpakken gegevens! Beschadigd bestand?
# ^ErrorRegistering
Fout bij registreren DLL
# ^ExecShell
"ExecShell: "
# ^Exec
"Uitvoeren: "
# ^Extract
"Extract: "
# ^ErrorWriting
Fout: fout bij schrijven naar bestand "
# ^InvalidOpcode
Installie beschadigd: niet toegestane opcode
# ^NoOLE
"Geen OLE voor: "
# ^OutputFolder
"Bestemmings map: "
# ^RemoveFolder
"Verwijder mapr: "
# ^RenameOnReboot
"Hernoem bij opstarten: "
# ^Rename
"Hernoem: "
# ^Skipped
Overgeslagen: "
# ^CopyDetails
Copier details naar klembord
# ^LogInstall
Log instaltie proces
# ^Byte
B
# ^Kilo
K
# ^Mega
M
# ^Giga
G

View File

@ -0,0 +1,128 @@
;Language:Dutch_Belgium (2067)
;By Ronny Desmedt
!insertmacro LANGFILE "Dutch_Belgium" "Dutch_Belgium"
!ifdef MUI_WELCOMEPAGE
${LangFileString} MUI_TEXT_WELCOME_INFO_TITLE "Welkom bij $(^NameDA) installatie Wizard"
${LangFileString} MUI_TEXT_WELCOME_INFO_TEXT "Deze wizard zal u begeleiden bij de installatie van $(^NameDA).$\r$\n$\r$\nHet is aanbevol dat u alle andere programmas afsluit voordat u deze installatie uitvoerd. Dit geeft de mogelijkheid om relevante systeem bestanden bij te werken zonder dat uw systeem terug moet opstarten.$\r$\n$\r$\n$_CLICK"
!endif
!ifdef MUI_UNWELCOMEPAGE
${LangFileString} MUI_UNTEXT_WELCOME_INFO_TITLE "Welkom bij de $(^NameDA) deïnstallatie wizard"
${LangFileString} MUI_UNTEXT_WELCOME_INFO_TEXT "Deze wizard zal u begeleiden bij de deïnstallatie van $(^NameDA).$\r$\n$\r$\nControleer of $(^NameDA) is afgesloten alvorens de deïnstallatie te starten.$\r$\n$\r$\n$_CLICK"
!endif
!ifdef MUI_LICENSEPAGE
${LangFileString} MUI_TEXT_LICENSE_TITLE "Licentie overeenkomst"
${LangFileString} MUI_TEXT_LICENSE_SUBTITLE "Gelieve de licentie te lezen alvorens U $(^NameDA) installeert."
${LangFileString} MUI_INNERTEXT_LICENSE_BOTTOM "Klik op akkoord om de overeenkomst te aanvaarden. U moet de overeenkomst aanvaarden om $(^NameDA) te installeren."
${LangFileString} MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX "Als u de voorwaarden van de overeenkomst aanvaard, Klik op onderstaande selectievakje. U moet de overeenkomst aanvaarden om $(^NameDA) te installeren. $_CLICK"
${LangFileString} MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS "Als u de voorwaarden van de overeenkomst aanvaard, selecteer de eerste onderstaande optie. U moet de overeenkomst aanvaarden om $(^NameDA) te installeren. $_CLICK"
!endif
!ifdef MUI_UNLICENSEPAGE
${LangFileString} MUI_UNTEXT_LICENSE_TITLE "Licentie overeenkomst"
${LangFileString} MUI_UNTEXT_LICENSE_SUBTITLE "Gelieve de licentie overeenkomst te herlezen alvorens met de deïnstallatie van $(^NameDA) verder te doen."
${LangFileString} MUI_UNINNERTEXT_LICENSE_BOTTOM "Klik op akkoord om de overeenkomst te aanvaarden. U moet de overeenkomst aanvaarden om $(^NameDA) te deïnstalleren."
${LangFileString} MUI_UNINNERTEXT_LICENSE_BOTTOM_CHECKBOX "Als u de voorwaarden van de overeenkomst aanvaard, Klik op onderstaande selectievakje. U moet de overeenkomst aanvaarden om $(^NameDA) te deïnstalleren. $_CLICK"
${LangFileString} MUI_UNINNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS "Als u de voorwaarden van de overeenkomst aanvaard, selecteer de eerste onderstaande optie. U moet de overeenkomst aanvaarden om $(^NameDA) te deïnstalleren. $_CLICK"
!endif
!ifdef MUI_LICENSEPAGE | MUI_UNLICENSEPAGE
${LangFileString} MUI_INNERTEXT_LICENSE_TOP "Gebruik pagina neer om de rest van de overeenkomst te lezen."
!endif
!ifdef MUI_COMPONENTSPAGE
${LangFileString} MUI_TEXT_COMPONENTS_TITLE "Kies onderdelen"
${LangFileString} MUI_TEXT_COMPONENTS_SUBTITLE "Kies de onderdelen van $(^NameDA) die u wilt installeren."
!endif
!ifdef MUI_UNCOMPONENTSPAGE
${LangFileString} MUI_UNTEXT_COMPONENTS_TITLE "Kies onderdelen"
${LangFileString} MUI_UNTEXT_COMPONENTS_SUBTITLE "Kies de onderdelen van $(^NameDA) die u wilt deïnstalleren."
!endif
!ifdef MUI_COMPONENTSPAGE | MUI_UNCOMPONENTSPAGE
${LangFileString} MUI_INNERTEXT_COMPONENTS_DESCRIPTION_TITLE "Beschrijving"
!ifndef NSIS_CONFIG_COMPONENTPAGE_ALTERNATIVE
${LangFileString} MUI_INNERTEXT_COMPONENTS_DESCRIPTION_INFO "Beweeg de muisaanwijzer over de onderdelen om de beschrijving te zien."
!else
${LangFileString} MUI_INNERTEXT_COMPONENTS_DESCRIPTION_INFO "Beweeg de muisaanwijzer over de onderdelen om de beschrijving te zien."
!endif
!endif
!ifdef MUI_DIRECTORYPAGE
${LangFileString} MUI_TEXT_DIRECTORY_TITLE "Kies een installatie locatie"
${LangFileString} MUI_TEXT_DIRECTORY_SUBTITLE "Kies een map waar U $(^NameDA) wilt installeren."
!endif
!ifdef MUI_UNDIRECTORYPAGE
${LangFileString} MUI_UNTEXT_DIRECTORY_TITLE "Kies een deïnstallatie locatie"
${LangFileString} MUI_UNTEXT_DIRECTORY_SUBTITLE "Kies een map waar U $(^NameDA) wilt deïnstalleren."
!endif
!ifdef MUI_INSTFILESPAGE
${LangFileString} MUI_TEXT_INSTALLING_TITLE "Installeren"
${LangFileString} MUI_TEXT_INSTALLING_SUBTITLE "Even gedult terwijl $(^NameDA) wordt geinstalleerd."
${LangFileString} MUI_TEXT_FINISH_TITLE "Installatie voltooid"
${LangFileString} MUI_TEXT_FINISH_SUBTITLE "De installatie is succesvol afgerond."
${LangFileString} MUI_TEXT_ABORT_TITLE "Installatie is afgebroken"
${LangFileString} MUI_TEXT_ABORT_SUBTITLE "De installatie is niet voltooid."
!endif
!ifdef MUI_UNINSTFILESPAGE
${LangFileString} MUI_UNTEXT_UNINSTALLING_TITLE "DeïnEven geduld terwijl $(^NameDA) wordt gedeïnstalleerd."
${LangFileString} MUI_UNTEXT_FINISH_TITLE "Deïnstallatie voltooid"
${LangFileString} MUI_UNTEXT_FINISH_SUBTITLE "Deïnstallatie succesvol afgerond."
${LangFileString} MUI_UNTEXT_ABORT_TITLE "Deïnstallatie onderbroken"
${LangFileString} MUI_UNTEXT_ABORT_SUBTITLE "Deïnstallatie is niet voltooid."
!endif
!ifdef MUI_FINISHPAGE
${LangFileString} MUI_TEXT_FINISH_INFO_TITLE "Voltooien van de $(^NameDA) installatie Wizard"
${LangFileString} MUI_TEXT_FINISH_INFO_TEXT "$(^NameDA) is geinstalleerd op uw computer.$\r$\n$\r$\nKlik op einde om de installatie wizard af te sluiten."
${LangFileString} MUI_TEXT_FINISH_INFO_REBOOT "Uw computer moet herstarten op de installatie van $(^NameDA) te voltooien. Wilt u nu opnieuw opstarten?"
!endif
!ifdef MUI_UNFINISHPAGE
${LangFileString} MUI_UNTEXT_FINISH_INFO_TITLE "Voltooien van de $(^NameDA) deïnstallatie wizard"
${LangFileString} MUI_UNTEXT_FINISH_INFO_TEXT "$(^NameDA) is gedeïnstalleerd op uw computer.$\r$\n$\r$\nKlik op einde om de installatie wizard af te sluiten."
${LangFileString} MUI_UNTEXT_FINISH_INFO_REBOOT "Uw computer moet herstarten op de deïnstallatie van $(^NameDA)te voltooien. Wilt u nu opnieuw opstarten?"
!endif
!ifdef MUI_FINISHPAGE | MUI_UNFINISHPAGE
${LangFileString} MUI_TEXT_FINISH_REBOOTNOW "Nu herstarten"
${LangFileString} MUI_TEXT_FINISH_REBOOTLATER "Ik wil later herstarten"
${LangFileString} MUI_TEXT_FINISH_RUN "&Starten $(^NameDA)"
${LangFileString} MUI_TEXT_FINISH_SHOWREADME "&Toon leesmij"
${LangFileString} MUI_BUTTONTEXT_FINISH "&Einde"
!endif
!ifdef MUI_STARTMENUPAGE
${LangFileString} MUI_TEXT_STARTMENU_TITLE "Kies start menu map"
${LangFileString} MUI_TEXT_STARTMENU_SUBTITLE "Kies een map in start menu voor de snelkoppeling van $(^NameDA)."
${LangFileString} MUI_INNERTEXT_STARTMENU_TOP "Kies een map in start menu waar u de programma snelkoppelingen wilt aanmaken. U kan ook de naam van een nieuwe map opgeven."
${LangFileString} MUI_INNERTEXT_STARTMENU_CHECKBOX "Maak geen snelkoppelingen"
!endif
!ifdef MUI_UNCONFIRMPAGE
${LangFileString} MUI_UNTEXT_CONFIRM_TITLE "Deïnstalleer$(^NameDA)"
${LangFileString} MUI_UNTEXT_CONFIRM_SUBTITLE "Verwijder $(^NameDA) van uw computer."
!endif
!ifdef MUI_ABORTWARNING
${LangFileString} MUI_TEXT_ABORTWARNING "Weet u zeker dat U installatie van $(^Name) wilt afbreken?"
!endif
!ifdef MUI_UNABORTWARNING
${LangFileString} MUI_UNTEXT_ABORTWARNING "Weet u zeker dat U de deïnstallatie van $(^Name)wilt afbreken?"
!endif
!ifdef MULTIUSER_INSTALLMODEPAGE
${LangFileString} MULTIUSER_TEXT_INSTALLMODE_TITLE "Kies gebruikers"
${LangFileString} MULTIUSER_TEXT_INSTALLMODE_SUBTITLE "Kies voor welke gebruikers U $(^NameDA) wilt installeren."
${LangFileString} MULTIUSER_INNERTEXT_INSTALLMODE_TOP "Kies of U $(^NameDA) alleen voor u zelf of voor alle gebruikers op deze computer wilt installeren. $(^ClickNext)"
${LangFileString} MULTIUSER_INNERTEXT_INSTALLMODE_ALLUSERS "Installeer voor iedereen die deze computer gebruikt"
${LangFileString} MULTIUSER_INNERTEXT_INSTALLMODE_CURRENTUSER "Installeer alleen voor mij"
!endif

View File

@ -0,0 +1,14 @@
@echo off
rem Se rend dans le dossier qui convient
set current_dir=%~dp0
cd /d %current_dir%
rem lance QElectroTech
rem Sans option --config-dir, la configuration de QElectroTech seront dans
rem "C:/Users/<USER>/AppData/Local/QElectroTech/QElectroTech"
rem Sans l'option --data-dir, les données utilisateur (elements, titleblocks,
rem log, ...) de QElectroTech sont stockées dans
rem "C:/Users/<USER>/AppData/Roaming/QElectroTech/QElectroTech"
set command=bin\qelectrotech.exe --common-elements-dir=elements/ --common-tbt-dir=titleblocks/ --lang-dir=lang/ -style windowsvista %*
@start %command%

407
build-aux/windows/QET64.nsi Normal file
View File

@ -0,0 +1,407 @@
; this file is part of installer for QElectroTech
; Copyright (C)2015 QElectroTech Team <scorpio@qelectrotech.org>
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation; either
; version 2 of the License, or (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
; WebSite : http://qelectrotech.org/
;--------------------------------
;Include Modern UI
!include x64.nsh
!include "MUI2.nsh"
!include "FileFunc.nsh"
!insertmacro Locate
!include FileFunc.nsh
!insertmacro GetParameters
!insertmacro GetOptions
!ifndef PROC
!define PROC 32 ;
!endif
; MUI Settings
;--------------------------------
;General
; General Product Description Definitions
!define SOFT_NAME "QElectroTech"
!define SOFT_VERSION "0.5-dev_x86_64-win64+4094"
!define SOFT_WEB_SITE "http://qelectrotech.org/"
!define SOFT_BUILD "1"
SetCompressor /final /solid lzma
CRCCheck force
XPStyle on
BrandingText "${SOFT_NAME}-${SOFT_VERSION}-${SOFT_BUILD}" ; Shows in the Bottom Left of the installer
;Name and file
Name "${SOFT_NAME} ${SOFT_VERSION}"
OutFile "Installer_${SOFT_NAME}-${SOFT_VERSION}-${SOFT_BUILD}.exe"
;Default installation folder
InstallDir "$PROGRAMFILES64\${SOFT_NAME}"
;Get installation folder from registry if available
InstallDirRegKey HKCU "Software\${SOFT_NAME}" ""
;Request application privileges for Windows Vista
; we request for admin because we write stuff into the registry
RequestExecutionLevel admin
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\XPUI-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\XPUI-uninstall.ico"
!define MUI_WELCOMEFINISHPAGE_BITMAP ".\images\wizard.bmp"
!define MUI_WELCOMEFINISHPAGE_BITMAP_NOSTRETCH
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP ".\images\header.bmp" ; optional
;--------------------------------
;Language Selection Dialog Settings
;Remember the installer language
!define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
!define MUI_LANGDLL_REGISTRY_KEY "Software\${SOFT_NAME}"
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
;--------------------------------
;Pages
!define MUI_COMPONENTSPAGE_SMALLDESC
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "files\LICENSE"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
; Finish page and checkbox to run QElectroTech
!define MUI_FINISHPAGE_RUN "$INSTDIR\Lancer QET.bat"
!define MUI_FINISHPAGE_RUN_NOTCHECKED
!define MUI_FINISHPAGE_RUN_TEXT "$(Check)"
!insertmacro MUI_PAGE_FINISH
;--------------------------------
;Languages
;Since NSIS 2.26, the language selection dialog of Modern UI hides languages unsupported by the user's selected codepage by default.
;To revert to the old behavior and display all languages, no matter what the user will see when they're selected, use MUI_LANGDLL_ALLLANGUAGES.
!define MUI_LANGDLL_ALLLANGUAGES
; For consistency, we limit the installer to languages supported by QElectroTech itself
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "Portuguese"
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "Polish"
!insertmacro MUI_LANGUAGE "Greek"
!insertmacro MUI_LANGUAGE "Arabic"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Italian"
!insertmacro MUI_LANGUAGE "Romanian"
!insertmacro MUI_LANGUAGE "Catalan"
!insertmacro MUI_LANGUAGE "Croatian"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "Dutch_Belgium"
!insertmacro MUI_LANGUAGE "Danish"
!insertmacro MUI_LANGUAGE "Swedish"
!insertmacro MUI_RESERVEFILE_LANGDLL
!include lang_extra.nsh
!include lang_extra_fr.nsh
SetOverwrite on
Section "Main Program"
SectionIn RO ; Read only, always installed
Setoutpath "$INSTDIR\bin\"
File "./files/bin/${SOFT_NAME}.exe"
Setoutpath "$INSTDIR"
File "./files/ChangeLog"
File "./files/CREDIT"
File "./files/ELEMENTS.LICENSE"
File "./files/LICENSE"
File "./files/qet_uninstall_file_associations.reg"
File "./files/README"
File "./files/register_filetypes.bat"
File "Lancer QET.bat"
SetOutPath "$INSTDIR"
File /r "./files/ico"
SectionEnd
;---------------------------
SetOverwrite on
SubSection "$(Elements)" SEC01
SetOverwrite on
Section "$(Electric)"
SetOutPath "$INSTDIR\elements"
File /r "./files/elements/10_electric"
SectionEnd
SetOverwrite on
Section "$(Logic)"
SetOutPath "$INSTDIR\elements"
File /r "./files/elements/20_logic"
SectionEnd
SetOverwrite on
Section "$(Hydraulic)"
SetOutPath "$INSTDIR\elements"
File /r "./files/elements/30_hydraulic"
SectionEnd
SetOverwrite on
Section "$(Pneumatic)"
SetOutPath "$INSTDIR\elements"
File /r "./files/elements/50_pneumatic"
SectionEnd
;---------------------------------
SubSection "$(Energy)"
SetOverwrite on
Section "$(water)"
SetOutPath "$INSTDIR\elements\60_energy"
File /r "./files/elements/60_energy/11_water"
File /r "./files/elements/60_energy/"
SectionEnd
SetOverwrite on
Section "$(Refrigeration)"
SetOutPath "$INSTDIR\elements\60_energy"
File /r "./files/elements/60_energy/21_refrigeration"
File /r "./files/elements/60_energy/"
SectionEnd
SetOverwrite on
Section "$(Solar_thermal)"
SetOutPath "$INSTDIR\elements\60_energy"
File /r "./files/elements/60_energy/31_solar_thermal"
File /r "./files/elements/60_energy/"
SectionEnd
SubSectionEnd
SubSectionEnd
;-------------------------------
SetOverwrite on
Section "$(Lang)" SEC02
SetOutPath "$INSTDIR\lang"
File "./files/lang/*.qm"
SectionEnd
SetOverwrite on
Section "$(Titleblocks)" SEC03
SetOutPath "$INSTDIR"
File /r "./files/titleblocks"
SectionEnd
SetOverwrite on
Section "$(Examples)" SEC04
SetOutPath "$INSTDIR"
File /r "./files/examples"
SectionEnd
;--------------------------------
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SEC01} $(var1)
!insertmacro MUI_DESCRIPTION_TEXT ${SEC02} $(var2)
!insertmacro MUI_DESCRIPTION_TEXT ${SEC03} $(var3)
!insertmacro MUI_DESCRIPTION_TEXT ${SEC04} $(var4)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------
;Installer Sections
Section ""
SetOutPath "$INSTDIR"
;Store installation folder
WriteRegStr HKCU "Software\${SOFT_NAME}" "" $INSTDIR
; write uninstall strings
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SOFT_NAME}" "DisplayName" "${SOFT_NAME} (remove only)"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SOFT_NAME}" "UninstallString" '"$INSTDIR\Uninstall.exe"'
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
SetRegView 64
; get the final path for the icons and the launch script
Var /GLOBAL final_qet_exe
Var /GLOBAL final_project_ico
Var /GLOBAL final_element_ico
Var /GLOBAL final_titleblock_ico
StrCpy $final_qet_exe "$INSTDIR\Lancer QET.bat"
StrCpy $final_project_ico "$INSTDIR\ico\application-x-qet-project.ico"
StrCpy $final_element_ico "$INSTDIR\ico\application-x-qet-element.ico"
StrCpy $final_titleblock_ico "$INSTDIR\ico\application-x-qet-titleblock.ico"
; write file associations registry keys
WriteRegStr HKEY_CLASSES_ROOT "Applications\qelectrotech.exe\shell\open\command" "" "$\"$final_qet_exe$\" $\"%1$\""
WriteRegStr HKEY_CLASSES_ROOT ".qet" "" "qet_diagram_file"
WriteRegStr HKEY_CLASSES_ROOT "qet_diagram_file" "" "Diagram QET"
WriteRegDWORD HKEY_CLASSES_ROOT "qet_diagram_file" "EditFlags" 0x00000000
WriteRegDWORD HKEY_CLASSES_ROOT "qet_diagram_file" "BrowserFlags" 0x00000008
WriteRegStr HKEY_CLASSES_ROOT "qet_diagram_file\DefaultIcon" "" "$final_project_ico"
WriteRegStr HKEY_CLASSES_ROOT "qet_diagram_file\shell\open\command" "" "$\"$final_qet_exe$\" $\"%1$\""
WriteRegStr HKEY_CLASSES_ROOT ".elmt" "" "qet_element_file"
WriteRegStr HKEY_CLASSES_ROOT "qet_element_file" "" "Element QET"
WriteRegDWORD HKEY_CLASSES_ROOT "qet_element_file" "EditFlags" 0x00000000
WriteRegDWORD HKEY_CLASSES_ROOT "qet_element_file" "BrowserFlags" 0x00000008
WriteRegStr HKEY_CLASSES_ROOT "qet_element_file\DefaultIcon" "" "$final_element_ico"
WriteRegStr HKEY_CLASSES_ROOT "qet_element_file\shell\open\command" "" "$\"$final_qet_exe$\" $\"%1$\""
WriteRegStr HKEY_CLASSES_ROOT ".titleblock" "" "qet_titleblock_file"
WriteRegStr HKEY_CLASSES_ROOT "qet_titleblock_file" "" "Titleblock QET"
WriteRegDWORD HKEY_CLASSES_ROOT "qet_titleblock_file" "EditFlags" 0x00000000
WriteRegDWORD HKEY_CLASSES_ROOT "qet_titleblock_file" "BrowserFlags" 0x00000008
WriteRegStr HKEY_CLASSES_ROOT "qet_titleblock_file\DefaultIcon" "" "$final_titleblock_ico"
WriteRegStr HKEY_CLASSES_ROOT "qet_titleblock_file\shell\open\command" "" "$\"$final_qet_exe$\" $\"%1$\""
SetShellVarContext all ; all users
; shortcuts in the start menu
CreateDirectory "$SMPROGRAMS\${SOFT_NAME}"
CreateDirectory "$SMPROGRAMS\${SOFT_NAME}\Manual"
CreateDirectory "$SMPROGRAMS\${SOFT_NAME}\Upgrade"
CreateShortCut "$SMPROGRAMS\${SOFT_NAME}\QElectroTech.lnk" "$INSTDIR\Lancer QET.bat" 0 "$INSTDIR\ico\qelectrotech.ico"
CreateShortCut "$SMPROGRAMS\${SOFT_NAME}\Uninstall QElectroTech.lnk" "$INSTDIR\Uninstall.exe"
; TODO : add the QuickStart Guide (or any other documentation) when available
; shortcut on the desktop
CreateShortCut "$DESKTOP\QElectroTech.lnk" "$INSTDIR\Lancer QET.bat" 0 "$INSTDIR\ico\qelectrotech.ico"
WriteINIStr "$SMPROGRAMS\${SOFT_NAME}\Manual\Manual_English.url" "InternetShortcut" "URL" "https://download.qelectrotech.org/qet/manual_0.7/build/index.html"
WriteINIStr "$SMPROGRAMS\${SOFT_NAME}\Manual\Manual_Russian.url" "InternetShortcut" "URL" "https://download.qelectrotech.org/qet/joshua/html/QET_ru.html"
WriteINIStr "$SMPROGRAMS\${SOFT_NAME}\Upgrade\Download.url" "InternetShortcut" "URL" "https://download.qelectrotech.org/qet/builds/nightly/"
WriteINIStr "$SMPROGRAMS\${SOFT_NAME}\Donate.url" "InternetShortcut" "URL" "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZZHC9D7C3MDPC"
;changing $INSTDIR\elements\ *.elmt to read-only attribute
${Locate} "$INSTDIR\elements\" "/L=FD /M=*.elmt" "LocateCallback"
IfErrors 0 +2
;MessageBox MB_OK "Error"
SectionEnd
Function LocateCallback
SetFileAttributes $R9 FILE_ATTRIBUTE_READONLY
Push $0
FunctionEnd
;--------------------------------
;Installer Functions
Function .onInit
!insertmacro MUI_LANGDLL_DISPLAY
${If} ${RunningX64}
${Else}
MessageBox MB_OK|MB_ICONSTOP $(wrongArch)
Abort $(wrongArch)
${EndIf}
;Auto-uninstall old before installing new
ReadRegStr $R0 HKLM \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\${SOFT_NAME}" \
"UninstallString"
StrCmp $R0 "" done
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"$(installed)" \
IDOK uninst
Abort
;Run the uninstaller
uninst:
ClearErrors
ExecWait '$R0 _?=$INSTDIR' ;Do not copy the uninstaller to a temp file
IfErrors no_remove_uninstaller done
;You can either use Delete /REBOOTOK in the uninstaller or add some code
;here to remove the uninstaller. Use a registry key to check
;whether the user has chosen to uninstall. If you are using an uninstaller
;components page, make sure all sections are uninstalled.
no_remove_uninstaller:
done:
FunctionEnd
;--------------------------------
;Descriptions
;USE A LANGUAGE STRING IF YOU WANT YOUR DESCRIPTIONS TO BE LANGAUGE SPECIFIC
;Assign descriptions to sections
;!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
; !insertmacro MUI_DESCRIPTION_TEXT ${CopyFiles} "CopyFiles"
;!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------
;Uninstaller Section
Section "Uninstall"
SetShellVarContext all ; all users
; remove start menu shortcuts
RMDir /r "$SMPROGRAMS\${SOFT_NAME}"
; remove shortcut on the desktop
Delete "$DESKTOP\QElectroTech.lnk"
; remove the application files
Delete "$INSTDIR\*.*"
RMDir /r "$INSTDIR"
;remove installation registry keys
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SOFT_NAME}"
DeleteRegKey /ifempty HKCU "Software\${SOFT_NAME}"
; remove file associations registry keys
DeleteRegKey HKEY_CLASSES_ROOT "Applications\qelectrotech.exe"
DeleteRegKey HKEY_CLASSES_ROOT ".qet"
DeleteRegKey HKEY_CLASSES_ROOT "qet_diagram_file"
DeleteRegKey HKEY_CLASSES_ROOT ".elmt"
DeleteRegKey HKEY_CLASSES_ROOT "qet_element_file"
DeleteRegKey HKEY_CLASSES_ROOT ".titleblock"
DeleteRegKey HKEY_CLASSES_ROOT "qet_titleblock_file"
IfFileExists "$INSTDIR" 0 NoErrorMsg
;MessageBox MB_OK "Note: $INSTDIR could not be removed!" IDOK 0 ; skipped if file doesn't exist
NoErrorMsg:
SectionEnd
;--------------------------------
;Uninstaller Functions
Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
FunctionEnd

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -0,0 +1,336 @@
LangString installed ${LANG_ENGLISH} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_ENGLISH} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_ENGLISH} "Elements"
LangString Electric ${LANG_ENGLISH} "Electric"
LangString Logic ${LANG_ENGLISH} "Logic"
LangString Hydraulic ${LANG_ENGLISH} "Hydraulic"
LangString Pneumatic ${LANG_ENGLISH} "Pneumatic"
LangString Energy ${LANG_ENGLISH} "Energy"
LangString water ${LANG_ENGLISH} "Water"
LangString Refrigeration ${LANG_ENGLISH} "Refrigeration"
LangString Solar_thermal ${LANG_ENGLISH} "Solar_thermal"
LangString Lang ${LANG_ENGLISH} "Lang"
LangString Titleblocks ${LANG_ENGLISH} "Titleblocks"
LangString Examples ${LANG_ENGLISH} "Examples"
LangString Check ${LANG_ENGLISH} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_ENGLISH} "Elements of the official collection"
LangString var2 ${LANG_ENGLISH} "languagues files"
LangString var3 ${LANG_ENGLISH} "Examples of cartridges"
LangString var4 ${LANG_ENGLISH} "Examples of diagrams"
LangString installed ${LANG_POLISH} "${SOFT_NAME} jest już zainstalowany. $\n$\nKliknij `OK` aby odinstalować poprzednią wersję lub `Anuluj` aby przerwać aktualizację."
LangString wrongArch ${LANG_POLISH} "To oprogramowanie jest przeznaczone wyłącznie dla komputerów 64 bitowych."
LangString Elements ${LANG_POLISH} "Elementy"
LangString Electric ${LANG_POLISH} "Elektryka"
LangString Logic ${LANG_POLISH} "Automatyka"
LangString Hydraulic ${LANG_POLISH} "Hydraullika"
LangString Pneumatic ${LANG_POLISH} "Pneumatyka"
LangString Energy ${LANG_POLISH} "Energia"
LangString water ${LANG_POLISH} "Woda"
LangString Refrigeration ${LANG_POLISH} "Chłodnictwo"
LangString Solar_thermal ${LANG_POLISH} "Energia słoneczna"
LangString Lang ${LANG_POLISH} "Język"
LangString Titleblocks ${LANG_POLISH} "Tabliczki rysunkowe"
LangString Examples ${LANG_POLISH} "Przykłady"
LangString Check ${LANG_POLISH} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_POLISH} "Elements of the official collection"
LangString var2 ${LANG_POLISH} "languagues files"
LangString var3 ${LANG_POLISH} "Examples of cartridges"
LangString var4 ${LANG_POLISH} "Examples of diagrams"
LangString installed ${LANG_GREEK} "${SOFT_NAME} είναι ήδη εγκατεστημένο. $\n$\nΠάτησε `OK` για αφαίρεση της προηγούμενης έκδοσης ή `Cancel` για ακύρωση της αναβάθμισης."
LangString wrongArch ${LANG_GREEK} "Αυτή η διανομή είναι μόνο για 64μπιτους υπολογιστές."
LangString Elements ${LANG_GREEK} "Στοιχεία"
LangString Electric ${LANG_GREEK} "Ηλεκτρικά"
LangString Logic ${LANG_GREEK} "Λογικά"
LangString Hydraulic ${LANG_GREEK} "Υδραυλικά"
LangString Pneumatic ${LANG_GREEK} "Πνευματικά"
LangString Energy ${LANG_GREEK} "Ενέργεια"
LangString water ${LANG_GREEK} "Νερό"
LangString Refrigeration ${LANG_GREEK} "Ψύξη"
LangString Solar_thermal ${LANG_GREEK} "Ηλιοθερμία"
LangString Lang ${LANG_GREEK} "Γλώσσα"
LangString Titleblocks ${LANG_GREEK} "Πινακίδες"
LangString Examples ${LANG_GREEK} "Παραδείγματα"
LangString Check ${LANG_GREEK} "Επιλέξτε για εκκίνηση ${SOFT_NAME}"
LangString var1 ${LANG_GREEK} "Στοιχεία της επίσημης συλλογής"
LangString var2 ${LANG_GREEK} "Αρχεία γλωσσών"
LangString var3 ${LANG_GREEK} "Examples of cartridges"
LangString var4 ${LANG_GREEK} "Παραδείγματα διαγραμμάτων"
LangString installed ${LANG_CZECH} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_CZECH} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_CZECH} "Elements"
LangString Electric ${LANG_CZECH} "Electric"
LangString Logic ${LANG_CZECH} "Logic"
LangString Hydraulic ${LANG_CZECH} "Hydraulic"
LangString Pneumatic ${LANG_CZECH} "Pneumatic"
LangString Energy ${LANG_CZECH} "Energy"
LangString water ${LANG_CZECH} "Water"
LangString Refrigeration ${LANG_CZECH} "Refrigeration"
LangString Solar_thermal ${LANG_CZECH} "Solar_thermal"
LangString Lang ${LANG_CZECH} "Lang"
LangString Titleblocks ${LANG_CZECH} "Titleblocks"
LangString Examples ${LANG_CZECH} "Examples"
LangString Check ${LANG_CZECH} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_CZECH} "Elements of the official collection"
LangString var2 ${LANG_CZECH} "languagues files"
LangString var3 ${LANG_CZECH} "Examples of cartridges"
LangString var4 ${LANG_CZECH} "Examples of diagrams"
LangString installed ${LANG_SPANISH} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_SPANISH} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_SPANISH} "Elements"
LangString Electric ${LANG_SPANISH} "Electric"
LangString Logic ${LANG_SPANISH} "Logic"
LangString Hydraulic ${LANG_SPANISH} "Hydraulic"
LangString Pneumatic ${LANG_SPANISH} "Pneumatic"
LangString Energy ${LANG_SPANISH} "Energy"
LangString water ${LANG_SPANISH} "Water"
LangString Refrigeration ${LANG_SPANISH} "Refrigeration"
LangString Solar_thermal ${LANG_SPANISH} "Solar_thermal"
LangString Lang ${LANG_SPANISH} "Lang"
LangString Titleblocks ${LANG_SPANISH} "Titleblocks"
LangString Examples ${LANG_SPANISH} "Examples"
LangString Check ${LANG_SPANISH} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_SPANISH} "Elements of the official collection"
LangString var2 ${LANG_SPANISH} "languagues files"
LangString var3 ${LANG_SPANISH} "Examples of cartridges"
LangString var4 ${LANG_SPANISH} "Examples of diagrams"
LangString installed ${LANG_GERMAN} "${SOFT_NAME} ist bereits installiert. $\n$\nKlicken Sie auf `OK`, um die alte Version zu deinstallieren, oder auf `Abbrechen`, um das Upgrade abzubrechen."
LangString wrongArch ${LANG_GERMAN} "Dieses Programm läuft ausschließlich unter Windows 64 Bit."
LangString Elements ${LANG_GERMAN} "Bauteile"
LangString Electric ${LANG_GERMAN} "Elektrik"
LangString Logic ${LANG_GERMAN} "Logik"
LangString Hydraulic ${LANG_GERMAN} "Hydraulik"
LangString Pneumatic ${LANG_GERMAN} "Pneumatik"
LangString Energy ${LANG_GERMAN} "Energietechnik"
LangString water ${LANG_GERMAN} "Wasser"
LangString Refrigeration ${LANG_GERMAN} "Kältetechnik"
LangString Solar_thermal ${LANG_GERMAN} "Solar-Wärmetechnik"
LangString Lang ${LANG_GERMAN} "Sprachen"
LangString Titleblocks ${LANG_GERMAN} "Schriftfelder"
LangString Examples ${LANG_GERMAN} "Beispiele"
LangString Check ${LANG_GERMAN} "Ankreuzen zum Starten von ${SOFT_NAME}"
LangString var1 ${LANG_GERMAN} "Elemente der offiziellen Sammlung"
LangString var2 ${LANG_GERMAN} "Sprachdateien"
LangString var3 ${LANG_GERMAN} "Schriftfeld-Beispiele"
LangString var4 ${LANG_GERMAN} "Schaltplan-Beispiele"
LangString installed ${LANG_RUSSIAN} "${SOFT_NAME} уже установлен. $\n$\nДля удаления предыдущей версии нажмите `OK` или `Cancel` для отмены обновления."
LangString wrongArch ${LANG_RUSSIAN} "Эта версия только для 64 битных компьютеров."
LangString Elements ${LANG_RUSSIAN} "Элементы"
LangString Electric ${LANG_RUSSIAN} "Электротехника"
LangString Logic ${LANG_RUSSIAN} "Логика"
LangString Hydraulic ${LANG_RUSSIAN} "Гидравлика"
LangString Pneumatic ${LANG_RUSSIAN} "Пневматика"
LangString Energy ${LANG_RUSSIAN} "Энергетика"
LangString water ${LANG_RUSSIAN} "Водоснабжение"
LangString Refrigeration ${LANG_RUSSIAN} "Холодильная техника"
LangString Solar_thermal ${LANG_RUSSIAN} "Солнечная-тепловая"
LangString Lang ${LANG_RUSSIAN} "Язык"
LangString Titleblocks ${LANG_RUSSIAN} "Штампы"
LangString Examples ${LANG_RUSSIAN} "Примеры"
LangString Check ${LANG_RUSSIAN} "Нажмите для запуска ${SOFT_NAME}"
LangString var1 ${LANG_RUSSIAN} "Элементы официальной коллекции"
LangString var2 ${LANG_RUSSIAN} "языковые файлы"
LangString var3 ${LANG_RUSSIAN} "Примеры штампов"
LangString var4 ${LANG_RUSSIAN} "Примеры схем"
LangString installed ${LANG_ARABIC} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_ARABIC} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_ARABIC} "Elements"
LangString Electric ${LANG_ARABIC} "Electric"
LangString Logic ${LANG_ARABIC} "Logic"
LangString Hydraulic ${LANG_ARABIC} "Hydraulic"
LangString Pneumatic ${LANG_ARABIC} "Pneumatic"
LangString Energy ${LANG_ARABIC} "Energy"
LangString water ${LANG_ARABIC} "Water"
LangString Refrigeration ${LANG_ARABIC} "Refrigeration"
LangString Solar_thermal ${LANG_ARABIC} "Solar_thermal"
LangString Lang ${LANG_ARABIC} "Lang"
LangString Titleblocks ${LANG_ARABIC} "Titleblocks"
LangString Examples ${LANG_ARABIC} "Examples"
LangString Check ${LANG_ARABIC} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_ARABIC} "Elements of the official collection"
LangString var2 ${LANG_ARABIC} "languagues files"
LangString var3 ${LANG_ARABIC} "Examples of cartridges"
LangString var4 ${LANG_ARABIC} "Examples of diagrams"
LangString installed ${LANG_CATALAN} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_CATALAN} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_CATALAN} "Elements"
LangString Electric ${LANG_CATALAN} "Electric"
LangString Logic ${LANG_CATALAN} "Logic"
LangString Hydraulic ${LANG_CATALAN} "Hydraulic"
LangString Pneumatic ${LANG_CATALAN} "Pneumatic"
LangString Energy ${LANG_CATALAN} "Energy"
LangString water ${LANG_CATALAN} "Water"
LangString Refrigeration ${LANG_CATALAN} "Refrigeration"
LangString Solar_thermal ${LANG_CATALAN} "Solar_thermal"
LangString Lang ${LANG_CATALAN} "Lang"
LangString Titleblocks ${LANG_CATALAN} "Titleblocks"
LangString Examples ${LANG_CATALAN} "Examples"
LangString Check ${LANG_CATALAN} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_CATALAN} "Elements of the official collection"
LangString var2 ${LANG_CATALAN} "languagues files"
LangString var3 ${LANG_CATALAN} "Examples of cartridges"
LangString var4 ${LANG_CATALAN} "Examples of diagrams"
LangString installed ${LANG_ITALIAN} "${SOFT_NAME} &egrave; già installato. $\n$\nFare click su `OK` per rimuovere la versione precedente o su `Annulla` per annullare questo aggiornamento."
LangString wrongArch ${LANG_ITALIAN} "Questa distribuzione &egrave; riservata ai sistemi a 64 bit."
LangString Elements ${LANG_ITALIAN} "Elementi"
LangString Electric ${LANG_ITALIAN} "Electricit&agrave;"
LangString Logic ${LANG_ITALIAN} "Logica"
LangString Hydraulic ${LANG_ITALIAN} "Idraulica"
LangString Pneumatic ${LANG_ITALIAN} "Pneumatica"
LangString Energy ${LANG_ITALIAN} "Energia"
LangString water ${LANG_ITALIAN} "Acqua"
LangString Refrigeration ${LANG_ITALIAN} "Refrigerazione"
LangString Solar_thermal ${LANG_ITALIAN} "Solare_termico"
LangString Lang ${LANG_ITALIAN} "Lingua"
LangString Titleblocks ${LANG_ITALIAN} "Cartigli"
LangString Examples ${LANG_ITALIAN} "Esempi"
LangString Check ${LANG_ITALIAN} "Avvia ${SOFT_NAME}"
LangString var1 ${LANG_ITALIAN} "Elementi della collezione ufficiale"
LangString var2 ${LANG_ITALIAN} "File della lingua"
LangString var3 ${LANG_ITALIAN} "Cartigli di esempio"
LangString var4 ${LANG_ITALIAN} "Schemi di esempio"
LangString installed ${LANG_PORTUGUESE} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_PORTUGUESE} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_PORTUGUESE} "Elements"
LangString Electric ${LANG_PORTUGUESE} "Electric"
LangString Logic ${LANG_PORTUGUESE} "Logic"
LangString Hydraulic ${LANG_PORTUGUESE} "Hydraulic"
LangString Pneumatic ${LANG_PORTUGUESE} "Pneumatic"
LangString Energy ${LANG_PORTUGUESE} "Energy"
LangString water ${LANG_PORTUGUESE} "Water"
LangString Refrigeration ${LANG_PORTUGUESE} "Refrigeration"
LangString Solar_thermal ${LANG_PORTUGUESE} "Solar_thermal"
LangString Lang ${LANG_PORTUGUESE} "Lang"
LangString Titleblocks ${LANG_PORTUGUESE} "Titleblocks"
LangString Examples ${LANG_PORTUGUESE} "Examples"
LangString Check ${LANG_PORTUGUESE} "Avviare ${SOFT_NAME}"
LangString var1 ${LANG_PORTUGUESE} "Elements of the official collection"
LangString var2 ${LANG_PORTUGUESE} "languagues files"
LangString var3 ${LANG_PORTUGUESE} "Examples of cartridges"
LangString var4 ${LANG_PORTUGUESE} "Examples of diagrams"
LangString installed ${LANG_ROMANIAN} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_ROMANIAN} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_ROMANIAN} "Elements"
LangString Electric ${LANG_ROMANIAN} "Electric"
LangString Logic ${LANG_ROMANIAN} "Logic"
LangString Hydraulic ${LANG_ROMANIAN} "Hydraulic"
LangString Pneumatic ${LANG_ROMANIAN} "Pneumatic"
LangString Energy ${LANG_ROMANIAN} "Energy"
LangString water ${LANG_ROMANIAN} "Water"
LangString Refrigeration ${LANG_ROMANIAN} "Refrigeration"
LangString Solar_thermal ${LANG_ROMANIAN} "Solar_thermal"
LangString Lang ${LANG_ROMANIAN} "Lang"
LangString Titleblocks ${LANG_ROMANIAN} "Titleblocks"
LangString Examples ${LANG_ROMANIAN} "Examples"
LangString Check ${LANG_ROMANIAN} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_ROMANIAN} "Elements of the official collection"
LangString var2 ${LANG_ROMANIAN} "languagues files"
LangString var3 ${LANG_ROMANIAN} "Examples of cartridges"
LangString var4 ${LANG_ROMANIAN} "Examples of diagrams"
LangString installed ${LANG_CROATIAN} "${SOFT_NAME} is already installed. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString wrongArch ${LANG_CROATIAN} "This distribution is for 64 bits computers only."
LangString Elements ${LANG_CROATIAN} "Elements"
LangString Electric ${LANG_CROATIAN} "Electric"
LangString Logic ${LANG_CROATIAN} "Logic"
LangString Hydraulic ${LANG_CROATIAN} "Hydraulic"
LangString Pneumatic ${LANG_CROATIAN} "Pneumatic"
LangString Energy ${LANG_CROATIAN} "Energy"
LangString water ${LANG_CROATIAN} "Water"
LangString Refrigeration ${LANG_CROATIAN} "Refrigeration"
LangString Solar_thermal ${LANG_CROATIAN} "Solar_thermal"
LangString Lang ${LANG_CROATIAN} "Lang"
LangString Titleblocks ${LANG_CROATIAN} "Titleblocks"
LangString Examples ${LANG_CROATIAN} "Examples"
LangString Check ${LANG_CROATIAN} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_CROATIAN} "Elements of the official collection"
LangString var2 ${LANG_CROATIAN} "languagues files"
LangString var3 ${LANG_CROATIAN} "Examples of cartridges"
LangString var4 ${LANG_CROATIAN} "Examples of diagrams"
LangString installed ${LANG_DUTCH} "${SOFT_NAME} is al geinstalleerd. $\n$\nklik `OK` om vorige versie te verwijderen of `annuleer` om deze upgrade te annuleren."
LangString wrongArch ${LANG_DUTCH} "Deze distributie is alleen voor 64 bits computers."
LangString Elements ${LANG_DUTCH} "Elementen"
LangString Electric ${LANG_DUTCH} "Electriciteit"
LangString Logic ${LANG_DUTCH} "Logica"
LangString Hydraulic ${LANG_DUTCH} "Hydraulisch"
LangString Pneumatic ${LANG_DUTCH} "Pneumatisch"
LangString Energy ${LANG_DUTCH} "Energie"
LangString water ${LANG_DUTCH} "Water"
LangString Refrigeration ${LANG_DUTCH} "Koelinstallaties"
LangString Solar_thermal ${LANG_DUTCH} "Zonne_warmte"
LangString Lang ${LANG_DUTCH} "Taal"
LangString Titleblocks ${LANG_DUTCH} "Titelblok"
LangString Examples ${LANG_DUTCH} "Voorbeelden"
LangString Check ${LANG_DUTCH} "Check to start ${SOFT_NAME}"
LangString Check ${LANG_DUTCH} "Check to start ${SOFT_NAME}"
LangString var1 ${LANG_DUTCH} "Elements of the official collection"
LangString var2 ${LANG_DUTCH} "languagues files"
LangString var3 ${LANG_DUTCH} "Examples of cartridges"
LangString var4 ${LANG_DUTCH} "Examples of diagrams"
LangString installed ${LANG_DUTCH_BELGIUM} "${SOFT_NAME} is reeds geinstallerd. $\n$\nKlik`OK` om vorige versie te verwijderen of `Afbreken` om de upgrade niet uit te voeren."
LangString wrongArch ${LANG_DUTCH_BELGIUM} "Deze distributie werkt enkel op 64 bits computers."
LangString Elements ${LANG_DUTCH_BELGIUM} "Elementen"
LangString Electric ${LANG_DUTCH_BELGIUM} "Electrisch"
LangString Logic ${LANG_DUTCH_BELGIUM} "Logica"
LangString Hydraulic ${LANG_DUTCH_BELGIUM} "Hydraulisch"
LangString Pneumatic ${LANG_DUTCH_BELGIUM} "Pneumatisch"
LangString Energy ${LANG_DUTCH_BELGIUM} "Energie"
LangString water ${LANG_DUTCH_BELGIUM} "Water"
LangString Refrigeration ${LANG_DUTCH_BELGIUM} "Klimatisatie"
LangString Solar_thermal ${LANG_DUTCH_BELGIUM} "Termisch & zonlicht"
LangString Lang ${LANG_DUTCH_BELGIUM} "Taal"
LangString Titleblocks ${LANG_DUTCH_BELGIUM} "Titelhoek"
LangString Examples ${LANG_DUTCH_BELGIUM} "Voorbeelden"
LangString Check ${LANG_DUTCH_BELGIUM} "Controleer om te beginnen ${SOFT_NAME}"
LangString var1 ${LANG_DUTCH_BELGIUM} "Symbolen van de officielen verzameling"
LangString var2 ${LANG_DUTCH_BELGIUM} "taal bestanden"
LangString var3 ${LANG_DUTCH_BELGIUM} "Voorbeel titelhoeken"
LangString var4 ${LANG_DUTCH_BELGIUM} "Voorbeeld schema's"
LangString installed ${LANG_DANISH} "${SOFT_NAME} er allerede installeret. $\n$\nKlik `Ok` for at fjerne foregående version eller `Annuller` for at annullere opgraderingen."
LangString wrongArch ${LANG_DANISH} "Dette program er kun for 64 bit systemer."
LangString Elements ${LANG_DANISH} "Symboler"
LangString Electric ${LANG_DANISH} "Elektrisk"
LangString Logic ${LANG_DANISH} "Logik"
LangString Hydraulic ${LANG_DANISH} "Hydraulik"
LangString Pneumatic ${LANG_DANISH} "Pneumatik"
LangString Energy ${LANG_DANISH} "Energi teknik"
LangString water ${LANG_DANISH} "VVS teknik"
LangString Refrigeration ${LANG_DANISH} "Køle teknik"
LangString Solar_thermal ${LANG_DANISH} "Sol & varme teknik"
LangString Lang ${LANG_DANISH} "Sprog"
LangString Titleblocks ${LANG_DANISH} "Titel blokke"
LangString Examples ${LANG_DANISH} "Eksempler"
LangString Check ${LANG_DANISH} "Vælg for at starte ${SOFT_NAME}"
LangString var1 ${LANG_DANISH} "Symboler fra officiel samling"
LangString var2 ${LANG_DANISH} "Sprog filer"
LangString var3 ${LANG_DANISH} "Titel blokke eksempler"
LangString var4 ${LANG_DANISH} "Diagram eksempler"

View File

@ -0,0 +1,19 @@
LangString wrongArch ${LANG_FRENCH} "Ce programme est pour Windows 64 bits seulement."
LangString installed ${LANG_FRENCH} "${SOFT_NAME} est déja installé. $\n$\nCliquer sur `OK` pour désinstaller l'ancienne version `Annuler` pour annuler cet upgrade."
LangString Elements ${LANG_FRENCH} "Eléments"
LangString Electric ${LANG_FRENCH} "Electrique"
LangString Logic ${LANG_FRENCH} "Logique"
LangString Hydraulic ${LANG_FRENCH} "Hydraulique"
LangString Pneumatic ${LANG_FRENCH} "Pneumatique"
LangString Energy ${LANG_FRENCH} "Energie"
LangString water ${LANG_FRENCH} "Eaux"
LangString Refrigeration ${LANG_FRENCH} "Climatisation"
LangString Solar_thermal ${LANG_FRENCH} "Thermique & solaire"
LangString Lang ${LANG_FRENCH} "Langues"
LangString Titleblocks ${LANG_FRENCH} "Cartouches"
LangString Examples ${LANG_FRENCH} "Exemples"
LangString Check ${LANG_FRENCH} "Cocher pour lancer ${SOFT_NAME}"
LangString var1 ${LANG_FRENCH} "Eléments de la collection officielle"
LangString var2 ${LANG_FRENCH} "Fichiers de langues"
LangString var3 ${LANG_FRENCH} "Exemples de cartouches"
LangString var4 ${LANG_FRENCH} "Exemples de schémas"

View File

@ -0,0 +1,34 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(
"_____________________________________________________________________"
"\nCopyright 2006 The QElectroTech Team"
"\nThis file is part of QElectroTech."
"\n\nQElectroTech is free software: you can redistribute it and/or modify"
"\nit under the terms of the GNU General Public License as published by"
"\nthe Free Software Foundation, either version 2 of the License, or"
"\n(at your option) any later version."
"\nQElectroTech is distributed in the hope that it will be useful,"
"\nbut WITHOUT ANY WARRANTY; without even the implied warranty of"
"\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
"\nGNU General Public License for more details."
"\n\nYou should have received a copy of the GNU General Public License"
"\nalong with QElectroTech. If not, see <http://www.gnu.org/licenses/>.\n"
"_____________________________________________________________________")

View File

@ -0,0 +1,71 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
# Paths used for compilation and installation of QET
message(" - define_definitions")
message("Paths used for compilation and installation of QET")
message("--------------------------------------------------")
message("COMPIL_PREFIX " ${COMPIL_PREFIX})
message("INSTALL_PREFIX " ${INSTALL_PREFIX})
message("QET_BINARY_PATH " ${QET_BINARY_PATH})
if(${QET_COMMON_COLLECTION_PATH} STRGREATER "")
message("QET_COMMON_COLLECTION_PATH " ${INSTALL_PREFIX}${QET_COMMON_COLLECTION_PATH})
add_definitions(-DQET_COMMON_COLLECTION_PATH=${INSTALL_PREFIX}${QET_COMMON_COLLECTION_PATH})
endif()
if(${QET_COMMON_TBT_PATH} STRGREATER "")
message("QET_COMMON_TBT_PATH " ${INSTALL_PREFIX}${QET_COMMON_TBT_PATH})
add_definitions(-DQET_COMMON_TBT_PATH=${INSTALL_PREFIX}${QET_COMMON_TBT_PATH})
endif()
if(${QET_LANG_PATH_RELATIVE_TO_BINARY_PATH})
add_definitions(-DQET_LANG_PATH_RELATIVE_TO_BINARY_PATH)
endif()
if(${QET_LANG_PATH} STRGREATER "")
message("QET_LANG_PATH " ${INSTALL_PREFIX}${QET_LANG_PATH})
add_definitions(-DQET_LANG_PATH=${INSTALL_PREFIX}${QET_LANG_PATH})
endif()
if (NOT MINGW)
if(${QET_EXAMPLES_PATH} STRGREATER "")
message("QET_EXAMPLES_PATH " ${INSTALL_PREFIX}${QET_EXAMPLES_PATH})
add_definitions(-DQET_EXAMPLES_PATH=${INSTALL_PREFIX}${QET_EXAMPLES_PATH})
endif()
endif()
message("QET_LICENSE_PATH " ${QET_LICENSE_PATH})
message("QET_MIME_PACKAGE_PATH " ${QET_MIME_PACKAGE_PATH})
message("QET_DESKTOP_PATH " ${QET_DESKTOP_PATH})
message("QET_ICONS_PATH " ${QET_ICONS_PATH})
message("QET_MAN_PATH " ${QET_MAN_PATH})
message("QET_APPDATA_PATH " ${QET_APPDATA_PATH})
message("ICON " ${ICON})
message("--------------------------------------------------")
message("PROJECT_NAME :" ${PROJECT_NAME})
message("PROJECT_VERSION :" ${PROJECT_VERSION})
message("PROJECT_DESCRIPTION :" ${PROJECT_DESCRIPTION})
message("PROJECT_HOMEPAGE_URL :" ${PROJECT_HOMEPAGE_URL})
message("PROJECT_SOURCE_DIR :" ${PROJECT_SOURCE_DIR})
message("QET_DIR :" ${QET_DIR})
message("GIT_COMMIT_SHA :" ${GIT_COMMIT_SHA})
if(BUILD_WITH_KF5)
message("KF5_GIT_TAG :" ${KF5_GIT_TAG})
else()
add_definitions(-DBUILD_WITHOUT_KF5)
endif()
message("QET_COMPONENTS :" ${QET_COMPONENTS})
message("QT_VERSION_MAJOR :" ${QT_VERSION_MAJOR})

View File

@ -0,0 +1,35 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - developer_options")
# warn on *any* usage of deprecated APIs
add_definitions(-DQT_DEPRECATED_WARNINGS)
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# disables all the APIs deprecated before Qt 6.0.0
#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
# to enable function names and line numbers even for release builds
add_definitions(-DQT_MESSAGELOGCONTEXT)
# You can make your code warn on compile time for the TODO's
# In order to do so, uncomment the following line.
#add_definitions(-DTODO_LIST)
# Build with KF5
option(BUILD_WITH_KF5 "Build with KF5" ON)

View File

@ -0,0 +1,67 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - fetch_kdeaddons")
if(DEFINED BUILD_WITH_KF5)
Include(FetchContent)
option(BUILD_KF5 "Build KF5 libraries, use system ones otherwise" YES)
if(BUILD_KF5)
if(NOT DEFINED KF5_GIT_TAG)
#https://qelectrotech.org/forum/viewtopic.php?pid=13924#p13924
set(KF5_GIT_TAG v5.77.0)
endif()
# Fix stop the run autotests of kcoreaddons
# see
# https://invent.kde.org/frameworks/kcoreaddons/-/blob/master/CMakeLists.txt#L98
# issue:
# CMake Error at /usr/share/ECM/modules/ECMAddTests.cmake:89 (add_executable):
# Cannot find source file:
# see
# https://qelectrotech.org/forum/viewtopic.php?pid=13929#p13929
set(KDE_SKIP_TEST_SETTINGS "TRUE")
set(BUILD_TESTING "0")
FetchContent_Declare(
ecm
GIT_REPOSITORY https://invent.kde.org/frameworks/extra-cmake-modules.git
GIT_TAG ${KF5_GIT_TAG})
FetchContent_MakeAvailable(ecm)
FetchContent_Declare(
kcoreaddons
GIT_REPOSITORY https://invent.kde.org/frameworks/kcoreaddons.git
GIT_TAG ${KF5_GIT_TAG})
FetchContent_MakeAvailable(kcoreaddons)
FetchContent_Declare(
kwidgetsaddons
GIT_REPOSITORY https://invent.kde.org/frameworks/kwidgetsaddons.git
GIT_TAG ${KF5_GIT_TAG})
FetchContent_MakeAvailable(kwidgetsaddons)
else()
find_package(KF5CoreAddons REQUIRED)
find_package(KF5WidgetsAddons REQUIRED)
endif()
set(KF5_PRIVATE_LIBRARIES
KF5::WidgetsAddons
KF5::CoreAddons
)
endif()

33
cmake/fetch_pugixml.cmake Normal file
View File

@ -0,0 +1,33 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - fetch_pugixml")
Include(FetchContent)
option(BUILD_PUGIXML "Build pugixml library, use system one otherwise" YES)
if(BUILD_PUGIXML)
FetchContent_Declare(
pugixml
GIT_REPOSITORY https://github.com/zeux/pugixml.git
GIT_TAG v1.11.4)
FetchContent_MakeAvailable(pugixml)
else()
find_package(pugixml REQUIRED)
endif()

View File

@ -0,0 +1,31 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - fetch_singleapplication")
# https://github.com/itay-grudev/SingleApplication/issues/18
#qmake
#DEFINES += QAPPLICATION_CLASS=QGuiApplication
set(QAPPLICATION_CLASS QApplication)
Include(FetchContent)
FetchContent_Declare(
SingleApplication
GIT_REPOSITORY https://github.com/itay-grudev/SingleApplication.git
GIT_TAG v3.2.0)
FetchContent_MakeAvailable(SingleApplication)

View File

@ -0,0 +1,41 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - git_last_commit_sha")
find_package(Git QUIET)
if(GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
#get GIT COMMIT SHA
execute_process(
COMMAND ${GIT_EXECUTABLE} -C ${QET_DIR} rev-parse --verify HEAD
OUTPUT_VARIABLE GIT_COMMIT_SHA
RESULT_VARIABLE GIT_COMMIT_RESULT)
# This strips terminating newline in the variable
string(REGEX REPLACE "\n$" "" GIT_COMMIT_SHA "${GIT_COMMIT_SHA}")
if(NOT GIT_COMMIT_RESULT EQUAL "0")
message(
FATAL_ERROR
"git rev-parse --verify HEAD failed with "
${GIT_COMMIT_RESULT}
", please check")
endif()
endif()
# This adds to definitions => .cpp
add_definitions(-DGIT_COMMIT_SHA="${GIT_COMMIT_SHA}")

View File

@ -0,0 +1,35 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - git_update_submodules")
find_package(Git QUIET)
if(GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
# updates all git submodules
execute_process(
COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE GIT_SUBMOD_RESULT)
if(NOT GIT_SUBMOD_RESULT EQUAL "0")
message(
FATAL_ERROR
"git submodule update --init failed with "
${GIT_SUBMOD_RESULT}
", please checkout submodules")
endif()
endif()

View File

@ -0,0 +1,25 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
if(${CMAKE_VERSION} VERSION_LESS 3.14)
message(
"_____________________________________________________________________")
message("to update Cmake on linux:")
message("https://github.com/Kitware/CMake/")
message("linux => cmake-3.19.1-Linux-x86_64.sh")
message(" sudo ./cmake.sh --prefix=/usr/local/ --exclude-subdir")
message("windows good luck :)")
endif()

View File

@ -0,0 +1,65 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
# Paths used for compilation and installation of QET
message(" - paths_compilation_installation")
if(UNIX AND NOT APPLE)
# for Linux, BSD, Solaris, Minix
set(COMPIL_PREFIX "/usr/local/")
set(INSTALL_PREFIX "/usr/local/")
set(QET_BINARY_PATH "bin/")
set(QET_COMMON_COLLECTION_PATH "share/qelectrotech/elements/")
set(QET_COMMON_TBT_PATH "share/qelectrotech/titleblocks/")
set(QET_LANG_PATH "share/qelectrotech/lang/")
set(QET_EXAMPLES_PATH "share/qelectrotech/examples/")
set(QET_LICENSE_PATH "doc/qelectrotech/")
set(QET_MIME_PACKAGE_PATH "../share/mime/packages/")
set(QET_DESKTOP_PATH "share/applications/")
set(QET_ICONS_PATH "share/icons/hicolor/")
set(QET_MAN_PATH "man/")
set(QET_APPDATA_PATH "share/appdata")
endif()
if(APPLE)
# for MacOS X or iOS, watchOS, tvOS (since 3.10.3)
set(COMPIL_PREFIX "./")
set(INSTALL_PREFIX "/usr/local/")
set(QET_BINARY_PATH "bin/")
set(QET_COMMON_COLLECTION_PATH "../Resources/elements/")
set(QET_COMMON_TBT_PATH "../Resources/titleblocks/")
set(QET_LANG_PATH "../Resources/lang/")
set(QET_EXAMPLES_PATH "share/qelectrotech/examples/")
set(QET_LICENSE_PATH "doc/qelectrotech/")
set(QET_DESKTOP_PATH "share/applications/")
set(QET_ICONS_PATH "share/icons/hicolor/")
set(QET_MAN_PATH "man/")
set(ICON "ico/mac_icon/qelectrotech.icns")
endif()
if(WIN32)
# for Windows operating system in general
set(COMPIL_PREFIX "./")
set(INSTALL_PREFIX "./")
set(QET_BINARY_PATH "./")
set(QET_COMMON_COLLECTION_PATH "elements/")
set(QET_COMMON_TBT_PATH "titleblocks/")
set(QET_LANG_PATH "l10n/")
set(QET_LICENSE_PATH "./")
# Liste des ressources Windows
#RC_FILE = qelectrotech.rc
endif()

View File

@ -0,0 +1,744 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - qet_compilation_vars")
set(QET_COMPONENTS
LinguistTools
PrintSupport
Xml
Svg
Sql
Network
Widgets
Concurrent)
set(QET_PRIVATE_LIBRARIES
Qt::PrintSupport
Qt::Gui
Qt::Xml
Qt::Svg
Qt::Sql
Qt::Network
Qt::Widgets
Qt::Concurrent
)
set(QET_RES_FILES
${QET_DIR}/sources/autoNum/ui/autonumberingdockwidget.ui
${QET_DIR}/sources/autoNum/ui/autonumberingmanagementw.ui
${QET_DIR}/sources/autoNum/ui/folioautonumbering.ui
${QET_DIR}/sources/autoNum/ui/formulaautonumberingw.ui
${QET_DIR}/sources/autoNum/ui/numparteditorw.ui
${QET_DIR}/sources/autoNum/ui/selectautonumw.ui
${QET_DIR}/sources/dataBase/ui/elementquerywidget.ui
${QET_DIR}/sources/dataBase/ui/summaryquerywidget.ui
${QET_DIR}/sources/editor/ui/dynamictextfieldeditor.ui
${QET_DIR}/sources/editor/ui/elementpropertieseditorwidget.ui
${QET_DIR}/sources/editor/ui/ellipseeditor.ui
${QET_DIR}/sources/editor/ui/lineeditor.ui
${QET_DIR}/sources/editor/ui/polygoneditor.ui
${QET_DIR}/sources/editor/ui/rectangleeditor.ui
${QET_DIR}/sources/editor/ui/qetelementeditor.ui
${QET_DIR}/sources/editor/ui/terminaleditor.ui
${QET_DIR}/sources/ElementsCollection/ui/renamedialog.ui
${QET_DIR}/sources/factory/ui/addtabledialog.ui
${QET_DIR}/sources/NameList/ui/namelistdialog.ui
${QET_DIR}/sources/NameList/ui/namelistwidget.ui
${QET_DIR}/sources/print/projectprintwindow.ui
${QET_DIR}/sources/PropertiesEditor/propertieseditordockwidget.ui
${QET_DIR}/sources/richtext/addlinkdialog.ui
${QET_DIR}/sources/SearchAndReplace/ui/replaceadvanceddialog.ui
${QET_DIR}/sources/SearchAndReplace/ui/replaceconductordialog.ui
${QET_DIR}/sources/SearchAndReplace/ui/replaceelementdialog.ui
${QET_DIR}/sources/SearchAndReplace/ui/replacefoliowidget.ui
${QET_DIR}/sources/SearchAndReplace/ui/searchandreplacewidget.ui
${QET_DIR}/sources/TerminalStrip/ui/addterminalstripitemdialog.ui
${QET_DIR}/sources/TerminalStrip/ui/freeterminaleditor.ui
${QET_DIR}/sources/TerminalStrip/ui/terminalstripcreatordialog.ui
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditor.ui
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditorwindow.ui
${QET_DIR}/sources/TerminalStrip/ui/terminalstriplayouteditor.ui
${QET_DIR}/sources/TerminalStrip/ui/terminalstriptreedockwidget.ui
${QET_DIR}/sources/ui/aboutqetdialog.ui
${QET_DIR}/sources/ui/alignmenttextdialog.ui
${QET_DIR}/sources/ui/bomexportdialog.ui
${QET_DIR}/sources/ui/borderpropertieswidget.ui
${QET_DIR}/sources/ui/compositetexteditdialog.ui
${QET_DIR}/sources/ui/conductorpropertiesdialog.ui
${QET_DIR}/sources/ui/conductorpropertieswidget.ui
${QET_DIR}/sources/ui/configsaveloaderwidget.ui
${QET_DIR}/sources/ui/diagramcontextwidget.ui
${QET_DIR}/sources/ui/diagrameditorhandlersizewidget.ui
${QET_DIR}/sources/ui/diagramselection.ui
${QET_DIR}/sources/ui/dialogwaiting.ui
${QET_DIR}/sources/ui/dynamicelementtextitemeditor.ui
${QET_DIR}/sources/ui/elementinfopartwidget.ui
${QET_DIR}/sources/ui/elementinfowidget.ui
${QET_DIR}/sources/ui/formulaassistantdialog.ui
${QET_DIR}/sources/ui/imagepropertieswidget.ui
${QET_DIR}/sources/ui/importelementdialog.ui
${QET_DIR}/sources/ui/importelementtextpatterndialog.ui
${QET_DIR}/sources/ui/linksingleelementwidget.ui
${QET_DIR}/sources/ui/marginseditdialog.ui
${QET_DIR}/sources/ui/masterpropertieswidget.ui
${QET_DIR}/sources/ui/multipastedialog.ui
${QET_DIR}/sources/ui/potentialselectordialog.ui
${QET_DIR}/sources/ui/reportpropertiewidget.ui
${QET_DIR}/sources/ui/shapegraphicsitempropertieswidget.ui
${QET_DIR}/sources/ui/thirdpartybinaryinstalldialog.ui
${QET_DIR}/sources/ui/titleblockpropertieswidget.ui
${QET_DIR}/sources/ui/xrefpropertieswidget.ui
${QET_DIR}/sources/ui/configpage/generalconfigurationpage.ui
)
set(QET_SRC_FILES
${QET_DIR}/sources/borderproperties.cpp
${QET_DIR}/sources/borderproperties.h
${QET_DIR}/sources/bordertitleblock.cpp
${QET_DIR}/sources/bordertitleblock.h
${QET_DIR}/sources/conductorautonumerotation.cpp
${QET_DIR}/sources/conductorautonumerotation.h
${QET_DIR}/sources/conductornumexport.cpp
${QET_DIR}/sources/conductornumexport.h
${QET_DIR}/sources/conductorprofile.cpp
${QET_DIR}/sources/conductorprofile.h
${QET_DIR}/sources/conductorproperties.cpp
${QET_DIR}/sources/conductorproperties.h
${QET_DIR}/sources/conductorsegment.cpp
${QET_DIR}/sources/conductorsegment.h
${QET_DIR}/sources/conductorsegmentprofile.h
${QET_DIR}/sources/configdialog.cpp
${QET_DIR}/sources/configdialog.h
${QET_DIR}/sources/createdxf.cpp
${QET_DIR}/sources/createdxf.h
${QET_DIR}/sources/diagramcommands.cpp
${QET_DIR}/sources/diagramcommands.h
${QET_DIR}/sources/diagramcontent.cpp
${QET_DIR}/sources/diagramcontent.h
${QET_DIR}/sources/diagramcontext.cpp
${QET_DIR}/sources/diagramcontext.h
${QET_DIR}/sources/diagram.cpp
${QET_DIR}/sources/diagram.h
${QET_DIR}/sources/diagramposition.cpp
${QET_DIR}/sources/diagramposition.h
${QET_DIR}/sources/diagramview.cpp
${QET_DIR}/sources/diagramview.h
${QET_DIR}/sources/elementdialog.cpp
${QET_DIR}/sources/elementdialog.h
${QET_DIR}/sources/elementprovider.cpp
${QET_DIR}/sources/elementprovider.h
${QET_DIR}/sources/elementscategoryeditor.cpp
${QET_DIR}/sources/elementscategoryeditor.h
${QET_DIR}/sources/elementscollectioncache.cpp
${QET_DIR}/sources/elementscollectioncache.h
${QET_DIR}/sources/elementsmover.cpp
${QET_DIR}/sources/elementsmover.h
${QET_DIR}/sources/elementspanel.cpp
${QET_DIR}/sources/elementspanel.h
${QET_DIR}/sources/elementspanelwidget.cpp
${QET_DIR}/sources/elementspanelwidget.h
${QET_DIR}/sources/elementtextpattern.cpp
${QET_DIR}/sources/elementtextpattern.h
${QET_DIR}/sources/elementtextsmover.cpp
${QET_DIR}/sources/elementtextsmover.h
${QET_DIR}/sources/exportdialog.cpp
${QET_DIR}/sources/exportdialog.h
${QET_DIR}/sources/exportproperties.cpp
${QET_DIR}/sources/exportproperties.h
${QET_DIR}/sources/exportpropertieswidget.cpp
${QET_DIR}/sources/exportpropertieswidget.h
${QET_DIR}/sources/genericpanel.cpp
${QET_DIR}/sources/genericpanel.h
${QET_DIR}/sources/machine_info.cpp
${QET_DIR}/sources/machine_info.h
${QET_DIR}/sources/main.cpp
${QET_DIR}/sources/newelementwizard.cpp
${QET_DIR}/sources/newelementwizard.h
${QET_DIR}/sources/projectview.cpp
${QET_DIR}/sources/projectview.h
${QET_DIR}/sources/qetapp.cpp
${QET_DIR}/sources/qetapp.h
${QET_DIR}/sources/qetarguments.cpp
${QET_DIR}/sources/qetarguments.h
${QET_DIR}/sources/qet.cpp
${QET_DIR}/sources/qetdiagrameditor.cpp
${QET_DIR}/sources/qetdiagrameditor.h
${QET_DIR}/sources/qet.h
${QET_DIR}/sources/qeticons.cpp
${QET_DIR}/sources/qeticons.h
${QET_DIR}/sources/qetinformation.cpp
${QET_DIR}/sources/qetinformation.h
${QET_DIR}/sources/qetmainwindow.cpp
${QET_DIR}/sources/qetmainwindow.h
${QET_DIR}/sources/qetmessagebox.cpp
${QET_DIR}/sources/qetmessagebox.h
${QET_DIR}/sources/qetproject.cpp
${QET_DIR}/sources/qetproject.h
${QET_DIR}/sources/qetregexpvalidator.cpp
${QET_DIR}/sources/qetregexpvalidator.h
${QET_DIR}/sources/qetresult.cpp
${QET_DIR}/sources/qetresult.h
${QET_DIR}/sources/qetxml.cpp
${QET_DIR}/sources/qetxml.h
${QET_DIR}/sources/qetversion.cpp
${QET_DIR}/sources/qetversion.h
${QET_DIR}/sources/qfilenameedit.cpp
${QET_DIR}/sources/qfilenameedit.h
${QET_DIR}/sources/qgimanager.cpp
${QET_DIR}/sources/qgimanager.h
${QET_DIR}/sources/qtextorientationspinboxwidget.cpp
${QET_DIR}/sources/qtextorientationspinboxwidget.h
${QET_DIR}/sources/qtextorientationwidget.cpp
${QET_DIR}/sources/qtextorientationwidget.h
${QET_DIR}/sources/recentfiles.cpp
${QET_DIR}/sources/recentfiles.h
${QET_DIR}/sources/titleblockcell.cpp
${QET_DIR}/sources/titleblockcell.h
${QET_DIR}/sources/titleblockproperties.cpp
${QET_DIR}/sources/titleblockproperties.h
${QET_DIR}/sources/titleblocktemplate.cpp
${QET_DIR}/sources/titleblocktemplate.h
${QET_DIR}/sources/titleblocktemplaterenderer.cpp
${QET_DIR}/sources/titleblocktemplaterenderer.h
${QET_DIR}/sources/autoNum/assignvariables.cpp
${QET_DIR}/sources/autoNum/assignvariables.h
${QET_DIR}/sources/autoNum/numerotationcontextcommands.cpp
${QET_DIR}/sources/autoNum/numerotationcontextcommands.h
${QET_DIR}/sources/autoNum/numerotationcontext.cpp
${QET_DIR}/sources/autoNum/numerotationcontext.h
${QET_DIR}/sources/autoNum/ui/autonumberingdockwidget.cpp
${QET_DIR}/sources/autoNum/ui/autonumberingdockwidget.h
${QET_DIR}/sources/autoNum/ui/autonumberingmanagementw.cpp
${QET_DIR}/sources/autoNum/ui/autonumberingmanagementw.h
${QET_DIR}/sources/autoNum/ui/folioautonumbering.cpp
${QET_DIR}/sources/autoNum/ui/folioautonumbering.h
${QET_DIR}/sources/autoNum/ui/formulaautonumberingw.cpp
${QET_DIR}/sources/autoNum/ui/formulaautonumberingw.h
${QET_DIR}/sources/autoNum/ui/numparteditorw.cpp
${QET_DIR}/sources/autoNum/ui/numparteditorw.h
${QET_DIR}/sources/autoNum/ui/selectautonumw.cpp
${QET_DIR}/sources/autoNum/ui/selectautonumw.h
${QET_DIR}/sources/dataBase/projectdatabase.cpp
${QET_DIR}/sources/dataBase/projectdatabase.h
${QET_DIR}/sources/dataBase/ui/elementquerywidget.cpp
${QET_DIR}/sources/dataBase/ui/elementquerywidget.h
${QET_DIR}/sources/dataBase/ui/summaryquerywidget.cpp
${QET_DIR}/sources/dataBase/ui/summaryquerywidget.h
${QET_DIR}/sources/diagramevent/diagrameventaddelement.cpp
${QET_DIR}/sources/diagramevent/diagrameventaddelement.h
${QET_DIR}/sources/diagramevent/diagrameventaddimage.cpp
${QET_DIR}/sources/diagramevent/diagrameventaddimage.h
${QET_DIR}/sources/diagramevent/diagrameventaddshape.cpp
${QET_DIR}/sources/diagramevent/diagrameventaddshape.h
${QET_DIR}/sources/diagramevent/diagrameventaddtext.cpp
${QET_DIR}/sources/diagramevent/diagrameventaddtext.h
${QET_DIR}/sources/diagramevent/diagrameventinterface.cpp
${QET_DIR}/sources/diagramevent/diagrameventinterface.h
${QET_DIR}/sources/dvevent/dveventinterface.cpp
${QET_DIR}/sources/dvevent/dveventinterface.h
${QET_DIR}/sources/dxf/dxftoelmt.cpp
${QET_DIR}/sources/dxf/dxftoelmt.h
${QET_DIR}/sources/qet_elementscaler/qet_elementscaler.cpp
${QET_DIR}/sources/qet_elementscaler/qet_elementscaler.h
${QET_DIR}/sources/editor/arceditor.cpp
${QET_DIR}/sources/editor/arceditor.h
${QET_DIR}/sources/editor/editorcommands.cpp
${QET_DIR}/sources/editor/editorcommands.h
${QET_DIR}/sources/editor/elementcontent.h
${QET_DIR}/sources/editor/elementitemeditor.cpp
${QET_DIR}/sources/editor/elementitemeditor.h
${QET_DIR}/sources/editor/elementprimitivedecorator.cpp
${QET_DIR}/sources/editor/elementprimitivedecorator.h
${QET_DIR}/sources/editor/elementscene.cpp
${QET_DIR}/sources/editor/elementscene.h
${QET_DIR}/sources/editor/elementview.cpp
${QET_DIR}/sources/editor/elementview.h
${QET_DIR}/sources/editor/styleeditor.cpp
${QET_DIR}/sources/editor/styleeditor.h
${QET_DIR}/sources/editor/esevent/eseventaddarc.cpp
${QET_DIR}/sources/editor/esevent/eseventaddarc.h
${QET_DIR}/sources/editor/esevent/eseventadddynamictextfield.cpp
${QET_DIR}/sources/editor/esevent/eseventadddynamictextfield.h
${QET_DIR}/sources/editor/esevent/eseventaddellipse.cpp
${QET_DIR}/sources/editor/esevent/eseventaddellipse.h
${QET_DIR}/sources/editor/esevent/eseventaddline.cpp
${QET_DIR}/sources/editor/esevent/eseventaddline.h
${QET_DIR}/sources/editor/esevent/eseventaddpolygon.cpp
${QET_DIR}/sources/editor/esevent/eseventaddpolygon.h
${QET_DIR}/sources/editor/esevent/eseventaddrect.cpp
${QET_DIR}/sources/editor/esevent/eseventaddrect.h
${QET_DIR}/sources/editor/esevent/eseventaddterminal.cpp
${QET_DIR}/sources/editor/esevent/eseventaddterminal.h
${QET_DIR}/sources/editor/esevent/eseventaddtext.cpp
${QET_DIR}/sources/editor/esevent/eseventaddtext.h
${QET_DIR}/sources/editor/esevent/eseventinterface.cpp
${QET_DIR}/sources/editor/esevent/eseventinterface.h
${QET_DIR}/sources/editor/graphicspart/abstractpartellipse.cpp
${QET_DIR}/sources/editor/graphicspart/abstractpartellipse.h
${QET_DIR}/sources/editor/graphicspart/customelementgraphicpart.cpp
${QET_DIR}/sources/editor/graphicspart/customelementgraphicpart.h
${QET_DIR}/sources/editor/graphicspart/customelementpart.cpp
${QET_DIR}/sources/editor/graphicspart/customelementpart.h
${QET_DIR}/sources/editor/graphicspart/partarc.cpp
${QET_DIR}/sources/editor/graphicspart/partarc.h
${QET_DIR}/sources/editor/graphicspart/partdynamictextfield.cpp
${QET_DIR}/sources/editor/graphicspart/partdynamictextfield.h
${QET_DIR}/sources/editor/graphicspart/partellipse.cpp
${QET_DIR}/sources/editor/graphicspart/partellipse.h
${QET_DIR}/sources/editor/graphicspart/partline.cpp
${QET_DIR}/sources/editor/graphicspart/partline.h
${QET_DIR}/sources/editor/graphicspart/partpolygon.cpp
${QET_DIR}/sources/editor/graphicspart/partpolygon.h
${QET_DIR}/sources/editor/graphicspart/partrectangle.cpp
${QET_DIR}/sources/editor/graphicspart/partrectangle.h
${QET_DIR}/sources/editor/graphicspart/partterminal.cpp
${QET_DIR}/sources/editor/graphicspart/partterminal.h
${QET_DIR}/sources/editor/graphicspart/parttext.cpp
${QET_DIR}/sources/editor/graphicspart/parttext.h
${QET_DIR}/sources/editor/ui/dynamictextfieldeditor.cpp
${QET_DIR}/sources/editor/ui/dynamictextfieldeditor.h
${QET_DIR}/sources/editor/ui/elementpropertieseditorwidget.cpp
${QET_DIR}/sources/editor/ui/elementpropertieseditorwidget.h
${QET_DIR}/sources/editor/ui/ellipseeditor.cpp
${QET_DIR}/sources/editor/ui/ellipseeditor.h
${QET_DIR}/sources/editor/ui/lineeditor.cpp
${QET_DIR}/sources/editor/ui/lineeditor.h
${QET_DIR}/sources/editor/ui/polygoneditor.cpp
${QET_DIR}/sources/editor/ui/polygoneditor.h
${QET_DIR}/sources/editor/ui/rectangleeditor.cpp
${QET_DIR}/sources/editor/ui/rectangleeditor.h
${QET_DIR}/sources/editor/ui/terminaleditor.cpp
${QET_DIR}/sources/editor/ui/terminaleditor.h
${QET_DIR}/sources/editor/ui/texteditor.cpp
${QET_DIR}/sources/editor/ui/texteditor.h
${QET_DIR}/sources/editor/ui/qetelementeditor.h
${QET_DIR}/sources/editor/ui/qetelementeditor.cpp
${QET_DIR}/sources/editor/UndoCommand/pastepartscommand.cpp
${QET_DIR}/sources/editor/UndoCommand/pastepartscommand.h
${QET_DIR}/sources/editor/UndoCommand/openelmtcommand.cpp
${QET_DIR}/sources/editor/UndoCommand/openelmtcommand.h
${QET_DIR}/sources/editor/UndoCommand/deletepartscommand.cpp
${QET_DIR}/sources/editor/UndoCommand/deletepartscommand.h
${QET_DIR}/sources/editor/UndoCommand/addpartcommand.cpp
${QET_DIR}/sources/editor/UndoCommand/addpartcommand.h
${QET_DIR}/sources/ElementsCollection/elementcollectionhandler.cpp
${QET_DIR}/sources/ElementsCollection/elementcollectionhandler.h
${QET_DIR}/sources/ElementsCollection/elementcollectionitem.cpp
${QET_DIR}/sources/ElementsCollection/elementcollectionitem.h
${QET_DIR}/sources/ElementsCollection/elementscollectionmodel.cpp
${QET_DIR}/sources/ElementsCollection/elementscollectionmodel.h
${QET_DIR}/sources/ElementsCollection/elementscollectionwidget.cpp
${QET_DIR}/sources/ElementsCollection/elementscollectionwidget.h
${QET_DIR}/sources/ElementsCollection/elementslocation.cpp
${QET_DIR}/sources/ElementsCollection/elementslocation.h
${QET_DIR}/sources/ElementsCollection/elementstreeview.cpp
${QET_DIR}/sources/ElementsCollection/elementstreeview.h
${QET_DIR}/sources/ElementsCollection/fileelementcollectionitem.cpp
${QET_DIR}/sources/ElementsCollection/fileelementcollectionitem.h
${QET_DIR}/sources/ElementsCollection/xmlelementcollection.cpp
${QET_DIR}/sources/ElementsCollection/xmlelementcollection.h
${QET_DIR}/sources/ElementsCollection/xmlprojectelementcollectionitem.cpp
${QET_DIR}/sources/ElementsCollection/xmlprojectelementcollectionitem.h
${QET_DIR}/sources/ElementsCollection/ui/renamedialog.cpp
${QET_DIR}/sources/ElementsCollection/ui/renamedialog.h
${QET_DIR}/sources/factory/elementfactory.cpp
${QET_DIR}/sources/factory/elementfactory.h
${QET_DIR}/sources/factory/elementpicturefactory.cpp
${QET_DIR}/sources/factory/elementpicturefactory.h
${QET_DIR}/sources/factory/propertieseditorfactory.cpp
${QET_DIR}/sources/factory/propertieseditorfactory.h
${QET_DIR}/sources/factory/qetgraphicstablefactory.cpp
${QET_DIR}/sources/factory/qetgraphicstablefactory.h
${QET_DIR}/sources/factory/ui/addtabledialog.cpp
${QET_DIR}/sources/factory/ui/addtabledialog.h
${QET_DIR}/sources/NameList/nameslist.cpp
${QET_DIR}/sources/NameList/nameslist.h
${QET_DIR}/sources/NameList/ui/namelistdialog.cpp
${QET_DIR}/sources/NameList/ui/namelistdialog.h
${QET_DIR}/sources/NameList/ui/namelistwidget.cpp
${QET_DIR}/sources/NameList/ui/namelistwidget.h
${QET_DIR}/sources/print/projectprintwindow.cpp
${QET_DIR}/sources/print/projectprintwindow.h
${QET_DIR}/sources/project/projectpropertieshandler.cpp
${QET_DIR}/sources/project/projectpropertieshandler.h
${QET_DIR}/sources/properties/elementdata.cpp
${QET_DIR}/sources/properties/elementdata.h
${QET_DIR}/sources/properties/propertiesinterface.cpp
${QET_DIR}/sources/properties/propertiesinterface.h
${QET_DIR}/sources/properties/reportproperties.cpp
${QET_DIR}/sources/properties/reportproperties.h
${QET_DIR}/sources/properties/terminaldata.cpp
${QET_DIR}/sources/properties/terminaldata.h
${QET_DIR}/sources/properties/xrefproperties.cpp
${QET_DIR}/sources/properties/xrefproperties.h
${QET_DIR}/sources/properties/userproperties.cpp
${QET_DIR}/sources/properties/userproperties.h
${QET_DIR}/sources/PropertiesEditor/propertieseditordialog.h
${QET_DIR}/sources/PropertiesEditor/propertieseditordockwidget.cpp
${QET_DIR}/sources/PropertiesEditor/propertieseditordockwidget.h
${QET_DIR}/sources/PropertiesEditor/propertieseditorwidget.cpp
${QET_DIR}/sources/PropertiesEditor/propertieseditorwidget.h
${QET_DIR}/pugixml/src/pugiconfig.hpp
${QET_DIR}/pugixml/src/pugixml.cpp
${QET_DIR}/pugixml/src/pugixml.hpp
${QET_DIR}/sources/qetgraphicsitem/conductor.cpp
${QET_DIR}/sources/qetgraphicsitem/conductor.h
${QET_DIR}/sources/qetgraphicsitem/conductortextitem.cpp
${QET_DIR}/sources/qetgraphicsitem/conductortextitem.h
${QET_DIR}/sources/qetgraphicsitem/crossrefitem.cpp
${QET_DIR}/sources/qetgraphicsitem/crossrefitem.h
${QET_DIR}/sources/qetgraphicsitem/diagramimageitem.cpp
${QET_DIR}/sources/qetgraphicsitem/diagramimageitem.h
${QET_DIR}/sources/qetgraphicsitem/diagramtextitem.cpp
${QET_DIR}/sources/qetgraphicsitem/diagramtextitem.h
${QET_DIR}/sources/qetgraphicsitem/dynamicelementtextitem.cpp
${QET_DIR}/sources/qetgraphicsitem/dynamicelementtextitem.h
${QET_DIR}/sources/qetgraphicsitem/element.cpp
${QET_DIR}/sources/qetgraphicsitem/element.h
${QET_DIR}/sources/qetgraphicsitem/elementtextitemgroup.cpp
${QET_DIR}/sources/qetgraphicsitem/elementtextitemgroup.h
${QET_DIR}/sources/qetgraphicsitem/independenttextitem.cpp
${QET_DIR}/sources/qetgraphicsitem/independenttextitem.h
${QET_DIR}/sources/qetgraphicsitem/masterelement.cpp
${QET_DIR}/sources/qetgraphicsitem/masterelement.h
${QET_DIR}/sources/qetgraphicsitem/qetgraphicsitem.cpp
${QET_DIR}/sources/qetgraphicsitem/qetgraphicsitem.h
${QET_DIR}/sources/qetgraphicsitem/qetshapeitem.cpp
${QET_DIR}/sources/qetgraphicsitem/qetshapeitem.h
${QET_DIR}/sources/qetgraphicsitem/qgraphicsitemutility.cpp
${QET_DIR}/sources/qetgraphicsitem/qgraphicsitemutility.h
${QET_DIR}/sources/qetgraphicsitem/reportelement.cpp
${QET_DIR}/sources/qetgraphicsitem/reportelement.h
${QET_DIR}/sources/qetgraphicsitem/simpleelement.cpp
${QET_DIR}/sources/qetgraphicsitem/simpleelement.h
${QET_DIR}/sources/qetgraphicsitem/slaveelement.cpp
${QET_DIR}/sources/qetgraphicsitem/slaveelement.h
${QET_DIR}/sources/qetgraphicsitem/terminal.cpp
${QET_DIR}/sources/qetgraphicsitem/terminalelement.cpp
${QET_DIR}/sources/qetgraphicsitem/terminalelement.h
${QET_DIR}/sources/qetgraphicsitem/terminal.h
${QET_DIR}/sources/qetgraphicsitem/ViewItem/projectdbmodel.cpp
${QET_DIR}/sources/qetgraphicsitem/ViewItem/projectdbmodel.h
${QET_DIR}/sources/qetgraphicsitem/ViewItem/qetgraphicsheaderitem.cpp
${QET_DIR}/sources/qetgraphicsitem/ViewItem/qetgraphicsheaderitem.h
${QET_DIR}/sources/qetgraphicsitem/ViewItem/qetgraphicstableitem.cpp
${QET_DIR}/sources/qetgraphicsitem/ViewItem/qetgraphicstableitem.h
${QET_DIR}/sources/qetgraphicsitem/ViewItem/ui/graphicstablepropertieseditor.cpp
${QET_DIR}/sources/qetgraphicsitem/ViewItem/ui/graphicstablepropertieseditor.h
${QET_DIR}/sources/qetgraphicsitem/ViewItem/ui/projectdbmodelpropertieswidget.cpp
${QET_DIR}/sources/qetgraphicsitem/ViewItem/ui/projectdbmodelpropertieswidget.h
${QET_DIR}/sources/QetGraphicsItemModeler/qetgraphicshandleritem.cpp
${QET_DIR}/sources/QetGraphicsItemModeler/qetgraphicshandleritem.h
${QET_DIR}/sources/QetGraphicsItemModeler/qetgraphicshandlerutility.cpp
${QET_DIR}/sources/QetGraphicsItemModeler/qetgraphicshandlerutility.h
${QET_DIR}/sources/QPropertyUndoCommand/qpropertyundocommand.cpp
${QET_DIR}/sources/QPropertyUndoCommand/qpropertyundocommand.h
${QET_DIR}/sources/QWidgetAnimation/qwidgetanimation.cpp
${QET_DIR}/sources/QWidgetAnimation/qwidgetanimation.h
${QET_DIR}/sources/richtext/richtexteditor.cpp
${QET_DIR}/sources/richtext/richtexteditor_p.h
${QET_DIR}/sources/richtext/ui_addlinkdialog.h
${QET_DIR}/sources/SearchAndReplace/searchandreplaceworker.cpp
${QET_DIR}/sources/SearchAndReplace/searchandreplaceworker.h
${QET_DIR}/sources/SearchAndReplace/ui/replaceadvanceddialog.cpp
${QET_DIR}/sources/SearchAndReplace/ui/replaceadvanceddialog.h
${QET_DIR}/sources/SearchAndReplace/ui/replaceconductordialog.cpp
${QET_DIR}/sources/SearchAndReplace/ui/replaceconductordialog.h
${QET_DIR}/sources/SearchAndReplace/ui/replaceelementdialog.cpp
${QET_DIR}/sources/SearchAndReplace/ui/replaceelementdialog.h
${QET_DIR}/sources/SearchAndReplace/ui/replacefoliowidget.cpp
${QET_DIR}/sources/SearchAndReplace/ui/replacefoliowidget.h
${QET_DIR}/sources/SearchAndReplace/ui/searchandreplacewidget.cpp
${QET_DIR}/sources/SearchAndReplace/ui/searchandreplacewidget.h
${QET_DIR}/sources/titleblock/dimension.cpp
${QET_DIR}/sources/titleblock/dimension.h
${QET_DIR}/sources/titleblock/dimensionwidget.cpp
${QET_DIR}/sources/titleblock/dimensionwidget.h
${QET_DIR}/sources/titleblock/gridlayoutanimation.cpp
${QET_DIR}/sources/titleblock/gridlayoutanimation.h
${QET_DIR}/sources/titleblock/helpercell.cpp
${QET_DIR}/sources/titleblock/helpercell.h
${QET_DIR}/sources/titleblock/integrationmovetemplateshandler.cpp
${QET_DIR}/sources/titleblock/integrationmovetemplateshandler.h
${QET_DIR}/sources/titleblock/movetemplateshandler.h
${QET_DIR}/sources/titleblock/qettemplateeditor.cpp
${QET_DIR}/sources/titleblock/qettemplateeditor.h
${QET_DIR}/sources/titleblock/splittedhelpercell.cpp
${QET_DIR}/sources/titleblock/splittedhelpercell.h
${QET_DIR}/sources/titleblock/templatecellsset.cpp
${QET_DIR}/sources/titleblock/templatecellsset.h
${QET_DIR}/sources/titleblock/templatecellwidget.cpp
${QET_DIR}/sources/titleblock/templatecellwidget.h
${QET_DIR}/sources/titleblock/templatecommands.cpp
${QET_DIR}/sources/titleblock/templatecommands.h
${QET_DIR}/sources/titleblock/templatedeleter.cpp
${QET_DIR}/sources/titleblock/templatedeleter.h
${QET_DIR}/sources/titleblock/templatelocationchooser.cpp
${QET_DIR}/sources/titleblock/templatelocationchooser.h
${QET_DIR}/sources/titleblock/templatelocation.cpp
${QET_DIR}/sources/titleblock/templatelocation.h
${QET_DIR}/sources/titleblock/templatelocationsaver.cpp
${QET_DIR}/sources/titleblock/templatelocationsaver.h
${QET_DIR}/sources/titleblock/templatelogomanager.cpp
${QET_DIR}/sources/titleblock/templatelogomanager.h
${QET_DIR}/sources/titleblock/templatescollection.cpp
${QET_DIR}/sources/titleblock/templatescollection.h
${QET_DIR}/sources/titleblock/templateview.cpp
${QET_DIR}/sources/titleblock/templateview.h
${QET_DIR}/sources/titleblock/templatevisualcell.cpp
${QET_DIR}/sources/titleblock/templatevisualcell.h
${QET_DIR}/sources/TerminalStrip/physicalterminal.cpp
${QET_DIR}/sources/TerminalStrip/physicalterminal.h
${QET_DIR}/sources/TerminalStrip/realterminal.cpp
${QET_DIR}/sources/TerminalStrip/realterminal.h
${QET_DIR}/sources/TerminalStrip/terminalstripbridge.cpp
${QET_DIR}/sources/TerminalStrip/terminalstripbridge.h
${QET_DIR}/sources/TerminalStrip/terminalstrip.cpp
${QET_DIR}/sources/TerminalStrip/terminalstrip.h
${QET_DIR}/sources/TerminalStrip/terminalstripdata.cpp
${QET_DIR}/sources/TerminalStrip/terminalstripdata.h
${QET_DIR}/sources/TerminalStrip/ui/addterminalstripitemdialog.cpp
${QET_DIR}/sources/TerminalStrip/ui/addterminalstripitemdialog.h
${QET_DIR}/sources/TerminalStrip/ui/freeterminaleditor.cpp
${QET_DIR}/sources/TerminalStrip/ui/freeterminaleditor.h
${QET_DIR}/sources/TerminalStrip/ui/freeterminalmodel.cpp
${QET_DIR}/sources/TerminalStrip/ui/freeterminalmodel.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstripcreatordialog.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstripcreatordialog.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditor.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditor.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditorwindow.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstripeditorwindow.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstriplayouteditor.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstriplayouteditor.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstripmodel.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstripmodel.h
${QET_DIR}/sources/TerminalStrip/ui/terminalstriptreedockwidget.cpp
${QET_DIR}/sources/TerminalStrip/ui/terminalstriptreedockwidget.h
${QET_DIR}/sources/TerminalStrip/ui/ConfigPage/terminalstripprojectconfigpage.cpp
${QET_DIR}/sources/TerminalStrip/ui/ConfigPage/terminalstripprojectconfigpage.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/addterminalstripcommand.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/addterminalstripcommand.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/addterminaltostripcommand.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/addterminaltostripcommand.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/bridgeterminalscommand.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/bridgeterminalscommand.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminallevel.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminallevel.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminalstripcolor.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminalstripcolor.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminalstripdata.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/changeterminalstripdata.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/groupterminalscommand.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/groupterminalscommand.h
${QET_DIR}/sources/TerminalStrip/UndoCommand/sortterminalstripcommand.cpp
${QET_DIR}/sources/TerminalStrip/UndoCommand/sortterminalstripcommand.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/demoterminalstrip.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/demoterminalstrip.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/terminalstripitem.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/terminalstripitem.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/trueterminalstrip.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/trueterminalstrip.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/terminalstripdrawer.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/terminalstripdrawer.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutpattern.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutpattern.h
${QET_DIR}/sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutshandler.cpp
${QET_DIR}/sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutshandler.h
${QET_DIR}/sources/ui/aboutqetdialog.cpp
${QET_DIR}/sources/ui/aboutqetdialog.h
${QET_DIR}/sources/ui/abstractelementpropertieseditorwidget.cpp
${QET_DIR}/sources/ui/abstractelementpropertieseditorwidget.h
${QET_DIR}/sources/ui/alignmenttextdialog.cpp
${QET_DIR}/sources/ui/alignmenttextdialog.h
${QET_DIR}/sources/ui/bomexportdialog.cpp
${QET_DIR}/sources/ui/bomexportdialog.h
${QET_DIR}/sources/ui/borderpropertieswidget.cpp
${QET_DIR}/sources/ui/borderpropertieswidget.h
${QET_DIR}/sources/ui/compositetexteditdialog.cpp
${QET_DIR}/sources/ui/compositetexteditdialog.h
${QET_DIR}/sources/ui/conductorpropertiesdialog.cpp
${QET_DIR}/sources/ui/conductorpropertiesdialog.h
${QET_DIR}/sources/ui/conductorpropertieswidget.cpp
${QET_DIR}/sources/ui/conductorpropertieswidget.h
${QET_DIR}/sources/ui/configsaveloaderwidget.cpp
${QET_DIR}/sources/ui/configsaveloaderwidget.h
${QET_DIR}/sources/ui/diagramcontextwidget.cpp
${QET_DIR}/sources/ui/diagramcontextwidget.h
${QET_DIR}/sources/ui/diagrameditorhandlersizewidget.cpp
${QET_DIR}/sources/ui/diagrameditorhandlersizewidget.h
${QET_DIR}/sources/ui/diagrampropertiesdialog.cpp
${QET_DIR}/sources/ui/diagrampropertiesdialog.h
${QET_DIR}/sources/ui/diagrampropertieseditordockwidget.cpp
${QET_DIR}/sources/ui/diagrampropertieseditordockwidget.h
${QET_DIR}/sources/ui/diagramselection.cpp
${QET_DIR}/sources/ui/diagramselection.h
${QET_DIR}/sources/ui/dialogwaiting.cpp
${QET_DIR}/sources/ui/dialogwaiting.h
${QET_DIR}/sources/ui/dynamicelementtextitemeditor.cpp
${QET_DIR}/sources/ui/dynamicelementtextitemeditor.h
${QET_DIR}/sources/ui/dynamicelementtextmodel.cpp
${QET_DIR}/sources/ui/dynamicelementtextmodel.h
${QET_DIR}/sources/ui/elementinfopartwidget.cpp
${QET_DIR}/sources/ui/elementinfopartwidget.h
${QET_DIR}/sources/ui/elementinfowidget.cpp
${QET_DIR}/sources/ui/elementinfowidget.h
${QET_DIR}/sources/ui/elementpropertieswidget.cpp
${QET_DIR}/sources/ui/elementpropertieswidget.h
${QET_DIR}/sources/ui/formulaassistantdialog.cpp
${QET_DIR}/sources/ui/formulaassistantdialog.h
${QET_DIR}/sources/ui/imagepropertieswidget.cpp
${QET_DIR}/sources/ui/imagepropertieswidget.h
${QET_DIR}/sources/ui/importelementdialog.cpp
${QET_DIR}/sources/ui/importelementdialog.h
${QET_DIR}/sources/ui/importelementtextpatterndialog.cpp
${QET_DIR}/sources/ui/importelementtextpatterndialog.h
${QET_DIR}/sources/ui/inditextpropertieswidget.cpp
${QET_DIR}/sources/ui/inditextpropertieswidget.h
${QET_DIR}/sources/ui/linksingleelementwidget.cpp
${QET_DIR}/sources/ui/linksingleelementwidget.h
${QET_DIR}/sources/ui/marginseditdialog.cpp
${QET_DIR}/sources/ui/marginseditdialog.h
${QET_DIR}/sources/ui/masterpropertieswidget.cpp
${QET_DIR}/sources/ui/masterpropertieswidget.h
${QET_DIR}/sources/ui/multipastedialog.cpp
${QET_DIR}/sources/ui/multipastedialog.h
${QET_DIR}/sources/ui/potentialselectordialog.cpp
${QET_DIR}/sources/ui/potentialselectordialog.h
${QET_DIR}/sources/ui/projectpropertiesdialog.cpp
${QET_DIR}/sources/ui/projectpropertiesdialog.h
${QET_DIR}/sources/ui/reportpropertiewidget.cpp
${QET_DIR}/sources/ui/reportpropertiewidget.h
${QET_DIR}/sources/ui/shapegraphicsitempropertieswidget.cpp
${QET_DIR}/sources/ui/shapegraphicsitempropertieswidget.h
${QET_DIR}/sources/ui/thirdpartybinaryinstalldialog.cpp
${QET_DIR}/sources/ui/thirdpartybinaryinstalldialog.h
${QET_DIR}/sources/ui/titleblockpropertieswidget.cpp
${QET_DIR}/sources/ui/titleblockpropertieswidget.h
${QET_DIR}/sources/ui/xrefpropertieswidget.cpp
${QET_DIR}/sources/ui/xrefpropertieswidget.h
${QET_DIR}/sources/ui/configpage/configpage.h
${QET_DIR}/sources/ui/configpage/configpages.cpp
${QET_DIR}/sources/ui/configpage/configpages.h
${QET_DIR}/sources/ui/configpage/generalconfigurationpage.cpp
${QET_DIR}/sources/ui/configpage/generalconfigurationpage.h
${QET_DIR}/sources/ui/configpage/projectconfigpages.cpp
${QET_DIR}/sources/ui/configpage/projectconfigpages.h
${QET_DIR}/sources/undocommand/addelementtextcommand.cpp
${QET_DIR}/sources/undocommand/addelementtextcommand.h
${QET_DIR}/sources/undocommand/addgraphicsobjectcommand.cpp
${QET_DIR}/sources/undocommand/addgraphicsobjectcommand.h
${QET_DIR}/sources/undocommand/changeelementdatacommand.cpp
${QET_DIR}/sources/undocommand/changeelementdatacommand.h
${QET_DIR}/sources/undocommand/changeelementinformationcommand.cpp
${QET_DIR}/sources/undocommand/changeelementinformationcommand.h
${QET_DIR}/sources/undocommand/changetitleblockcommand.cpp
${QET_DIR}/sources/undocommand/changetitleblockcommand.h
${QET_DIR}/sources/undocommand/deleteqgraphicsitemcommand.cpp
${QET_DIR}/sources/undocommand/deleteqgraphicsitemcommand.h
${QET_DIR}/sources/undocommand/itemmodelcommand.cpp
${QET_DIR}/sources/undocommand/itemmodelcommand.h
${QET_DIR}/sources/undocommand/linkelementcommand.cpp
${QET_DIR}/sources/undocommand/linkelementcommand.h
${QET_DIR}/sources/undocommand/rotateselectioncommand.cpp
${QET_DIR}/sources/undocommand/rotateselectioncommand.h
${QET_DIR}/sources/undocommand/rotatetextscommand.cpp
${QET_DIR}/sources/undocommand/rotatetextscommand.h
${QET_DIR}/sources/undocommand/movegraphicsitemcommand.cpp
${QET_DIR}/sources/undocommand/movegraphicsitemcommand.h
${QET_DIR}/sources/utils/conductorcreator.cpp
${QET_DIR}/sources/utils/conductorcreator.h
${QET_DIR}/sources/utils/macosxopenevent.cpp
${QET_DIR}/sources/utils/macosxopenevent.h
${QET_DIR}/sources/utils/qetsettings.cpp
${QET_DIR}/sources/utils/qetsettings.h
${QET_DIR}/sources/utils/qetutils.cpp
${QET_DIR}/sources/utils/qetutils.h
${QET_DIR}/sources/xml/terminalstripitemxml.cpp
${QET_DIR}/sources/xml/terminalstripitemxml.h
)
set(TS_FILES
${QET_DIR}/lang/qet_ar.ts
${QET_DIR}/lang/qet_ca.ts
${QET_DIR}/lang/qet_cs.ts
${QET_DIR}/lang/qet_da.ts
${QET_DIR}/lang/qet_de.ts
${QET_DIR}/lang/qet_el.ts
${QET_DIR}/lang/qet_en.ts
${QET_DIR}/lang/qet_es.ts
${QET_DIR}/lang/qet_fi.ts
${QET_DIR}/lang/qet_fr.ts
${QET_DIR}/lang/qet_hr.ts
${QET_DIR}/lang/qet_hu.ts
${QET_DIR}/lang/qet_it.ts
${QET_DIR}/lang/qet_ja.ts
${QET_DIR}/lang/qet_mn.ts
${QET_DIR}/lang/qet_nb.ts
${QET_DIR}/lang/qet_nl.ts
${QET_DIR}/lang/qet_nl_BE.ts
${QET_DIR}/lang/qet_no.ts
${QET_DIR}/lang/qet_pl.ts
${QET_DIR}/lang/qet_pt.ts
${QET_DIR}/lang/qet_pt_BR.ts
${QET_DIR}/lang/qet_ro.ts
${QET_DIR}/lang/qet_rs.ts
${QET_DIR}/lang/qet_ru.ts
${QET_DIR}/lang/qet_sk.ts
${QET_DIR}/lang/qet_sl.ts
${QET_DIR}/lang/qet_sr.ts
${QET_DIR}/lang/qet_sv.ts
${QET_DIR}/lang/qet_tr.ts
${QET_DIR}/lang/qet_uk.ts
${QET_DIR}/lang/qet_zh.ts
)

32
cmake/start_options.cmake Normal file
View File

@ -0,0 +1,32 @@
# Copyright 2006 The QElectroTech Team
# This file is part of QElectroTech.
#
# QElectroTech is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# QElectroTech is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
message(" - start_options")
# Comment the line below to deactivate the --common-elements-dir option
add_definitions(-DQET_ALLOW_OVERRIDE_CED_OPTION)
# Comment the line below to disable the --common-tbt-dir option
add_definitions(-DQET_ALLOW_OVERRIDE_CTBTD_OPTION)
# Comment the line below to deactivate the --config-dir option
add_definitions(-DQET_ALLOW_OVERRIDE_CD_OPTION)
# Comment the line below to deactivate the --data-dir option
add_definitions(-DQET_ALLOW_OVERRIDE_DD_OPTION)
#comment the line below to disable the project database export
#add_definitions(-DQET_EXPORT_PROJECT_DB) #error Todo

View File

@ -0,0 +1,7 @@
ChangeElementInformationCommand = 1
LinkElementCommand = 2
ItemResizerCommand = 3
ChangeShapeStyleCommand = 4
QetShapeGeometryCommand = 5
AlignmentTextsGroupCommand = 6
QPropertyUndoCommand = 10 000

View File

@ -1,12 +1,33 @@
Type = UserType + ??? Type = UserType + ???
Element + 1000 ###DIAGRAM EDITOR###
Conductor + 1001 Element + 1000
Terminal + 1002 Conductor + 1001
ElementTextItem + 1003 Terminal + 1002
DiagramTextItem + 1004 ElementTextItem + 1003
DiagramTextItem + 1004
IndependentTextItem + 1005 IndependentTextItem + 1005
ConductorTextItem + 1006 ConductorTextItem + 1006
DiagramImageItem + 1007 DiagramImageItem + 1007
QetShapItem + 1008 QetShapItem + 1008
crossRefItem + 1009 crossRefItem + 1009
DynamiqueElementTextItem + 1010
TerminalStripItem +1011
ElementPrimitiveDecorator + 2200 ElementPrimitiveDecorator + 2200
###ELEMENT EDITOR###
part arc + 1101
part ellipse + 1103
part Line + 1104
part polygon + 1105
part terminal + 1106
part text + 1107
part text field + 1108
part rectangle + 1109
part dynamic text field + 1110
###QetGraphicsHandlerItem###
QetGraphicsHandlerItem + 1200
###VIEW ITEMS###
QetGraphicsTableItem + 1300
QetGraphicsHeaderItem + 1301

BIN
docs/Documentation.webloc Normal file

Binary file not shown.

1
elements Submodule

@ -0,0 +1 @@
Subproject commit 9f20b039b7c384fe29d7e7190fa62b67c8aae471

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Beckhoff</name>
<name lang="be">Beckhoff</name>
<name lang="en">Beckhoff</name>
<name lang="fr">Beckhoff</name>
<name lang="nl">Beckhoff</name>
<name lang="it">Beckhoff</name>
<name lang="pl">Beckhoff</name>
<name lang="el">Beckhoff</name>
</names>
</qet-directory>

View File

@ -1,73 +0,0 @@
<definition width="510" version="0.4" hotspot_x="36" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="ar">Beckhoff KL/KS10xx DI</name>
<name lang="de">Beckhoff KL/KS10xx DI</name>
<name lang="ru">Beckhoff KL/KS10xx DI</name>
<name lang="pt">Beckhoff KL/KS10xx DI</name>
<name lang="el">Beckhoff KL/KS10xx DI</name>
<name lang="en">Beckhoff KL/KS10xx DI</name>
<name lang="it">Beckhoff KL/KS10xx DI</name>
<name lang="fr">Beckhoff KL/KS10xx DI</name>
<name lang="pl">Beckhoff KL/KS10xx DI</name>
<name lang="es">Beckhoff KL/KS10xx DI</name>
<name lang="nl">Beckhoff KL/KS10xx DI</name>
<name lang="cs">Beckhoff KL/KS10xx DI</name>
</names>
<informations>
Author:RDS for QelectroTech
Ref: KL1002
Ref: KL1012
Ref: KS1002
Ref: KS1012
</informations>
<kindInformations>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
<kindInformation name="tempoType" show="0"></kindInformation>
</kindInformations>
<description>
<rect width="480" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-38.9694" x1="210" y2="38.9669" x2="210"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-39.9694" x1="260" y2="37.9669" x2="260"/>
<rect width="53" x="-14.25" y="-36.917" antialias="false" height="13.9673" style="line-style:normal;line-weight:normal;filling:red;color:red"/>
<arc width="6" x="207" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<text x="-11" y="-26" size="6" color="white" text="KL/KS 10xx"/>
<arc width="6" x="257" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<arc width="6" x="157" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-84"/>
<arc width="6" x="157" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<rect width="12" x="436.75" y="-38.95" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect width="12" x="-29.25" y="-38.95" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<text x="446.75" y="12.05" size="6" rotation="270" text="K-BUS"/>
<text x="-19.25" y="12.05" size="6" rotation="270" text="K-BUS"/>
<text x="381" y="38" size="4" text="PE"/>
<text x="341" y="38" size="4" text="0V"/>
<text x="281" y="38" size="4" text="+24VDC"/>
<text x="241" y="38" size="4" text="DI 2"/>
<text x="181" y="38" size="4" text="PE"/>
<text x="141" y="38" size="4" text="0V"/>
<text x="81" y="38" size="4" text="+24VDC"/>
<text x="41" y="38" size="4" text="DI 1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-39.9694" x1="160" y2="37.9669" x2="160"/>
<input x="0" y="1" size="7" rotate="true" text="KL10_"/>
<input x="451" y="-27.5" size="9" rotate="true" text="_" tagg="label"/>
<input x="451" y="-07.5" size="9" rotate="true" text="_" tagg="comment"/>
<input x="451" y="27.5" size="9" rotate="true" text="_" tagg="manufacturer"/>
<input x="451" y="47.5" size="9" rotate="true" text="_" tagg="manufacturer-reference"/>
<input x="451" y="67.5" size="9" rotate="true" text="_" tagg="machine-manufacturer-reference"/>
<terminal x="260" y="-45" nameHidden="1" number="" name="" orientation="n"/>
<terminal x="210" y="-45" nameHidden="1" number="" name="" orientation="n"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="340" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="380" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="160" y="-45" nameHidden="1" number="" name="" orientation="n"/>
<terminal x="160" y="41" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="210" y="41" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="260" y="41" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@ -1,216 +0,0 @@
<definition width="860" version="0.4" hotspot_x="82" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="ar">Beckhoff BC9191</name>
<name lang="de">Beckhoff BC9191</name>
<name lang="ru">Beckhoff BC9191</name>
<name lang="pt">Beckhoff BC9191</name>
<name lang="el">Beckhoff BC9191</name>
<name lang="en">Beckhoff BC9191</name>
<name lang="it">Beckhoff BC9191</name>
<name lang="fr">Beckhoff BC9191</name>
<name lang="pl">Beckhoff BC9191</name>
<name lang="es">Beckhoff BC9191</name>
<name lang="nl">Beckhoff BC9191</name>
<name lang="cs">Beckhoff BC9191</name>
</names>
<informations>
Author: RDS for QelectroTech
Ref: BC9191-0000
Ref: BC9191-0100
</informations>
<description>
<rect width="12" x="747" y="-39" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect width="790" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="46" x="-26" y="-33.9673" antialias="false" height="13.9673" style="line-style:normal;line-weight:normal;filling:red;color:red"/>
<rect width="5" x="115" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="125" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="105" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="714" y="4.5" size="9" text="X3"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.94289" x1="620" y2="39.0619" x2="620"/>
<rect width="5" x="95" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="85" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="117" y="-32" size="1" text="4"/>
<rect width="5" x="105" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="107" y="-31.9761" size="1" text="3"/>
<text x="87" y="-31.9761" size="1" text="1"/>
<rect width="5" x="115" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="97" y="-31.9761" size="1" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="740" y2="-9.677" x2="740"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.0209138" x1="500" y2="9.97734" x2="500"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25.4604" x1="640" y2="39.5012" x2="640"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="535" y2="30" x2="540" y3="40" x3="540"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="495" y2="30" x2="500" y3="40" x3="500"/>
<text x="465" y="23" size="2" rotation="270" text="2kW"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="515" y2="30" x2="520" y3="40" x3="520"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="560" y2="0" x2="560"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="442.928" y2="-10" x2="739.828"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.0209138" x1="520" y2="9.97734" x2="520"/>
<text x="545" y="22" size="2" rotation="270" text="FAN 3"/>
<text x="505" y="22" size="2" rotation="270" text="FAN 1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.0209138" x1="540" y2="9.97734" x2="540"/>
<text x="525" y="22" size="2" rotation="270" text="FAN 2"/>
<text x="80" y="-19.9891" size="1" text="OFF"/>
<rect width="5" x="145" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="220" y="-29.978" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="416" y="3.5" size="9" text="X2"/>
<rect width="5" x="135" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="155" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="205" y="-19.989" size="1" text="OFF"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25.4604" x1="600" y2="39.5012" x2="600"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="640" y2="5" x2="640"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="559.157" y2="0" x2="500.702"/>
<text x="157" y="-32" size="1" text="8"/>
<text x="137" y="-32" size="1" text="6"/>
<text x="147" y="-32" size="1" text="7"/>
<text x="127" y="-32" size="1" text="5"/>
<rect width="30" x="-70" y="-30" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="125" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="600" y2="5" x2="600"/>
<rect width="30" x="-70" y="0" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="650" y2="15" x2="640"/>
<rect width="5" x="210" y="-24.984" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="135" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="145" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="155" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="610" y2="15" x2="600"/>
<text x="212" y="-31.976" size="1" text="1"/>
<text x="334" y="3.5" size="9" text="X1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="630" y2="25" x2="640"/>
<text x="222" y="-31.976" size="1" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="180" y2="-3" x2="180"/>
<polygon x4="645" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="645" y2="25" x2="640" y3="25" x3="650" y4="15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="590" y2="25" x2="600"/>
<polygon x4="605" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="605" y2="25" x2="600" y3="25" x3="610" y4="15"/>
<polygon x4="630" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="15" x1="630" y2="15" x2="640" y3="25" x3="635" y4="15"/>
<rect width="4" x="-68" y="-9" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="210" y="-29.978" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x4="590" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="15" x1="590" y2="15" x2="600" y3="25" x3="595" y4="15"/>
<text x="205" y="-27.98" size="1" text="ON"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="645" y2="32" x2="649"/>
<rect width="20" x="-62" y="-28" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect width="5" x="220" y="-24.984" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="192" y="36" size="2" rotation="270" text="Ohmse weerstandsmeeting"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="32" x1="657.001" y2="32" x2="648.923"/>
<rect width="30" x="200" y="-34.967" antialias="false" height="19.9674" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="41" y="38" size="4" text="DI2"/>
<text x="-49" y="-7" size="4" rotation="270" color="white" text="RJ45"/>
<rect width="4" x="-68" y="-28" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="205" y="31" size="2" rotation="270" text="0...10V"/>
<rect width="5" x="-68" y="-19" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="245" y="31" size="2" rotation="270" text="0...10V"/>
<text x="225" y="31" size="2" rotation="270" text="0...10V"/>
<rect width="4" x="-68" y="21" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="21" y="38" size="4" text="GND"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="140" y2="-3" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27.288" x1="180" y2="39.688" x2="180"/>
<text x="1" y="38" size="4" text="DI1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="185" y2="7" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27.288" x1="140" y2="39.688" x2="140"/>
<text x="681" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="176" y2="27" x2="184"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="145" y2="7" x2="145"/>
<text x="621" y="38" size="4" text="N"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="136" y2="27" x2="144"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="184" y2="7" x2="176"/>
<text x="561" y="38" size="4" text="L"/>
<text x="601" y="38" size="4" text="Y1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="176" y2="27" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="144" y2="7" x2="136"/>
<text x="541" y="38" size="4" text="34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="136" y2="27" x2="136"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="simple" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="187" y2="8" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22.1846" x1="187" y2="26.8" x2="187"/>
<text x="721" y="38" size="4" text="PE"/>
<text x="661" y="38" size="4" text="N"/>
<text x="281" y="38" size="4" text="GND"/>
<text x="521" y="38" size="4" text="33"/>
<text x="581" y="38" size="4" text="N"/>
<text x="701" y="38" size="4" text="N"/>
<text x="341" y="38" size="4" text="18"/>
<text x="641" y="38" size="4" text="Y2"/>
<text x="501" y="38" size="4" text="32"/>
<text x="424" y="38" size="4" text="AO2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="360.766" y2="-10" x2="441.254"/>
<text x="101" y="38" size="4" text="GND"/>
<text x="401" y="38" size="4" text="GND"/>
<text x="261" y="38" size="4" text="GND"/>
<text x="321" y="38" size="4" text="17"/>
<text x="481" y="38" size="4" text="31"/>
<text x="241" y="38" size="4" text="AI3"/>
<text x="301" y="38" size="4" text="+24V"/>
<text x="376" y="38" size="4" text="AO1"/>
<text x="461" y="38" size="4" text="30"/>
<text x="221" y="38" size="4" text="AI2"/>
<text x="161" y="38" size="4" text="GND"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="442" y2="-9.677" x2="442"/>
<text x="201" y="38" size="4" text="AI1"/>
<text x="81" y="38" size="4" text="DI3"/>
<text x="141" y="38" size="4" text="AI"/>
<text x="181" y="38" size="4" text="AI"/>
<text x="61" y="38" size="4" text="GND"/>
<text x="121" y="38" size="4" text="DO1"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="455" y2="30" x2="460" y3="40" x3="460"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.0209138" x1="460" y2="9.97734" x2="460"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="480" y2="0" x2="480"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="479.7" y2="0" x2="460.354"/>
<text x="-19" y="-23" size="6" color="white" text="BC9191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10.0647" x1="-10" y2="39.07" x2="-10"/>
<rect width="20" x="-62" y="2" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="760" y="-34.5" size="9" rotate="true" text="_" tagg="label"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="-9.01395" y2="-10" x2="359.848"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="360" y2="-9.67679" x2="360"/>
<text x="-49" y="23" size="4" rotation="270" color="white" text="RJ45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="147" y2="8" x2="132"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22.1846" x1="147" y2="26.8" x2="147"/>
<text x="153" y="30" size="2" rotation="270" text="Ni/PT1000 (-20...+60°C)"/>
<rect width="4" x="-68" y="2" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="-68" y="11" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="605" y2="32" x2="609"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="32" x1="617" y2="32" x2="608.923"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="580" y2="0" x2="580"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="580" y2="0" x2="700"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="700" y2="40" x2="700"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-0.0282353" x1="660" y2="39.0306" x2="660"/>
<rect width="50" x="-80" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="85" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="80" y="-27.9805" size="1" text="ON"/>
<rect width="5" x="95" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="90" x="75" y="-34.9674" antialias="false" height="19.9674" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="757" y="12" size="6" rotation="270" text="K-BUS"/>
<terminal x="60" y="45" nameHidden="0" number="4" name="X1.4" orientation="s"/>
<terminal x="100" y="45" nameHidden="0" number="6" name="X1.6" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="5" name="X1.5" orientation="s"/>
<terminal x="120" y="45" nameHidden="0" number="7" name="X1.7" orientation="s"/>
<terminal x="160" y="45" nameHidden="0" number="9" name="X1.9" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="8" name="X1.8" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="10" name="X1.10" orientation="s"/>
<terminal x="220" y="45" nameHidden="0" number="12" name="X1.12" orientation="s"/>
<terminal x="200" y="45" nameHidden="0" number="11" name="X1.11" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="13" name="X1.13" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="15" name="X1.15" orientation="s"/>
<terminal x="260" y="45" nameHidden="0" number="14" name="X1.14" orientation="s"/>
<terminal x="300" y="45" nameHidden="0" number="16" name="X1.16" orientation="s"/>
<terminal x="340" y="45" nameHidden="0" number="18" name="X1.18" orientation="s"/>
<terminal x="320" y="45" nameHidden="0" number="17" name="X1.17" orientation="s"/>
<terminal x="375" y="45" nameHidden="0" number="20" name="X2.20" orientation="s"/>
<terminal x="423" y="45" nameHidden="0" number="22" name="X2.22" orientation="s"/>
<terminal x="400" y="45" nameHidden="0" number="21" name="X2.21" orientation="s"/>
<terminal x="460" y="45" nameHidden="0" number="10" name="X3.30" orientation="s"/>
<terminal x="500" y="45" nameHidden="0" number="32" name="X3.32" orientation="s"/>
<terminal x="480" y="45" nameHidden="0" number="11" name="X3.31" orientation="s"/>
<terminal x="520" y="45" nameHidden="0" number="33" name="X3.33" orientation="s"/>
<terminal x="560" y="45" nameHidden="0" number="35" name="X3.35" orientation="s"/>
<terminal x="540" y="45" nameHidden="0" number="34" name="X3.34" orientation="s"/>
<terminal x="580" y="45" nameHidden="0" number="36" name="X3.36" orientation="s"/>
<terminal x="620" y="45" nameHidden="0" number="38" name="X3.38" orientation="s"/>
<terminal x="600" y="45" nameHidden="0" number="37" name="X3.37" orientation="s"/>
<terminal x="640" y="45" nameHidden="0" number="39" name="X3.39" orientation="s"/>
<terminal x="680" y="45" nameHidden="0" number="41" name="X3.41" orientation="s"/>
<terminal x="660" y="45" nameHidden="0" number="40" name="X3.40" orientation="s"/>
<terminal x="700" y="45" nameHidden="0" number="42" name="X3.42" orientation="s"/>
<terminal x="720" y="45" nameHidden="0" number="43" name="X3.43" orientation="s"/>
<terminal x="0" y="45" nameHidden="0" number="4" name="X1.1" orientation="s"/>
<terminal x="40" y="45" nameHidden="0" number="3" name="X1.3" orientation="s"/>
<terminal x="20" y="45" nameHidden="0" number="2" name="X1.2" orientation="s"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Diverses</name>
<name lang="nl">Diversen</name>
<name lang="be">Diversen</name>
<name lang="en">Miscellaneous</name>
<name lang="fr">Divers</name>
<name lang="it">Varie</name>
<name lang="pl">Różne</name>
<name lang="el">Διάφορα</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,54 +0,0 @@
<definition width="220" version="0.4" hotspot_x="98" hotspot_y="43" height="80" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">UPS</name>
<name lang="be">UPS</name>
<name lang="en">UPS</name>
<name lang="fr">UPS</name>
<name lang="it">UPS</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="180" x="-90" y="-30" antialias="false" height="60" style="line-style:dashed;line-weight:normal;filling:none;color:red"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:blue" y1="0" x1="28.96" y2="0" x2="10.96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="39.8671" y2="-10" x2="-38.9542"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="-79.8583" y2="-10" x2="-89.2077"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="0" x1="3" y2="0" x2="-5"/>
<polygon x4="40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.9688" x1="40" y2="-19.9688" x2="79.675" y3="20.2453" x3="79.675" y4="20.2453"/>
<polygon x4="-79.7" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-79.7" y2="-20" x2="-40" y3="18.475" x3="-40" y4="18.475"/>
<arc width="5" x="-72.5" y="-17.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="0" x1="-11.04" y2="0" x2="-29.04"/>
<arc width="5" x="71.5" y="12.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-7.24511" x1="-10" y2="7.26554" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="89.2021" y2="10" x2="80.7365"/>
<rect width="3" x="-7" y="-5" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="80.7179" y2="-10" x2="89.2223"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-89.184" y2="10" x2="-79.884"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-7.24511" x1="3.7" y2="7.26554" x2="3.7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-39.2243" y2="10" x2="39.3264"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-45" y2="13" x2="-43.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-17" x1="44" y2="-17" x2="42.5"/>
<text x="14" y="5.6666" size="6" text="-"/>
<text x="-17" y="7" size="6" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-17" x1="47" y2="-17" x2="45.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-48" y2="13" x2="-46.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-17" x1="50" y2="-17" x2="48.5"/>
<rect width="3" x="6.7" y="-5" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-51" y2="13" x2="-49.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-51" y2="15" x2="-43.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-15" x1="50" y2="-15" x2="42.5"/>
<arc width="5" x="66.5" y="12.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="180" angle="-175"/>
<arc width="5" x="-77.5" y="-17.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="180" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.5" x1="79.5" y2="20.5" x2="40.5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.5" x1="-40.5" y2="18.5" x2="-80.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:blue" y1="0" x1="30" y2="9" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-0.239243" x1="-30" y2="-9.77916" x2="-30"/>
<input x="92" y="-24.5" size="9" rotate="true" text="_" tagg="label"/>
<rect width="40" x="-20" y="-20" antialias="false" height="40" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="-90" y="-10" orientation="w"/>
<terminal x="-90" y="10" orientation="w"/>
<terminal x="90" y="-10" orientation="e"/>
<terminal x="90" y="10" orientation="e"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Elsner</name>
<name lang="nl">Elsner</name>
<name lang="be">Elsner</name>
<name lang="fr">Elsner</name>
<name lang="it">Elsner</name>
<name lang="en">Elsner</name>
<name lang="pl">Elsner</name>
<name lang="el">Elsner</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,48 +0,0 @@
<definition width="220" version="0.4" hotspot_x="5" hotspot_y="27" height="130" type="element" ic="true" orientation="dyyy">
<names>
<name lang="nl">IP settings</name>
<name lang="be">IP settings</name>
<name lang="fr">IP settings</name>
<name lang="it">Configurazione IP</name>
<name lang="en">IP settings</name>
</names>
<informations/>
<description>
<rect width="40" x="160" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="80" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="120" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="10" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="10" y="40" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="10" y="70" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="164" y="20.5" size="9" rotate="true" text="255"/>
<rect width="40" x="80" y="40" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="80" y="70" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="124" y="20.5" size="9" rotate="true" text="255"/>
<input x="84" y="20.5" size="9" rotate="true" text="255"/>
<rect width="40" x="120" y="40" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="120" y="70" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="40" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="160" y="70" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="160" y="40" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="124" y="50.5" size="9" rotate="true" text="255"/>
<input x="124" y="80.5" size="9" rotate="true" text="255"/>
<input x="84" y="80.5" size="9" rotate="true" text="255"/>
<input x="84" y="50.5" size="9" rotate="true" text="255"/>
<input x="18" y="20.5" size="4" rotate="true" text="IP"/>
<input x="164" y="80.5" size="9" rotate="true" text="255"/>
<input x="164" y="50.5" size="9" rotate="true" text="255"/>
<rect width="40" x="40" y="70" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="40" x="40" y="40" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="44" y="20.5" size="9" rotate="true" text="255"/>
<input x="7" y="80.5" size="4" rotate="true" text="Gateway"/>
<input x="7" y="50.5" size="4" rotate="true" text="SUB net"/>
<input x="44" y="50.5" size="9" rotate="true" text="255"/>
<input x="44" y="80.5" size="9" rotate="true" text="255"/>
<rect width="210" x="0" y="0" antialias="false" height="100" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="210" x="0" y="-20" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="33" y="-10.5" size="9" rotate="true" text="NETWERK settings"/>
<terminal x="10" y="25" nameHidden="1" number="" name="" orientation="n"/>
<terminal x="10" y="55" nameHidden="1" number="" name="" orientation="n"/>
<terminal x="10" y="85" nameHidden="1" number="" name="" orientation="n"/>
</description>
</definition>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">IP-Netzwerk</name>
<name lang="nl">IP netwerk</name>
<name lang="be">IP netwerk</name>
<name lang="fr">IP réseau</name>
<name lang="it">Network IP</name>
<name lang="en">IP network</name>
<name lang="el">Δίκτυο IP</name>
</names>
</qet-directory>

View File

@ -1,30 +0,0 @@
<definition width="120" version="0.4" hotspot_x="6" hotspot_y="25" height="30" link_type="master" type="element" ic="true" orientation="dyyy">
<names>
<name lang="nl">Fysiek adres KNX</name>
<name lang="be">Fysiek adres KNX</name>
<name lang="en">Physical address KNX</name>
<name lang="fr">Adresse physique KNX</name>
<name lang="it">Indirizzo fisico KNX</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<kindInformations>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
<kindInformation name="tempoType" show="0"/>
</kindInformations>
<description>
<rect width="21" x="42" y="-20" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="21" x="21" y="-20" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="70" y="-9.5" size="9" rotate="true" text="001"/>
<rect width="46" x="63" y="-20" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="3" y="-9.5" size="9" rotate="true" text="F"/>
<input x="41" y="-9.5" size="9" rotate="true" text="01"/>
<input x="20" y="-9.5" size="9" rotate="true" text="01"/>
<rect width="21" x="0" y="-20" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="0" y="-5" nameHidden="24" number="" name="" orientation="n"/>
</description>
</definition>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">KNX</name>
<name lang="nl">KNX</name>
<name lang="be">KNX</name>
<name lang="fr">KNX</name>
<name lang="en">KNX</name>
<name lang="it">KNX</name>
<name lang="el">KNX</name>
</names>
</qet-directory>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">Versorgungen</name>
<name lang="be">Voedingen</name>
<name lang="en">Power Supplies</name>
<name lang="it">Alimentatori</name>
<name lang="fr">Alimentations</name>
<name lang="nl">Voedingen</name>
<name lang="ru">Источники питания</name>
</names>
</qet-directory>

View File

@ -1,39 +0,0 @@
<definition width="120" version="0.4" hotspot_x="50" hotspot_y="54" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">KNX voeding 160mA</name>
<name lang="be">KNX voeding 160mA</name>
<name lang="en">KNX power supplies 160mA</name>
<name lang="fr">KNX alimentations 160mA</name>
<name lang="it">Alimentatore KNX 160mA</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="80" x="-40" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-4" y="26" size="3" text="160 mA"/>
<text x="42" y="-13" size="4" text="+"/>
<text x="43" y="7" size="4" text="-"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-17" y2="33" x2="-9"/>
<arc width="10" x="-25" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<text x="-37" y="22" size="3" text="PE"/>
<text x="-37" y="2" size="3" text="N"/>
<text x="-4" y="33" size="3" text="30V DC"/>
<text x="-37" y="-18" size="3" text="L"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-40" y2="-40" x2="20"/>
<text x="-12" y="-29" size="3" text="230V AC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-29" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-29" y2="33" x2="-21"/>
<arc width="10" x="-35" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="20" y2="39.5772" x2="20"/>
<rect width="12" x="24" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="41" y="-34.5" size="9" rotate="true" text="T_" tagg="label"/>
<text x="33" y="23" size="5" rotation="270" color="white" text="KNX 30V DC"/>
<terminal x="-45" y="-20" nameHidden="0" number="" name="L" orientation="w"/>
<terminal x="-45" y="0" nameHidden="0" number="" name="N" orientation="w"/>
<terminal x="-44" y="20" nameHidden="0" number="" name="PE" orientation="w"/>
<terminal x="45" y="-10" nameHidden="0" number="" name="+" orientation="e"/>
<terminal x="45" y="10" nameHidden="0" number="" name="-" orientation="e"/>
</description>
</definition>

View File

@ -1,39 +0,0 @@
<definition width="120" version="0.4" hotspot_x="50" hotspot_y="54" height="100" type="element" ic="true" orientation="dyyy"link_type="master">
<names>
<name lang="nl">KNX voeding 320mA</name>
<name lang="be">KNX voeding 320mA</name>
<name lang="en">KNX power supplies 320mA</name>
<name lang="fr">KNX alimentations 320mA</name>
<name lang="it">Alimentatore KNX 320mA</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="80" x="-40" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-4" y="26" size="3" text="320 mA"/>
<text x="42" y="-13" size="4" text="+"/>
<text x="43" y="7" size="4" text="-"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-17" y2="33" x2="-9"/>
<arc width="10" x="-25" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<text x="-37" y="22" size="3" text="PE"/>
<text x="-37" y="2" size="3" text="N"/>
<text x="-4" y="33" size="3" text="30V DC"/>
<text x="-37" y="-18" size="3" text="L"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-40" y2="-40" x2="20"/>
<text x="-12" y="-29" size="3" text="230V AC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-29" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-29" y2="33" x2="-21"/>
<arc width="10" x="-35" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="20" y2="39.5772" x2="20"/>
<rect width="12" x="24" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="41" y="-34.5" size="9" rotate="true" text="T_" tagg='label'/>
<text x="33" y="23" size="5" rotation="270" color="white" text="KNX 30V DC"/>
<terminal x="-45" y="-20" nameHidden="0" number="" name="L" orientation="w"/>
<terminal x="-45" y="0" nameHidden="0" number="" name="N" orientation="w"/>
<terminal x="-44" y="20" nameHidden="0" number="" name="PE" orientation="w"/>
<terminal x="45" y="-10" nameHidden="0" number="" name="+" orientation="e"/>
<terminal x="45" y="10" nameHidden="0" number="" name="-" orientation="e"/>
</description>
</definition>

View File

@ -1,41 +0,0 @@
<definition width="120" version="0.4" hotspot_x="50" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">KNX voeding 640mA</name>
<name lang="be">KNX voeding 640mA</name>
<name lang="en">KNX power supplies 640mA</name>
<name lang="fr">KNX alimentations 640mA</name>
<name lang="it">Alimentatore KNX 640mA</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="80" x="-40" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-4" y="26" size="3" text="640 mA"/>
<text x="42" y="-13" size="4" text="+"/>
<text x="43" y="7" size="4" text="-"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-17" y2="33" x2="-9"/>
<arc width="10" x="-25" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<text x="-37" y="22" size="3" text="PE"/>
<text x="-37" y="2" size="3" text="N"/>
<text x="-4" y="33" size="3" text="30V DC"/>
<text x="-37" y="-18" size="3" text="L"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-40" y2="-40" x2="20"/>
<text x="-12" y="-29" size="3" text="230V AC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-29" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="-29" y2="33" x2="-21"/>
<arc width="10" x="-35" y="-35" antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="20" y2="39.5772" x2="20"/>
<rect width="12" x="24" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="41" y="-34.5" size="9" rotate="true" text="T_" tagg="label"/>
<text x="33" y="23" size="5" rotation="270" color="white" text="KNX 30V DC"/>
<terminal x="-45" y="-20" nameHidden="0" number="" name="L" orientation="w"/>
<terminal x="-45" y="0" nameHidden="0" number="" name="N" orientation="w"/>
<terminal x="-44" y="20" nameHidden="0" number="" name="PE" orientation="w"/>
<terminal x="45" y="-10" nameHidden="0" number="" name="+" orientation="e"/>
<terminal x="45" y="10" nameHidden="0" number="" name="-" orientation="e"/>
<terminal x="-10" y="45" nameHidden="1" number="" name="+30VDC" orientation="s"/>
<terminal x="10" y="45" nameHidden="0" number="" name="-30VDC" orientation="s"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="be">Gebouwen beheer</name>
<name lang="ru">Строительство</name>
<name lang="el">Διαχείριση κτηρίου</name>
<name lang="en">Gebäudetechnik</name>
<name lang="it">Gestione edifici</name>
<name lang="fr">Gestion d'immeubles</name>
<name lang="pl">Zarządzanie budynkiem</name>
<name lang="nl">Gebouwen beheer</name>
</names>
</qet-directory>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">Siemens</name>
<name lang="nl">Siemens</name>
<name lang="be">Siemens</name>
<name lang="fr">Siemens</name>
<name lang="it">Siemens</name>
<name lang="en">Siemens</name>
<name lang="el">Siemens</name>
</names>
</qet-directory>

View File

@ -1,74 +0,0 @@
<definition width="430" version="0.4" hotspot_x="39" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N512/11 basis module (max 4 uitbreidingen)</name>
<name lang="be">N512/11 basis module (max 4 uitbreidingen)</name>
<name lang="fr">module de base (max 4 extensions)</name>
<name lang="it">Modulo base N512/11</name>
<name lang="en">basic module (max 4 extensions)</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="-10" y2="39.5772" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C" tagg="none"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B" tagg="none"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<text x="-35" y="-5" size="4" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<text x="-34" y="15" size="4" text="-"/>
<input x="80" y="18" size="8" text="A" tagg="none"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<rect width="12" x="-26" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_" tagg="label"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<text x="-17" y="21" size="4" rotation="270" color="white" text="KNX 30V DC"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 16AX C-load load-check" tagg="none"/>
<terminal x="-34" y="-10" orientation="w"/>
<terminal x="-34" y="10" orientation="w"/>
<terminal x="40" y="45" orientation="s"/>
<terminal x="80" y="45" orientation="s"/>
<terminal x="140" y="45" orientation="s"/>
<terminal x="180" y="45" orientation="s"/>
<terminal x="240" y="45" orientation="s"/>
<terminal x="280" y="45" orientation="s"/>
<terminal x="365" y="-30" orientation="e"/>
<terminal x="365" y="-20" orientation="e"/>
<terminal x="365" y="-10" orientation="e"/>
<terminal x="365" y="0" orientation="e"/>
<terminal x="365" y="10" orientation="e"/>
<terminal x="365" y="20" orientation="e"/>
</description>
</definition>

View File

@ -1,75 +0,0 @@
<definition width="440" version="0.4" hotspot_x="43" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N512/21 uitbreidingsmodule op N512/11</name>
<name lang="it">Modulo N512/21</name>
</names>
<informations>Ronny Desmedt</informations>
<description>
<circle x="-23" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="-30" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="-23" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<input x="80" y="18" size="8" text="A"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 16AX C-load load-check"/>
<terminal x="-35" y="-30" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="365" y="-30" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="0" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="-35" y="-20" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="-10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="0" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="20" nameHidden="1" number="" name="" orientation="w"/>
</description>
</definition>

View File

@ -1,74 +0,0 @@
<definition width="430" version="0.4" hotspot_x="38" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N513/11 basis module (max 4 uitbreidingen)</name>
<name lang="be">N513/11 basis module (max 4 uitbreidingen)</name>
<name lang="fr">N513/11 module de base (max 4 extensions)</name>
<name lang="it">Modulo base N513/11</name>
<name lang="en">N513/11 basic module (max 4 extensions)</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="-10" y2="39.5772" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<text x="-35" y="-5" size="4" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<text x="-34" y="15" size="4" text="-"/>
<input x="80" y="18" size="8" text="A"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<rect width="12" x="-26" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<text x="-17" y="21" size="4" rotation="270" color="white" text="KNX 30V DC"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 20AX C-load load-check"/>
<terminal x="-34" y="-10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-34" y="10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="365" y="-30" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="0" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="20" nameHidden="1" number="" name="" orientation="e"/>
</description>
</definition>

View File

@ -1,80 +0,0 @@
<definition width="440" version="0.4" hotspot_x="43" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N513/21 uitbreidingsmodule op N513/11</name>
<name lang="be">N513/21 uitbreidingsmodule op N513/11</name>
<name lang="fr">N513/21 module d'extension N513/11</name>
<name lang="it">Modulo espansione N513/21</name>
<name lang="en">N513/21 expansion module N513/11</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<circle x="-23" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="-30" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="-23" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<input x="80" y="18" size="8" text="A"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 20AX C-load load-check"/>
<terminal x="-35" y="-30" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="365" y="-30" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="0" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="-35" y="-20" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="-10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="0" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="20" nameHidden="1" number="" name="" orientation="w"/>
</description>
</definition>

View File

@ -1,74 +0,0 @@
<definition width="430" version="0.4" hotspot_x="38" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N562/11 basis module (max 4 uitbreidingen)</name>
<name lang="be">N562/11 basis module (max 4 uitbreidingen)</name>
<name lang="fr">N562/11 module de base (max 4 extensions)</name>
<name lang="it">Modulo base N562/11</name>
<name lang="en">N562/11 basic module (max 4 extensions)</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-39.6097" x1="-10" y2="39.5772" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<text x="-35" y="-5" size="4" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<text x="-34" y="15" size="4" text="-"/>
<input x="80" y="18" size="8" text="A"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<rect width="12" x="-26" y="-36" antialias="false" height="72" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<text x="-17" y="21" size="4" rotation="270" color="white" text="KNX 30V DC"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 10AX C-load load-check"/>
<terminal x="-34" y="-10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-34" y="10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="365" y="-30" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="0" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="20" nameHidden="1" number="" name="" orientation="e"/>
</description>
</definition>

View File

@ -1,80 +0,0 @@
<definition width="440" version="0.4" hotspot_x="43" hotspot_y="42" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="nl">N562/21 uitbreidingsmodule op N562/11</name>
<name lang="be">N562/21 uitbreidingsmodule op N562/11</name>
<name lang="fr">N562/21 module d'extension N562/11</name>
<name lang="it">Modulo estensione N562/21</name>
<name lang="en">N562/21 expansion module N562/11</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<circle x="-23" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="-30" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="390" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<rect width="20" x="340" y="-40" antialias="false" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-23" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-3" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="281" y="38" size="4" text="3"/>
<circle x="-23" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="-23" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="17" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-23" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<circle x="347" y="-13" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<text x="241" y="38" size="4" text="L3"/>
<text x="181" y="38" size="4" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="275" y2="30" x2="280" y3="40" x3="280"/>
<text x="141" y="38" size="4" text="L2"/>
<text x="81" y="38" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="280" y2="9.208" x2="280"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="310" y2="-9.67679" x2="310"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="175" y2="30" x2="180" y3="40" x3="180"/>
<input x="280" y="18" size="8" text="C"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="180" y2="9.208" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="210" y2="-10" x2="310"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="210" y2="-9.67679" x2="210"/>
<arc width="5" x="277.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="240" y2="0" x2="240"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="10" x1="75" y2="30" x2="80" y3="40" x3="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="280" y2="0" x2="240"/>
<input x="180" y="18" size="8" text="B"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="110" y2="-10" x2="210"/>
<arc width="5" x="177.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0.808" x1="80" y2="9.208" x2="80"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="140" y2="0" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="140"/>
<input x="80" y="18" size="8" text="A"/>
<arc width="5" x="77.5" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-90" angle="-180"/>
<text x="41" y="38" size="4" text="L1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.06511" x1="10" y2="40.0705" x2="10"/>
<input x="363" y="43.5" size="9" rotate="true" text="K_"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="10" y2="-10" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="39.3165" x1="110" y2="-9.67679" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="40" y2="0" x2="40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="80" y2="0" x2="40"/>
<circle x="347" y="-33" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="6"/>
<input x="25" y="-24.5" size="9" rotate="true" text="3x AC 230/400V 10AX C-load load-check"/>
<terminal x="-35" y="-30" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="40" y="45" nameHidden="0" number="1" name="1" orientation="s"/>
<terminal x="80" y="45" nameHidden="0" number="2" name="2" orientation="s"/>
<terminal x="140" y="45" nameHidden="0" number="3" name="3" orientation="s"/>
<terminal x="180" y="45" nameHidden="0" number="4" name="4" orientation="s"/>
<terminal x="240" y="45" nameHidden="0" number="5" name="5" orientation="s"/>
<terminal x="280" y="45" nameHidden="0" number="6" name="6" orientation="s"/>
<terminal x="365" y="-30" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="-10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="0" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="10" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="365" y="20" nameHidden="1" number="" name="" orientation="e"/>
<terminal x="-35" y="-20" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="-10" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="0" nameHidden="1" number="" name="" orientation="w"/>
<terminal x="-35" y="20" nameHidden="1" number="" name="" orientation="w"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">Wago</name>
<name lang="nl">Wago</name>
<name lang="be">Wago</name>
<name lang="fr">Wago</name>
<name lang="it">Wago</name>
<name lang="en">Wago</name>
<name lang="el">Wago</name>
</names>
</qet-directory>

View File

@ -1,67 +0,0 @@
<definition width="510" version="0.4" hotspot_x="36" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="ar">Wago 750-430</name>
<name lang="de">Wago 750-430</name>
<name lang="ru">Wago 750-430</name>
<name lang="pt">Wago 750-430</name>
<name lang="el">Wago 750-430</name>
<name lang="en">Wago 750-430</name>
<name lang="it">Wago 750-430</name>
<name lang="fr">Wago 750-430</name>
<name lang="pl">Wago 750-430</name>
<name lang="es">Wago 750-430</name>
<name lang="nl">Wago 750-430</name>
<name lang="cs">Wago 750-430</name>
</names>
<informations>
Author: RDS for QelectroTech
Ref: K750-430
</informations>
<description>
<text x="375" y="27" size="4" text="DI8"/>
<text x="74" y="28" size="4" text="DI 3"/>
<rect width="480" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="335" y="27" size="4" text="DI6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-38.9694" x1="210" y2="38.9669" x2="210"/>
<text x="35" y="27" size="4" text="DI 1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-39.9694" x1="260" y2="37.9669" x2="260"/>
<text x="275" y="27" size="4" text="DI4"/>
<rect width="53" x="-14.25" y="-36.917" antialias="false" height="13.9673" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<text x="235" y="28" size="4" text="DI2"/>
<text x="175" y="27" size="4" text="DI7"/>
<arc width="6" x="207" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<text x="135" y="27" size="4" text="DI5"/>
<text x="-6" y="-26" size="6" text="750-430"/>
<arc width="6" x="257" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<arc width="6" x="157" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-84"/>
<arc width="6" x="157" y="41" antialias="true" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>
<rect width="12" x="436.75" y="-38.95" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect width="12" x="-29.25" y="-38.95" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<text x="446.75" y="12.05" size="6" rotation="270" text="K-BUS"/>
<text x="-19.25" y="12.05" size="6" rotation="270" text="K-BUS"/>
<text x="377" y="37" size="4" text="8"/>
<text x="338" y="37" size="4" text="7"/>
<text x="278" y="37" size="4" text="6"/>
<text x="238" y="37" size="4" text="5"/>
<text x="177" y="37" size="4" text="4"/>
<text x="138" y="37" size="4" text="3"/>
<text x="78" y="37" size="4" text="2"/>
<text x="38" y="37" size="4" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:green" y1="-39.9694" x1="160" y2="37.9669" x2="160"/>
<input x="451" y="-27.5" size="9" rotate="true" text="_" tagg="label"/>
<terminal x="260" y="-45" orientation="n"/>
<terminal x="210" y="-45" orientation="n"/>
<terminal x="40" y="45" orientation="s"/>
<terminal x="80" y="45" orientation="s"/>
<terminal x="140" y="45" orientation="s"/>
<terminal x="180" y="45" orientation="s"/>
<terminal x="240" y="45" orientation="s"/>
<terminal x="280" y="45" orientation="s"/>
<terminal x="340" y="45" orientation="s"/>
<terminal x="380" y="45" orientation="s"/>
<terminal x="160" y="-45" orientation="n"/>
<terminal x="160" y="41" orientation="s"/>
<terminal x="210" y="41" orientation="s"/>
<terminal x="260" y="41" orientation="s"/>
</description>
</definition>

View File

@ -1,70 +0,0 @@
<definition width="290" version="0.4" hotspot_x="82" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="ar">Wago 750-849</name>
<name lang="de">Wago 750-849</name>
<name lang="ru">Wago 750-849</name>
<name lang="pt">Wago 750-849</name>
<name lang="el">Wago 750-849</name>
<name lang="en">Wago 750-849</name>
<name lang="it">Wago 750-849</name>
<name lang="fr">Wago 750-849</name>
<name lang="pl">Wago 750-849</name>
<name lang="es">Wago 750-849</name>
<name lang="nl">Wago 750-849</name>
<name lang="cs">Wago 750-849</name>
</names>
<informations>
Author: RDS for QelectroTech
Ref: 750-849
</informations>
<description>
<text x="39" y="30" size="4" text="-"/>
<rect width="220" x="-30" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="19" y="30" size="4" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.0647" x1="150" y2="40.07" x2="150"/>
<text x="-4" y="30" size="4" text="24V"/>
<text x="98" y="30" size="4" text="+"/>
<rect width="50" x="-80" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-79" y="17" size="4" text="X2"/>
<text x="79" y="30" size="4" text="0V"/>
<text x="-79" y="-12" size="4" text="X1"/>
<text x="138" y="30" size="4" text="PE"/>
<text x="58" y="30" size="4" text="PE"/>
<rect width="12" x="177" y="-39" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<text x="119" y="30" size="4" text="-"/>
<rect width="46" x="-26" y="-33.9673" antialias="false" height="13.9673" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect width="30" x="-70" y="-30" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="-70" y="0" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="4" x="-68" y="-9" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-62" y="-28" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="39" y="38" size="4" text="3"/>
<text x="-58" y="-12" size="4" color="white" text="RJ45"/>
<rect width="4" x="-68" y="-28" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="-68" y="-19" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect width="4" x="-68" y="21" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="19" y="38" size="4" text="2"/>
<text x="-1" y="38" size="4" text="1"/>
<text x="98" y="38" size="4" text="6"/>
<text x="79" y="38" size="4" text="5"/>
<text x="138" y="38" size="4" text="8"/>
<text x="58" y="38" size="4" text="4"/>
<text x="119" y="38" size="4" text="7"/>
<text x="-19" y="-23" size="6" text="750-849"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10.0647" x1="-10" y2="39.07" x2="-10"/>
<rect width="20" x="-62" y="2" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="190" y="-34.5" size="9" rotate="true" text="_" tagg="label"/>
<text x="-58" y="18" size="4" color="white" text="RJ45"/>
<rect width="4" x="-68" y="2" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="-68" y="11" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="188" y="12" size="6" rotation="270" text="K-BUS"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="-10" y2="-10" x2="150"/>
<terminal x="60" y="45" orientation="s"/>
<terminal x="100" y="45" orientation="s"/>
<terminal x="80" y="45" orientation="s"/>
<terminal x="120" y="45" orientation="s"/>
<terminal x="140" y="45" orientation="s"/>
<terminal x="0" y="45" orientation="s"/>
<terminal x="40" y="45" orientation="s"/>
<terminal x="20" y="45" orientation="s"/>
</description>
</definition>

View File

@ -1,97 +0,0 @@
<definition width="290" version="0.4" hotspot_x="82" hotspot_y="50" height="100" type="element" ic="true" orientation="dyyy" link_type="master">
<names>
<name lang="ar">Wago 750-881</name>
<name lang="de">Wago 750-881</name>
<name lang="ru">Wago 750-881</name>
<name lang="pt">Wago 750-881</name>
<name lang="el">Wago 750-881</name>
<name lang="en">Wago 750-881</name>
<name lang="it">Wago 750-881</name>
<name lang="fr">Wago 750-881</name>
<name lang="pl">Wago 750-881</name>
<name lang="es">Wago 750-881</name>
<name lang="nl">Wago 750-881</name>
<name lang="cs">Wago 750-881</name>
</names>
<informations>
Author: RDS for QelectroTech
Ref: 750-881
</informations>
<description>
<text x="39" y="30" size="4" text="-"/>
<rect width="220" x="-31" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="19" y="30" size="4" text="+"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-9.0647" x1="150" y2="40.07" x2="150"/>
<text x="-4" y="30" size="4" text="24V"/>
<rect width="90" x="31" y="-34.9674" antialias="false" height="19.9674" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="98" y="30" size="4" text="+"/>
<rect width="50" x="-80" y="-40" antialias="false" height="80" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-79" y="17" size="4" text="X2"/>
<text x="79" y="30" size="4" text="0V"/>
<text x="-79" y="-12" size="4" text="X1"/>
<text x="138" y="30" size="4" text="PE"/>
<text x="58" y="30" size="4" text="PE"/>
<rect width="12" x="176" y="-39" antialias="false" height="78" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<text x="119" y="30" size="4" text="-"/>
<rect width="46" x="-26" y="-33.9673" antialias="false" height="13.9673" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect width="5" x="71" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="81" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="61" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="51" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="41" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="73" y="-32" size="2" text="4"/>
<rect width="5" x="61" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="63" y="-31.9761" size="2" text="3"/>
<text x="43" y="-31.9761" size="2" text="1"/>
<rect width="5" x="71" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="53" y="-31.9761" size="2" text="2"/>
<text x="35" y="-21" size="2" text="OFF"/>
<rect width="5" x="101" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="91" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="111" y="-25" antialias="false" height="5" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="113" y="-32" size="2" text="8"/>
<text x="93" y="-32" size="2" text="6"/>
<text x="103" y="-32" size="2" text="7"/>
<text x="83" y="-32" size="2" text="5"/>
<rect width="30" x="-70" y="-30" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="81" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="-70" y="0" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="91" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="101" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="111" y="-30" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="4" x="-68" y="-9" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-62" y="-28" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="39" y="38" size="4" text="3"/>
<text x="-58" y="-12" size="4" color="white" text="RJ45"/>
<rect width="4" x="-68" y="-28" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="-68" y="-19" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect width="4" x="-68" y="21" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="19" y="38" size="4" text="2"/>
<text x="-1" y="38" size="4" text="1"/>
<text x="98" y="38" size="4" text="6"/>
<text x="79" y="38" size="4" text="5"/>
<text x="138" y="38" size="4" text="8"/>
<text x="58" y="38" size="4" text="4"/>
<text x="119" y="38" size="4" text="7"/>
<text x="-19" y="-23" size="6" text="750-881"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10.0647" x1="-10" y2="39.07" x2="-10"/>
<rect width="20" x="-62" y="2" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<input x="190" y="-34.5" size="9" rotate="true" text="_" tagg="label"/>
<text x="-58" y="18" size="4" color="white" text="RJ45"/>
<rect width="4" x="-68" y="2" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="5" x="-68" y="11" antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect width="5" x="41" y="-29.9783" antialias="false" height="9.98915" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="35" y="-28" size="2" text="ON"/>
<rect width="5" x="51" y="-24.9837" antialias="false" height="4.99457" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="187" y="12" size="6" rotation="270" text="K-BUS"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="-10" y2="-10" x2="150"/>
<terminal x="60" y="45" orientation="s"/>
<terminal x="100" y="45" orientation="s"/>
<terminal x="80" y="45" orientation="s"/>
<terminal x="120" y="45" orientation="s"/>
<terminal x="140" y="45" orientation="s"/>
<terminal x="0" y="45" orientation="s"/>
<terminal x="40" y="45" orientation="s"/>
<terminal x="20" y="45" orientation="s"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,658 +0,0 @@
<definition width="340" version="0.4" hotspot_x="113" hotspot_y="11" height="50" type="element" ic="true" orientation="dyyy">
<names>
<name lang="de">750-430</name>
<name lang="be">750-430</name>
<name lang="en">750-430</name>
<name lang="fr">750-430</name>
<name lang="it">750-430</name>
<name lang="nl">750-430</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<text x="84" y="5" size="4" rotation="90" text="1"/>
<text x="138" y="4" size="2" rotation="90" text="C"/>
<text x="130" y="4" size="2" rotation="90" text="D"/>
<text x="146" y="27" size="2" rotation="90" text="F"/>
<text x="37" y="6" size="4" rotation="90" text="2"/>
<text x="69" y="2" size="4" rotation="90" text="DI 3"/>
<text x="14" y="2" size="4" rotation="90" text="DI 5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="159.073" y2="3" x2="127.932"/>
<text x="-41" y="2" size="4" rotation="90" text="DI 7"/>
<text x="-73" y="6" size="4" rotation="90" text="4"/>
<text x="-18.05" y="6.3125" size="4" rotation="90" text="3"/>
<text x="146" y="4" size="2" rotation="90" text="B"/>
<text x="-73" y="21" size="4" rotation="90" text="8"/>
<rect width="4" x="138" y="7" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="138" y="27" size="2" rotation="90" text="G"/>
<text x="-18.05" y="21.3125" size="4" rotation="90" text="7"/>
<text x="-41" y="18" size="4" rotation="90" text="DI 8"/>
<text x="69" y="18" size="4" rotation="90" text="DI 4"/>
<text x="84" y="20" size="4" rotation="90" text="5"/>
<text x="14" y="18" size="4" rotation="90" text="DI 6"/>
<text x="37" y="21" size="4" rotation="90" text="6"/>
<text x="130" y="27" size="2" rotation="90" text="H"/>
<text x="116.95" y="2.14062" size="4" rotation="90" text="DI 1"/>
<rect width="4" x="146" y="7" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="154" y="27" size="2" rotation="90" text="E"/>
<rect width="4" x="146" y="19" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="4" x="154" y="7" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="154" y="4" size="2" rotation="90" text="A"/>
<text x="116.95" y="18.1406" size="4" rotation="90" text="DI 2"/>
<rect width="4" x="138" y="19" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="4" x="154" y="19" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="4" x="130" y="19" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-108" y2="12" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-106" y2="10" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="187" y2="12" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="189" y2="10" x2="189"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-44" y2="1" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-46" y2="1" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-45" y2="0" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="36" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="10" y2="1" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-33" y2="1" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-34" y2="0" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-34" y2="36" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="30" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="1" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="36" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="9" y2="0" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-20" y2="30" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-7" y2="30" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="21" y2="1" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="20" y2="0" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="20" y2="36" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="64" y2="1" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="64" y2="36" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="64" y2="0" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="76" y2="1" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="112" y2="1" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="76" y2="0" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="76" y2="36" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="112" y2="36" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="112" y2="0" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="164" y2="1" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="124" y2="1" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="162" y2="1" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="124" y2="0" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="124" y2="36" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="163" y2="0" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="163" y2="36" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="175" y2="1" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="177" y2="0" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="176" y2="0" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="175" y2="1" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="174" y2="0" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="174" y2="36" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="65" y2="0" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="62" y2="0" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-45" y2="34" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="1" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="34" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-31" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="9" y2="34" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-35" y2="36" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-35" y2="0" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="1" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-9" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-9" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-10" y2="35" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-6" y2="30" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="34" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="23" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="64" y2="34" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="19" y2="0" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="19" y2="36" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="34" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="78" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="112" y2="34" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="74" y2="36" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="74" y2="0" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="34" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="126" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="163" y2="34" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="122" y2="0" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="122" y2="36" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="163" y2="1" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="1" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="177" y2="1" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="177" y2="1" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="177" y2="34" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="177" y2="1" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="172" y2="0" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="172" y2="36" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="175" y2="1" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-97" y2="21" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="-103" y2="35" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-103" y2="36" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-99" y2="31" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="-99" y2="31" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-108" y2="12" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="-105" y2="-7" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="-107" y2="-5" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-102" y2="3" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-108" y2="13" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-108" y2="14" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="-107" y2="15" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-106" y2="14" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="-105" y2="13" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-104" y2="12" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-102" y2="4" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-103" y2="5" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-104" y2="5" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="-97" y2="4" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-97" y2="3" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-104" y2="0" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-104" y2="-4" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-103" y2="-4" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-103" y2="-5" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-100" y2="-5" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-99" y2="-6" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" x1="-99" y2="-7" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="-100" y2="-8" x2="-101"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="-101" y2="-8" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-65" y2="25" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-64" y2="25" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-62" y2="23" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-61" y2="22" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="-61" y2="21" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-61" y2="19" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-62" y2="19" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-64" y2="19" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-65" y2="10" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-64" y2="10" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-62" y2="8" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-61" y2="7" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="-61" y2="6" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-61" y2="4" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-62" y2="4" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-64" y2="4" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-48" y2="13" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-48" y2="28" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-48" y2="13" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-48" y2="17" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-48" y2="2" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-59" y2="28" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-59" y2="13" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-48" y2="28" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-63" y2="25" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-62" y2="23" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-61" y2="21" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-61" y2="19" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-62" y2="18" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-63" y2="10" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-62" y2="8" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-61" y2="6" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-61" y2="4" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-62" y2="3" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-97" y2="0" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-96" y2="0" x2="-96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="1" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-46" y2="36" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-46" y2="0" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-44" y2="1" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-65" y2="2" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-67" y2="1" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-70" y2="1" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-73" y2="3" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-75" y2="6" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-77" y2="8" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-77" y2="11" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-75" y2="13" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-73" y2="13" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-70" y2="12" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-67" y2="10" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-65" y2="3" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-64" y2="3" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-63" y2="1" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-65" y2="0" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-74" y2="1" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-76" y2="3" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-78" y2="6" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-79" y2="8" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-79" y2="11" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-78" y2="13" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-76" y2="15" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-68" y2="13" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-65" y2="11" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-63" y2="11" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-64" y2="10" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-65" y2="17" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-67" y2="16" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-70" y2="16" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-73" y2="18" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-75" y2="21" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-77" y2="23" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-77" y2="26" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-75" y2="28" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-73" y2="28" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-70" y2="27" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-67" y2="25" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-65" y2="18" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-64" y2="18" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-63" y2="16" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-65" y2="15" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-74" y2="15" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-74" y2="16" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-76" y2="18" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-78" y2="20" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="-79" y2="23" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-79" y2="25" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-78" y2="27" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-77" y2="29" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-75" y2="30" x2="-72"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-72" y2="30" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-70" y2="29" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-67" y2="28" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-65" y2="26" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-63" y2="26" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-64" y2="25" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-41" y2="36" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-41" y2="0" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-36" y2="36" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-36" y2="1" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-33" y2="34" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="30" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-32" y2="1" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="34" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-10" y2="10" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-8" y2="10" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-7" y2="8" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-6" y2="7" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="-6" y2="6" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-6" y2="4" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-7" y2="4" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-8" y2="4" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-10" y2="25" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-8" y2="25" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-7" y2="23" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-6" y2="22" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="-6" y2="21" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-6" y2="19" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-7" y2="19" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-8" y2="19" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="10" y2="1" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-21" y2="36" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-32" y2="0" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="7" y2="13" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="7" y2="17" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="7" y2="28" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="7" y2="28" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-4" y2="28" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="7" y2="2" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="7" y2="13" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-4" y2="13" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-8" y2="25" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-6" y2="23" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-5" y2="21" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-5" y2="19" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-6" y2="18" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="7" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="7" y2="36" x2="7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-8" y2="10" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-6" y2="8" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-5" y2="6" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-5" y2="4" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-6" y2="3" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="8" y2="0" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="8" y2="36" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="11" y2="1" x2="11"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-10" y2="17" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-12" y2="16" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-15" y2="16" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-18" y2="18" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-20" y2="21" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-22" y2="23" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-22" y2="26" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-20" y2="28" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-18" y2="28" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-15" y2="27" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-12" y2="25" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-10" y2="18" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-9" y2="18" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-8" y2="16" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-10" y2="15" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-18" y2="16" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-21" y2="18" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-23" y2="21" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-23" y2="24" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="-23" y2="27" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-22" y2="29" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-20" y2="30" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-13" y2="28" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-10" y2="26" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-8" y2="26" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-9" y2="25" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-10" y2="2" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-12" y2="1" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-15" y2="1" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-18" y2="3" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-20" y2="6" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-22" y2="8" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-22" y2="11" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-20" y2="13" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-18" y2="13" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-15" y2="12" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-12" y2="10" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-10" y2="3" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-9" y2="3" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-8" y2="1" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-10" y2="0" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-18" y2="1" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-21" y2="3" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-22" y2="6" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-23" y2="8" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-23" y2="11" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-22" y2="13" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-21" y2="15" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-18" y2="15" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-12" y2="13" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-10" y2="11" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-8" y2="11" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-9" y2="10" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="13" y2="0" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="13" y2="36" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="6" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-21" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="35" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-6" y2="30" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="19" y2="1" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="19" y2="36" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="21" y2="34" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="44" y2="25" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="46" y2="25" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="47" y2="23" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="48" y2="22" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="48" y2="21" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="48" y2="19" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="47" y2="19" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="46" y2="19" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="44" y2="10" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="46" y2="10" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="47" y2="8" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="48" y2="7" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="48" y2="6" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="48" y2="4" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="47" y2="4" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="46" y2="4" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="22" y2="1" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="34" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="62" y2="17" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="62" y2="28" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="62" y2="28" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="51" y2="28" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="62" y2="2" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="62" y2="13" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="62" y2="13" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="51" y2="13" x2="51"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="46" y2="25" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="48" y2="23" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="49" y2="21" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="49" y2="19" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="48" y2="18" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="22" y2="0" x2="22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="46" y2="10" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="48" y2="8" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="49" y2="6" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="49" y2="4" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="48" y2="3" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="186" y2="31" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="186" y2="35" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="186" y2="31" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="181" y2="21" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="181" y2="21" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="181" y2="3" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="182" y2="-5" x2="183"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="187" y2="13" x2="187"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="187" y2="14" x2="188"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="188" y2="15" x2="189"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="189" y2="14" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="190" y2="13" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="191" y2="12" x2="191"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="181" y2="4" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="180" y2="5" x2="180"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="187" y2="4" x2="186"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="186" y2="3" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="187" y2="12" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="191" y2="-5" x2="191"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="191" y2="-7" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="190" y2="-8" x2="188"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="188" y2="-8" x2="183"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="183" y2="-7" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="182" y2="-6" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" x1="182" y2="-5" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="183" y2="-5" x2="186"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="187" y2="-5" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="187" y2="0" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="186" y2="0" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="63" y2="36" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="63" y2="0" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="66" y2="1" x2="66"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="44" y2="2" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="42" y2="1" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="39" y2="1" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="36" y2="3" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="34" y2="6" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="33" y2="8" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="33" y2="11" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="34" y2="13" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="36" y2="13" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="39" y2="12" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="42" y2="10" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="44" y2="4" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="45" y2="3" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="45" y2="3" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="46" y2="1" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="44" y2="0" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="36" y2="1" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="33" y2="3" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="32" y2="6" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="31" y2="8" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="31" y2="11" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="32" y2="13" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="33" y2="15" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="42" y2="13" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="44" y2="11" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="46" y2="11" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="45" y2="10" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="45" y2="10" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="44" y2="17" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="42" y2="16" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="39" y2="16" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="36" y2="18" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="34" y2="21" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="33" y2="23" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="33" y2="26" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="34" y2="28" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="36" y2="28" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="39" y2="27" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="42" y2="25" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="44" y2="19" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="45" y2="18" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="45" y2="18" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="46" y2="16" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="44" y2="15" x2="42"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="36" y2="15" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="36" y2="16" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="34" y2="18" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="32" y2="20" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="31" y2="23" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="31" y2="25" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="31" y2="27" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="33" y2="29" x2="35"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="35" y2="30" x2="37"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="37" y2="30" x2="40"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="40" y2="29" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="42" y2="28" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="44" y2="26" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="46" y2="26" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="45" y2="25" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="45" y2="25" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="68" y2="36" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="68" y2="0" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="74" y2="36" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="74" y2="1" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="76" y2="34" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="92" y2="10" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="94" y2="10" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="95" y2="8" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="96" y2="7" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="96" y2="6" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="96" y2="4" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="95" y2="4" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="94" y2="4" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="110" y2="2" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="110" y2="13" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="110" y2="13" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="110" y2="28" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="99" y2="13" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="99" y2="28" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="110" y2="17" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="110" y2="28" x2="99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="94" y2="10" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="96" y2="8" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="97" y2="6" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="97" y2="4" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="96" y2="3" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="94" y2="25" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="96" y2="23" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="97" y2="21" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="97" y2="19" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="96" y2="18" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="92" y2="25" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="94" y2="25" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="95" y2="23" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="96" y2="22" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="96" y2="21" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="96" y2="19" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="95" y2="19" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="94" y2="19" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="77" y2="0" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="77" y2="1" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="34" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="111" y2="36" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="111" y2="0" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="114" y2="1" x2="114"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="92" y2="17" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="90" y2="16" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="87" y2="16" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="84" y2="18" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="82" y2="21" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="81" y2="23" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="81" y2="26" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="82" y2="28" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="84" y2="28" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="87" y2="27" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="90" y2="25" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="92" y2="19" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="93" y2="18" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="93" y2="18" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="94" y2="16" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="92" y2="15" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="84" y2="16" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="82" y2="18" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="80" y2="20" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="79" y2="23" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="79" y2="25" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="79" y2="27" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="81" y2="29" x2="83"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="83" y2="30" x2="85"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="85" y2="30" x2="88"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="88" y2="29" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="90" y2="28" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="92" y2="26" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="94" y2="26" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="93" y2="25" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="93" y2="25" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="92" y2="2" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="90" y2="1" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="87" y2="1" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="84" y2="3" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="82" y2="6" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="81" y2="8" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="81" y2="11" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="82" y2="13" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="84" y2="13" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="87" y2="12" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="90" y2="10" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="92" y2="4" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="93" y2="3" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="93" y2="3" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="94" y2="1" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="92" y2="0" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="84" y2="1" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="81" y2="3" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="80" y2="6" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="79" y2="8" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="79" y2="11" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="80" y2="13" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="81" y2="15" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="84" y2="15" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="90" y2="13" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="92" y2="11" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="94" y2="11" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="93" y2="10" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="93" y2="10" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="116" y2="0" x2="116"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="116" y2="36" x2="116"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="122" y2="1" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="122" y2="36" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="124" y2="34" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="163" y2="1" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="160" y2="3" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="128" y2="3" x2="128"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="159.073" y2="30" x2="127.932"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="125" y2="0" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="125" y2="1" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="34" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="162" y2="36" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="162" y2="0" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="164" y2="1" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="167" y2="0" x2="167"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="167" y2="36" x2="167"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="176" y2="1" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="172" y2="1" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="34" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="172" y2="36" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="175" y2="34" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="180" y2="0" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="36" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="186" y2="0" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="176" y2="0" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="176" y2="0" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="186" y2="36" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="36" x2="176"/>
<text x="-92" y="1" size="6" rotation="90" text="750-430"/>
<input x="209.5" y="0" size="9" rotation="90" rotate="true" text="_" tagg="label"/>
<rect width="4" x="130" y="7" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="0" y="0" orientation="e"/>
</description>
</definition>

View File

@ -1,800 +0,0 @@
<definition width="340" version="0.4" hotspot_x="113" hotspot_y="11" height="50" type="element" ic="true" orientation="dyyy">
<names>
<name lang="de">750-432</name>
<name lang="be">750-432</name>
<name lang="en">750-432</name>
<name lang="fr">750-432</name>
<name lang="it">750-432</name>
<name lang="nl">750-432</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<text x="37" y="6" size="4" rotation="90" text="2"/>
<text x="-18.05" y="6" size="4" rotation="90" text="3"/>
<text x="116.95" y="1.99219" size="4" rotation="90" text="DI 1"/>
<text x="68.95" y="2.27344" size="4" rotation="90" text="+"/>
<text x="13.95" y="2.27344" size="4" rotation="90" text="+"/>
<text x="83.95" y="6" size="4" rotation="90" text="1"/>
<text x="145" y="5" size="2" rotation="90" text="DI1"/>
<text x="-73.05" y="6" size="4" rotation="90" text="4"/>
<text x="-40.05" y="1.71875" size="4" rotation="90" text="DI 3"/>
<text x="132" y="5" size="2" rotation="90" text="DI3"/>
<text x="116.95" y="17.9922" size="4" rotation="90" text="DI 2"/>
<text x="132" y="20" size="2" rotation="90" text="DI4"/>
<text x="145" y="20" size="2" rotation="90" text="DI2"/>
<text x="68.95" y="18.2734" size="4" rotation="90" text="+"/>
<text x="-40.05" y="17.7188" size="4" rotation="90" text="DI 4"/>
<text x="83.95" y="21" size="4" rotation="90" text="5"/>
<text x="-18.05" y="21" size="4" rotation="90" text="7"/>
<text x="13.95" y="18.2734" size="4" rotation="90" text="+"/>
<text x="-73.05" y="21" size="4" rotation="90" text="8"/>
<text x="37" y="21" size="4" rotation="90" text="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="187" y2="12" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="189" y2="10" x2="189"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-108" y2="12" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-106" y2="10" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-44" y2="1" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-46" y2="1" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-45" y2="0" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="36" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="10" y2="1" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-33" y2="1" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="30" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="1" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-34" y2="0" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-34" y2="36" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="9" y2="0" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="36" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-20" y2="30" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-7" y2="30" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="21" y2="1" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="64" y2="1" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="20" y2="0" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="20" y2="36" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="64" y2="0" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="64" y2="36" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="76" y2="1" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="76" y2="0" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="76" y2="36" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="112" y2="1" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="112" y2="0" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="112" y2="36" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="124" y2="1" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="124" y2="0" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="124" y2="36" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="160" y2="0" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="160" y2="34" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="162" y2="34" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="162" y2="0" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="173" y2="3" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="161" y2="1" x2="161"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="169" y2="1" x2="169"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="164" y2="34" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="157" y2="1" x2="157"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="161" y2="34" x2="161"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="159" y2="1" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="172" y2="1" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="174" y2="3" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="1" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="65" y2="0" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="62" y2="0" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-45" y2="34" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="1" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="1" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-31" y2="34" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-31" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="9" y2="34" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-35" y2="0" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-35" y2="36" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="9" y2="1" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-9" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-9" y2="30" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-10" y2="35" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-6" y2="30" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="1" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="23" y2="34" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="23" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="64" y2="34" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="19" y2="36" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="19" y2="0" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="1" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="78" y2="34" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="78" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="112" y2="34" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="74" y2="36" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="74" y2="0" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="1" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="126" y2="34" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="126" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="122" y2="0" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="122" y2="36" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="162" y2="1" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="160" y2="1" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="159" y2="1" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="175" y2="1" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="174" y2="3" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="159" y2="33" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="176" y2="1" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="157" y2="1" x2="157"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="160" y2="1" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="173" y2="3" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-99" y2="31" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="-103" y2="35" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="-99" y2="31" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-103" y2="36" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-97" y2="21" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-100" y2="-5" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-108" y2="12" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-103" y2="-5" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="-97" y2="4" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-97" y2="3" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-104" y2="0" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-99" y2="-6" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" x1="-99" y2="-7" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="-100" y2="-8" x2="-101"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="-105" y2="-7" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="-107" y2="-5" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-108" y2="13" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-108" y2="14" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="-107" y2="15" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-106" y2="14" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="-105" y2="13" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-104" y2="12" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-104" y2="5" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-102" y2="4" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-103" y2="5" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-102" y2="3" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-104" y2="-4" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="-103" y2="-4" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="-101" y2="-8" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-97" y2="0" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-65" y2="25" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-64" y2="25" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-62" y2="23" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-61" y2="22" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="-61" y2="21" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-61" y2="19" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-62" y2="19" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-64" y2="19" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-65" y2="10" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-64" y2="10" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-62" y2="8" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-61" y2="7" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="-61" y2="6" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-61" y2="4" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-62" y2="4" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-64" y2="4" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-48" y2="17" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-59" y2="13" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-59" y2="28" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-48" y2="28" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-48" y2="28" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-48" y2="2" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-48" y2="13" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-48" y2="13" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-63" y2="25" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-62" y2="23" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-61" y2="21" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-61" y2="19" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-62" y2="18" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-96" y2="0" x2="-96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-63" y2="10" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-62" y2="8" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-61" y2="6" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-61" y2="4" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-62" y2="3" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-45" y2="1" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-46" y2="36" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-46" y2="0" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-44" y2="1" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-65" y2="17" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-67" y2="16" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-70" y2="16" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-73" y2="18" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-75" y2="21" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-77" y2="23" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-77" y2="26" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-75" y2="28" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-73" y2="28" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-70" y2="27" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-67" y2="25" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-65" y2="18" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-64" y2="18" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-63" y2="16" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-65" y2="15" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-74" y2="16" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-76" y2="18" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-78" y2="20" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="-79" y2="23" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-79" y2="25" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-78" y2="27" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-77" y2="29" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-75" y2="30" x2="-72"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-72" y2="30" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-70" y2="29" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-67" y2="28" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-65" y2="26" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-63" y2="26" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-64" y2="25" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-65" y2="2" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-67" y2="1" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-70" y2="1" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-73" y2="3" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-75" y2="6" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-77" y2="8" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-77" y2="11" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-75" y2="13" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-73" y2="13" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-70" y2="12" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-67" y2="10" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-65" y2="3" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-64" y2="3" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-63" y2="1" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-65" y2="0" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-74" y2="1" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-76" y2="3" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-78" y2="6" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-79" y2="8" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-79" y2="11" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-78" y2="13" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-76" y2="15" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-74" y2="15" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-68" y2="13" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-65" y2="11" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-63" y2="11" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-64" y2="10" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-41" y2="0" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-41" y2="36" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-36" y2="1" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-36" y2="36" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-33" y2="34" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="30" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-10" y2="10" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-8" y2="10" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-7" y2="8" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-6" y2="7" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="-6" y2="6" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-6" y2="4" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-7" y2="4" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-8" y2="4" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-21" y2="36" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="10" y2="1" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="7" y2="17" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="7" y2="28" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="7" y2="28" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-4" y2="28" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="7" y2="2" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="7" y2="13" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="7" y2="13" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-4" y2="13" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="7" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="7" y2="36" x2="7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-8" y2="10" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-6" y2="8" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-5" y2="6" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-5" y2="4" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-6" y2="3" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="-32" y2="0" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-32" y2="1" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="1" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="-32" y2="34" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-8" y2="25" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-6" y2="23" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-5" y2="21" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-5" y2="19" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-6" y2="18" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-10" y2="25" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-8" y2="25" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="-7" y2="23" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-6" y2="22" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="-6" y2="21" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-6" y2="19" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-7" y2="19" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-8" y2="19" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="8" y2="36" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="8" y2="0" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="11" y2="1" x2="11"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-10" y2="17" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="-12" y2="16" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-15" y2="16" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-18" y2="18" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-20" y2="21" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-22" y2="23" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="-22" y2="26" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-20" y2="28" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-18" y2="28" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-15" y2="27" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-12" y2="25" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-10" y2="18" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-9" y2="18" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-8" y2="16" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-10" y2="15" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-18" y2="16" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="-21" y2="18" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="-23" y2="21" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="-23" y2="24" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="-23" y2="27" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="-22" y2="29" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="-20" y2="30" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="-13" y2="28" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="-10" y2="26" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-8" y2="26" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="-9" y2="25" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-10" y2="2" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="-12" y2="1" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-15" y2="1" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-18" y2="3" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-20" y2="6" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-22" y2="8" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-22" y2="11" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-20" y2="13" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-18" y2="13" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-15" y2="12" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="-12" y2="10" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="-10" y2="3" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-9" y2="3" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-8" y2="1" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-10" y2="0" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-18" y2="1" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="-21" y2="3" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="-22" y2="6" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="-23" y2="8" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="-23" y2="11" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-22" y2="13" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-21" y2="15" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-18" y2="15" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-12" y2="13" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="-10" y2="11" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-8" y2="11" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-9" y2="10" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="13" y2="0" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="13" y2="36" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="6" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-21" y2="30" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="6" y2="35" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-6" y2="30" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="19" y2="36" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="19" y2="1" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="21" y2="34" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="65" y2="1" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="62" y2="13" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="62" y2="17" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="51" y2="13" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="51" y2="28" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="62" y2="28" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="62" y2="28" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="62" y2="13" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="62" y2="2" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="22" y2="0" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="22" y2="1" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="1" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="22" y2="34" x2="8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="46" y2="25" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="48" y2="23" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="49" y2="21" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="49" y2="19" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="48" y2="18" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="44" y2="25" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="46" y2="25" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="47" y2="23" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="48" y2="22" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="48" y2="21" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="48" y2="19" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="47" y2="19" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="46" y2="19" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="46" y2="10" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="48" y2="8" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="49" y2="6" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="49" y2="4" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="48" y2="3" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="44" y2="10" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="46" y2="10" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="47" y2="8" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="48" y2="7" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="48" y2="6" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="48" y2="4" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="47" y2="4" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="46" y2="4" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="187" y2="-5" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="188" y2="-8" x2="183"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="181" y2="4" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="180" y2="5" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="186" y2="0" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="187" y2="0" x2="187"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="191" y2="-7" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="190" y2="-8" x2="188"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="183" y2="-5" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="181" y2="3" x2="185"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="187" y2="4" x2="186"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="186" y2="3" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="187" y2="12" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="187" y2="13" x2="187"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="187" y2="14" x2="188"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="188" y2="15" x2="189"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="189" y2="14" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="190" y2="13" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="191" y2="12" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="191" y2="-5" x2="191"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" x1="183" y2="-7" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="182" y2="-6" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" x1="182" y2="-5" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" x1="182" y2="-5" x2="183"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="181" y2="21" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="181" y2="21" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="31" x1="186" y2="31" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="186" y2="35" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="186" y2="31" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="63" y2="36" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="63" y2="0" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="66" y2="1" x2="66"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="44" y2="17" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="42" y2="16" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="39" y2="16" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="36" y2="18" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="34" y2="21" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="33" y2="23" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="33" y2="26" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="34" y2="28" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="36" y2="28" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="39" y2="27" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="42" y2="25" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="44" y2="19" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="45" y2="18" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="45" y2="18" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="46" y2="16" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="44" y2="15" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="36" y2="16" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="34" y2="18" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="32" y2="20" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="31" y2="23" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="31" y2="25" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="31" y2="27" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="33" y2="29" x2="35"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="35" y2="30" x2="37"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="37" y2="30" x2="40"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="40" y2="29" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="42" y2="28" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="44" y2="26" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="46" y2="26" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="45" y2="25" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="45" y2="25" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="44" y2="2" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="42" y2="1" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="39" y2="1" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="36" y2="3" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="34" y2="6" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="33" y2="8" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="33" y2="11" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="34" y2="13" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="36" y2="13" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="39" y2="12" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="42" y2="10" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="44" y2="4" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="45" y2="3" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="45" y2="3" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="46" y2="1" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="44" y2="0" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="36" y2="1" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="33" y2="3" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="32" y2="6" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="31" y2="8" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="31" y2="11" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="32" y2="13" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="33" y2="15" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="36" y2="15" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="42" y2="13" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="44" y2="11" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="46" y2="11" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="45" y2="10" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="45" y2="10" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="68" y2="0" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="68" y2="36" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="74" y2="36" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="74" y2="1" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="76" y2="34" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="110" y2="13" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="99" y2="28" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="99" y2="13" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="110" y2="2" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="110" y2="13" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="110" y2="17" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="110" y2="28" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="110" y2="28" x2="99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="94" y2="10" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="96" y2="8" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="97" y2="6" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="97" y2="4" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="96" y2="3" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="92" y2="10" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="94" y2="10" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="95" y2="8" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="96" y2="7" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" x1="96" y2="6" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="96" y2="4" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="95" y2="4" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="94" y2="4" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="94" y2="25" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="96" y2="23" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="97" y2="21" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="97" y2="19" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="96" y2="18" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="92" y2="25" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="94" y2="25" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="95" y2="23" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="96" y2="22" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" x1="96" y2="21" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="96" y2="19" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="95" y2="19" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="94" y2="19" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="77" y2="0" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="77" y2="1" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="1" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="77" y2="34" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="113" y2="1" x2="113"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="138" y2="5" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="137" y2="3" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="134" y2="4" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="131" y2="6" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="129" y2="9" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="129" y2="12" x2="131"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="131" y2="12" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="134" y2="11" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="137" y2="8" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="151" y2="20" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="150" y2="18" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="147" y2="19" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="144" y2="21" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="142" y2="24" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="142" y2="27" x2="144"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="144" y2="27" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="147" y2="26" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="150" y2="23" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="138" y2="20" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="137" y2="18" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="134" y2="19" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="131" y2="21" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="129" y2="24" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="129" y2="27" x2="131"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="131" y2="27" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="134" y2="26" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="137" y2="23" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="151" y2="5" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="150" y2="3" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="147" y2="4" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="144" y2="6" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="142" y2="9" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="142" y2="12" x2="144"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="144" y2="12" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="147" y2="11" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="150" y2="8" x2="151"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="111" y2="0" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="111" y2="36" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="114" y2="1" x2="114"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="92" y2="17" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="90" y2="16" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="87" y2="16" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="84" y2="18" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="82" y2="21" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="81" y2="23" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="81" y2="26" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="82" y2="28" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="84" y2="28" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="87" y2="27" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="90" y2="25" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="92" y2="19" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="93" y2="18" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="93" y2="18" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="94" y2="16" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="92" y2="15" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="84" y2="16" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="82" y2="18" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="80" y2="20" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="79" y2="23" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="79" y2="25" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="79" y2="27" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="81" y2="29" x2="83"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="83" y2="30" x2="85"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="85" y2="30" x2="88"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="88" y2="29" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="90" y2="28" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="92" y2="26" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="94" y2="26" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="93" y2="25" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="93" y2="25" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="92" y2="2" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="90" y2="1" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="87" y2="1" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="84" y2="3" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="82" y2="6" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="81" y2="8" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="81" y2="11" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="82" y2="13" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="84" y2="13" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="87" y2="12" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="90" y2="10" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="92" y2="4" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="93" y2="3" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="93" y2="3" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="94" y2="1" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="92" y2="0" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="84" y2="1" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="81" y2="3" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="80" y2="6" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="79" y2="8" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="79" y2="11" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="80" y2="13" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="81" y2="15" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="84" y2="15" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="90" y2="13" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="92" y2="11" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="94" y2="11" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="93" y2="10" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="93" y2="10" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="116" y2="0" x2="116"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="116" y2="36" x2="116"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="138" y2="20" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="137" y2="18" x2="135"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="135" y2="18" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="132" y2="20" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="129" y2="23" x2="128"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="128" y2="26" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="129" y2="27" x2="132"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="132" y2="27" x2="135"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="135" y2="26" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="137" y2="23" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="152" y2="5" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="151" y2="3" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="148" y2="3" x2="145"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="145" y2="5" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="142" y2="8" x2="141"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="141" y2="11" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="142" y2="12" x2="145"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="145" y2="12" x2="148"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="148" y2="11" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="151" y2="8" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="138" y2="5" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="137" y2="3" x2="135"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="135" y2="3" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="132" y2="5" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="129" y2="8" x2="128"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="128" y2="11" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="129" y2="12" x2="132"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="132" y2="12" x2="135"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="135" y2="11" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="137" y2="8" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="152" y2="20" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="151" y2="18" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="148" y2="18" x2="145"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="145" y2="20" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="142" y2="23" x2="141"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="141" y2="26" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="142" y2="27" x2="145"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="145" y2="27" x2="148"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="148" y2="26" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="151" y2="23" x2="152"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="122" y2="1" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="122" y2="36" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="124" y2="34" x2="124"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="140" y2="4" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="139" y2="2" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="136" y2="1" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="132" y2="3" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="129" y2="6" x2="127"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="127" y2="9" x2="127"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="127" y2="12" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="129" y2="14" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="132" y2="13" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="136" y2="11" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="139" y2="8" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="153" y2="4" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="152" y2="2" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="2" x1="149" y2="1" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="146" y2="3" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="142" y2="6" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="140" y2="9" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="140" y2="12" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="142" y2="14" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="146" y2="13" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" x1="149" y2="11" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="152" y2="8" x2="153"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="153" y2="19" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="152" y2="17" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="149" y2="16" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="146" y2="18" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="142" y2="21" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="140" y2="24" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="140" y2="27" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="142" y2="29" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="146" y2="28" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="149" y2="26" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="152" y2="23" x2="153"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="140" y2="19" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="139" y2="17" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" x1="136" y2="16" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="16" x1="132" y2="18" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="129" y2="21" x2="127"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="127" y2="24" x2="127"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="127" y2="27" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="129" y2="29" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="29" x1="132" y2="28" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="28" x1="136" y2="26" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="139" y2="23" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="125" y2="0" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="125" y2="1" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="1" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="125" y2="34" x2="111"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="138" y2="5" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="137" y2="3" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="134" y2="4" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="131" y2="6" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="129" y2="9" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="129" y2="11" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="131" y2="12" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="134" y2="10" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="137" y2="8" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="151" y2="20" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="150" y2="18" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="147" y2="19" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="144" y2="21" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="142" y2="24" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="142" y2="26" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="144" y2="27" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="147" y2="25" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="150" y2="23" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" x1="138" y2="20" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="20" x1="137" y2="18" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" x1="134" y2="19" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="131" y2="21" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="21" x1="129" y2="24" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="24" x1="129" y2="26" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="26" x1="131" y2="27" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="27" x1="134" y2="25" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="25" x1="137" y2="23" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="151" y2="5" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="5" x1="150" y2="3" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="147" y2="4" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" x1="144" y2="6" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="142" y2="9" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="142" y2="11" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="144" y2="12" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" x1="147" y2="10" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="150" y2="8" x2="151"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="156" y2="0" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="180" y2="0" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="176" y2="0" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="176" y2="34" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="186" y2="0" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="36" x1="186" y2="36" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="168" y2="1" x2="168"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="165" y2="34" x2="165"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="160" y2="1" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="173" y2="34" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="1" x1="177" y2="1" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="156" y2="1" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="177" y2="34" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="34" x1="177" y2="1" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="33" x1="165" y2="33" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="3" x1="174" y2="3" x2="168"/>
<text x="-92" y="1" size="6" rotation="90" text="750-432"/>
<input x="209.5" y="0" size="9" rotation="90" rotate="true" text="_" tagg="label"/>
<terminal x="0" y="0" orientation="e"/>
</description>
</definition>

View File

@ -1,914 +0,0 @@
<definition width="340" version="0.4" hotspot_x="113" hotspot_y="10" height="190" type="element" ic="true" orientation="dyyy">
<names>
<name lang="de">750-881</name>
<name lang="be">750-881</name>
<name lang="en">750-881</name>
<name lang="fr">750-881</name>
<name lang="it">750-881</name>
<name lang="nl">750-881</name>
</names>
<informations>
Author: RDS for QelectroTech
</informations>
<description>
<rect width="64" x="102" y="18" antialias="false" height="26" style="line-style:normal;line-weight:normal;filling:red;color:blue"/>
<text x="106" y="13" size="4" rotation="90" text="1"/>
<text x="94" y="19" size="4" rotation="90" text="0: WBM"/>
<text x="132" y="8" size="4" rotation="90" text="ON"/>
<text x="-2" y="1" size="4" rotation="90" text="X1"/>
<text x="-61" y="1" size="4" rotation="90" text="X2"/>
<text x="87" y="19" size="4" rotation="90" text="255: DHCP"/>
<text x="151.5" y="43" size="4" color="white" text="7"/>
<text x="144" y="43" size="4" color="white" text="6"/>
<text x="136.5" y="43" size="4" color="white" text="5"/>
<text x="129" y="43" size="4" color="white" text="4"/>
<text x="121.5" y="43" size="4" color="white" text="3"/>
<text x="159" y="43" size="4" color="white" text="8"/>
<rect width="5" x="135.5" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="128" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="143" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="158" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text x="68.95" y="143.273" size="4" rotation="90" text="+"/>
<rect width="5" x="150.5" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="120.5" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text x="145" y="147" size="4" rotation="90" text="A"/>
<rect width="5" x="158" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="143" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="135.5" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="150.5" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="128" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<rect width="5" x="120.5" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="84.95" y="146.312" size="4" rotation="90" text="1"/>
<text x="130.95" y="162" size="4" rotation="90" text="D"/>
<text x="116.95" y="142.992" size="4" rotation="90" text="24V"/>
<text x="36" y="146" size="4" rotation="90" text="2"/>
<text x="121.1" y="111" size="4" rotation="90" text="NS"/>
<text x="13.95" y="143.539" size="4" rotation="90" text="-"/>
<text x="-73" y="146" size="4" rotation="90" text="4"/>
<text x="-18.05" y="146.312" size="4" rotation="90" text="3"/>
<text x="-40.05" y="142.719" size="4" rotation="90" text="PE"/>
<text x="158" y="13" size="4" rotation="90" text="8"/>
<text x="76" y="111" size="4" rotation="90" text="USR"/>
<text x="91" y="111" size="4" rotation="90" text="I/O"/>
<text x="106" y="111" size="4" rotation="90" text="NS"/>
<text x="151" y="62" size="5" rotation="90" text="ETHERNET"/>
<text x="13.95" y="159.539" size="4" rotation="90" text="-"/>
<text x="-18.05" y="161.312" size="4" rotation="90" text="7"/>
<text x="106" y="43" size="4" color="white" text="1"/>
<text x="131" y="147" size="4" rotation="90" text="B"/>
<text x="-73" y="161" size="4" rotation="90" text="8"/>
<text x="-40.05" y="158.719" size="4" rotation="90" text="PE"/>
<text x="36" y="161" size="4" rotation="90" text="6"/>
<text x="68.95" y="159.273" size="4" rotation="90" text="+"/>
<text x="116.95" y="158.992" size="4" rotation="90" text="0V"/>
<text x="84.95" y="161.312" size="4" rotation="90" text="5"/>
<text x="149" y="111" size="4" rotation="90" text="ACT"/>
<text x="145" y="162" size="4" rotation="90" text="C"/>
<text x="152" y="125" size="4" rotation="90" text="1"/>
<text x="137" y="125" size="4" rotation="90" text="2"/>
<text x="134" y="111" size="4" rotation="90" text="ACT"/>
<text x="139" y="111" size="4" rotation="90" text="LNK"/>
<text x="154" y="111" size="4" rotation="90" text="LNK"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="187" y2="153" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="189" y2="151" x2="189"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="-108" y2="153" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-106" y2="151" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="24" y2="0" x2="24"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="25" y2="0" x2="25"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="63" y2="0" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="57" y2="0" x2="57"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="31" y2="0" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-44" y2="142" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-46" y2="142" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-45" y2="141" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-45" y2="177" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="10" y2="142" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-33" y2="142" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-34" y2="141" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-34" y2="177" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="9" y2="142" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="6" y2="171" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="9" y2="141" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="9" y2="177" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-7" y2="171" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-20" y2="171" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="65" y2="142" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="21" y2="142" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="20" y2="141" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="20" y2="177" x2="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="64" y2="142" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="64" y2="141" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="64" y2="177" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="113" y2="142" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="76" y2="142" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="112" y2="142" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="76" y2="141" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="76" y2="177" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="112" y2="141" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="112" y2="177" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="124" y2="142" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="124" y2="141" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="124" y2="177" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="160" y2="141" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="160" y2="175" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="162" y2="175" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="162" y2="141" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="173" y2="144" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="161" y2="142" x2="161"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="169" y2="142" x2="169"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="164" y2="175" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="157" y2="142" x2="157"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="161" y2="175" x2="161"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="159" y2="142" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="172" y2="142" x2="172"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="174" y2="144" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="176" y2="142" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="178" y2="60" x2="178"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="163" y2="60" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="65" y2="141" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="62" y2="141" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="50" y2="0" x2="50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="48" y2="0" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="48" y2="0" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="45" y2="0" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="26" y2="0" x2="26"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="28" y2="0" x2="28"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="28" y2="0" x2="28"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="60" y2="-7" x2="60"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="54" y2="0" x2="54"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="60" y2="0" x2="60"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-45" y2="175" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-45" y2="142" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-68" y2="140" x2="-71"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="-71" y2="141" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-31" y2="142" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-31" y2="142" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-31" y2="142" x2="-31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-31" y2="175" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-31" y2="142" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="9" y2="175" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-35" y2="141" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-35" y2="177" x2="-35"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-32" y2="142" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="9" y2="142" x2="9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-12" y2="140" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="-15" y2="141" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="23" y2="142" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-9" y2="171" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-9" y2="171" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="-10" y2="176" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-6" y2="171" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="23" y2="142" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="23" y2="142" x2="23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="23" y2="175" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="23" y2="142" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="64" y2="175" x2="64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="19" y2="141" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="19" y2="177" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="22" y2="142" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="65" y2="142" x2="65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="42" y2="140" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="39" y2="141" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="78" y2="142" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="78" y2="142" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="78" y2="142" x2="78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="78" y2="175" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="78" y2="142" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="112" y2="175" x2="112"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="74" y2="141" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="74" y2="177" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="77" y2="142" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="113" y2="142" x2="113"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="90" y2="140" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="87" y2="141" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="126" y2="142" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="126" y2="142" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="126" y2="142" x2="126"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="126" y2="175" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="126" y2="142" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="122" y2="141" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="122" y2="177" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="125" y2="142" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="162" y2="142" x2="162"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="160" y2="142" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="159" y2="142" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="175" y2="142" x2="175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="174" y2="144" x2="174"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="159" y2="174" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="157" y2="142" x2="157"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="176" y2="142" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="160" y2="142" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="173" y2="144" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="164" y2="60" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="177" y2="60" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="178" y2="60" x2="178"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="178" y2="60" x2="178"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="178" y2="60" x2="178"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="164" y2="60" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="164" y2="60" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="163" y2="141" x2="163"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="177" y2="60" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="164" y2="60" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="24" y2="0" x2="24"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="28" y2="-7" x2="28"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="68" y2="-7" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="68" y2="-7" x2="24"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" x1="59" y2="0" x2="59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="181" y2="0" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="71" y2="0" x2="71"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-12" y2="19" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="16" y2="19" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="9" y2="15" x2="9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="22" y2="10" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-12" y2="19" x2="-19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="5" y2="11" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="5" y2="11" x2="5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="9" y2="15" x2="5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-25" y2="60" x2="-25"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="22" y2="10" x2="-25"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-8" y2="15" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-8" y2="15" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="16" y2="19" x2="16"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-19" y2="40" x2="16"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-19" y2="40" x2="-19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-65" y2="15" x2="-69"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-76" y2="40" x2="-40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-76" y2="40" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-69" y2="19" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-69" y2="19" x2="-69"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-65" y2="15" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="11" x1="-51" y2="11" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-51" y2="11" x2="-51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="-47" y2="15" x2="-51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-47" y2="15" x2="-47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="19" x1="-40" y2="19" x2="-47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" x1="-40" y2="19" x2="-40"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-82" y2="60" x2="-82"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="-34" y2="10" x2="-34"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x1="-34" y2="10" x2="-82"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-99" y2="0" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="-27" y2="60" x2="-27"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="24" y2="9" x2="-27"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="24" y2="9" x2="24"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="38" y2="0" x2="38"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="181" y2="0" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="-84" y2="60" x2="-84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="9" x1="-32" y2="9" x2="-84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="-32" y2="9" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="185" y2="136" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="136" x1="185" y2="136" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="136" x1="-103" y2="141" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="136" x1="-99" y2="136" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="-108" y2="154" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-108" y2="155" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="-107" y2="156" x2="-106"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-106" y2="155" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="-105" y2="154" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-104" y2="153" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="-97" y2="145" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-97" y2="144" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="-108" y2="153" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="-103" y2="136" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="132" x1="-105" y2="133" x2="-107"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="133" x1="-107" y2="135" x2="-108"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="-103" y2="135" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="-99" y2="134" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="-104" y2="141" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" x1="-104" y2="136" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="-104" y2="146" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-102" y2="145" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-103" y2="146" x2="-104"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-102" y2="144" x2="-98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="-100" y2="135" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="134" x1="-99" y2="133" x2="-100"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="133" x1="-100" y2="132" x2="-101"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="132" x1="-101" y2="132" x2="-105"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-99" y2="172" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="172" x1="-99" y2="172" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="172" x1="-103" y2="176" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-103" y2="177" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-97" y2="162" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-65" y2="166" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-64" y2="166" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-62" y2="164" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-61" y2="163" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="163" x1="-61" y2="162" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-61" y2="160" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-62" y2="160" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-64" y2="160" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-65" y2="151" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-64" y2="151" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-62" y2="149" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-61" y2="148" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="148" x1="-61" y2="147" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-61" y2="145" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-62" y2="145" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-64" y2="145" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-45" y2="142" x2="-45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="-97" y2="141" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-48" y2="158" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-48" y2="169" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-48" y2="169" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-59" y2="169" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-48" y2="143" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-48" y2="154" x2="-48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-48" y2="154" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-59" y2="154" x2="-59"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-63" y2="166" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-62" y2="164" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-61" y2="162" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-61" y2="160" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-62" y2="159" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="-96" y2="141" x2="-96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-63" y2="151" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-62" y2="149" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-61" y2="147" x2="-61"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-61" y2="145" x2="-62"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-62" y2="144" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-46" y2="141" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-46" y2="177" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-44" y2="142" x2="-44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-65" y2="143" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-67" y2="142" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-70" y2="142" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-73" y2="144" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-75" y2="147" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-77" y2="149" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-77" y2="152" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-75" y2="154" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-73" y2="154" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-70" y2="153" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="-67" y2="151" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-65" y2="144" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-64" y2="144" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-63" y2="142" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-65" y2="141" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-74" y2="142" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-76" y2="144" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-78" y2="147" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-79" y2="149" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-79" y2="152" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-78" y2="154" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-76" y2="156" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-68" y2="154" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-65" y2="152" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-63" y2="152" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-64" y2="151" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-65" y2="158" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-67" y2="157" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-70" y2="157" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-73" y2="159" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-75" y2="162" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-77" y2="164" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-77" y2="167" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-75" y2="169" x2="-73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-73" y2="169" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-70" y2="168" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="-67" y2="166" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-65" y2="159" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-64" y2="159" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-63" y2="157" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-65" y2="156" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-74" y2="156" x2="-68"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-74" y2="157" x2="-76"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-76" y2="159" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-78" y2="161" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="-79" y2="164" x2="-79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-79" y2="166" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-78" y2="168" x2="-77"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="-77" y2="170" x2="-75"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="-75" y2="171" x2="-72"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="-72" y2="171" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="-70" y2="170" x2="-67"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="-67" y2="169" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-65" y2="167" x2="-63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-63" y2="167" x2="-64"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-64" y2="166" x2="-65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-41" y2="141" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-41" y2="177" x2="-41"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-36" y2="142" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-36" y2="177" x2="-36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-33" y2="175" x2="-33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="6" y2="171" x2="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-10" y2="166" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-8" y2="166" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-7" y2="164" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-6" y2="163" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="163" x1="-6" y2="162" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-6" y2="160" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-7" y2="160" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-8" y2="160" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-10" y2="151" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-8" y2="151" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-7" y2="149" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-6" y2="148" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="148" x1="-6" y2="147" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-6" y2="145" x2="-7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-7" y2="145" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-8" y2="145" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="10" y2="142" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="-21" y2="177" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="-32" y2="141" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-32" y2="142" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-32" y2="142" x2="-32"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="-32" y2="175" x2="-46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="7" y2="177" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="7" y2="158" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="7" y2="169" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="7" y2="169" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-4" y2="169" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="7" y2="143" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="7" y2="154" x2="7"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="7" y2="154" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-4" y2="154" x2="-4"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-8" y2="166" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="-6" y2="164" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-5" y2="162" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-5" y2="160" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-6" y2="159" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="7" y2="171" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-8" y2="151" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="-6" y2="149" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-5" y2="147" x2="-5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-5" y2="145" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-6" y2="144" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="8" y2="141" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="8" y2="177" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="11" y2="142" x2="11"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-10" y2="143" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="-12" y2="142" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-15" y2="142" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-18" y2="144" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-20" y2="147" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-22" y2="149" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-22" y2="152" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-20" y2="154" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-18" y2="154" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-15" y2="153" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="-12" y2="151" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="-10" y2="144" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-9" y2="144" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-8" y2="142" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-10" y2="141" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-18" y2="142" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="-21" y2="144" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="-22" y2="147" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="-23" y2="149" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="-23" y2="152" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-22" y2="154" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-21" y2="156" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-12" y2="154" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="-10" y2="152" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-8" y2="152" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="-9" y2="151" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-10" y2="158" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="-12" y2="157" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-15" y2="157" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-18" y2="159" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-20" y2="162" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-22" y2="164" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="-22" y2="167" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-20" y2="169" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-18" y2="169" x2="-15"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-15" y2="168" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="-12" y2="166" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="-10" y2="159" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-9" y2="159" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-8" y2="157" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-10" y2="156" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-18" y2="156" x2="-12"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="-18" y2="157" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="-21" y2="159" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="-23" y2="162" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="-23" y2="165" x2="-23"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="165" x1="-23" y2="168" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="-22" y2="170" x2="-20"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="-20" y2="171" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="-13" y2="169" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="-10" y2="167" x2="-8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-8" y2="167" x2="-9"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="-9" y2="166" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="13" y2="141" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="13" y2="177" x2="13"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-6" y2="171" x2="-6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="6" y2="171" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="-21" y2="171" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="6" y2="176" x2="-21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="19" y2="142" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="19" y2="177" x2="19"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="21" y2="175" x2="21"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="65" y2="142" x2="65"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="44" y2="151" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="46" y2="151" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="47" y2="149" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="48" y2="148" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="148" x1="48" y2="147" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="48" y2="145" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="47" y2="145" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="46" y2="145" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="44" y2="166" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="46" y2="166" x2="47"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="47" y2="164" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="48" y2="163" x2="48"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="163" x1="48" y2="162" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="48" y2="160" x2="47"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="47" y2="160" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="46" y2="160" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="22" y2="142" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="22" y2="142" x2="22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="22" y2="175" x2="8"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="62" y2="158" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="62" y2="169" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="62" y2="169" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="51" y2="169" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="62" y2="143" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="62" y2="154" x2="62"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="62" y2="154" x2="51"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="51" y2="154" x2="51"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="46" y2="166" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="48" y2="164" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="49" y2="162" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="49" y2="160" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="48" y2="159" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="22" y2="141" x2="22"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="46" y2="151" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="48" y2="149" x2="49"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="49" y2="147" x2="49"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="49" y2="145" x2="48"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="48" y2="144" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="132" x1="183" y2="133" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="133" x1="182" y2="134" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="191" y2="135" x2="191"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="191" y2="133" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="133" x1="190" y2="132" x2="188"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="181" y2="145" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="180" y2="146" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="182" y2="135" x2="183"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="186" y2="140" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="181" y2="144" x2="185"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="187" y2="145" x2="186"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="186" y2="144" x2="185"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="187" y2="153" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="187" y2="155" x2="187"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="187" y2="156" x2="189"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="189" y2="155" x2="190"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="190" y2="153" x2="191"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="132" x1="188" y2="132" x2="183"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="134" x1="182" y2="135" x2="182"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="135" x1="183" y2="135" x2="186"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="136" x1="187" y2="135" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="136" x1="187" y2="140" x2="187"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="186" y2="141" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="176" x1="186" y2="172" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="172" x1="186" y2="172" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="186" y2="176" x2="186"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="172" x1="181" y2="162" x2="181"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="181" y2="162" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="63" y2="141" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="63" y2="177" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="66" y2="142" x2="66"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="44" y2="143" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="42" y2="142" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="39" y2="142" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="36" y2="144" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="34" y2="147" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="33" y2="149" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="33" y2="152" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="34" y2="154" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="36" y2="154" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="39" y2="153" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="42" y2="151" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="44" y2="144" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="45" y2="144" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="46" y2="142" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="44" y2="141" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="36" y2="142" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="33" y2="144" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="32" y2="147" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="31" y2="149" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="31" y2="152" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="32" y2="154" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="33" y2="156" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="42" y2="154" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="44" y2="152" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="46" y2="152" x2="45"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="45" y2="151" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="44" y2="158" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="42" y2="157" x2="39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="39" y2="157" x2="36"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="36" y2="159" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="34" y2="162" x2="33"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="33" y2="164" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="33" y2="167" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="34" y2="169" x2="36"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="36" y2="169" x2="39"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="39" y2="168" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="42" y2="166" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="44" y2="159" x2="45"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="45" y2="159" x2="46"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="46" y2="157" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="44" y2="156" x2="42"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="36" y2="156" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="36" y2="157" x2="34"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="34" y2="159" x2="32"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="32" y2="161" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="31" y2="164" x2="31"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="31" y2="166" x2="31"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="31" y2="168" x2="33"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="33" y2="170" x2="35"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="35" y2="171" x2="37"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="37" y2="171" x2="40"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="40" y2="170" x2="42"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="42" y2="169" x2="44"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="44" y2="167" x2="46"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="46" y2="167" x2="45"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="45" y2="166" x2="44"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="68" y2="141" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="68" y2="177" x2="68"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="74" y2="142" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="74" y2="177" x2="74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="76" y2="175" x2="76"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="92" y2="151" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="94" y2="151" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="95" y2="149" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="96" y2="148" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="148" x1="96" y2="147" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="96" y2="145" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="95" y2="145" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="94" y2="145" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="92" y2="166" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="94" y2="166" x2="95"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="95" y2="164" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="96" y2="163" x2="96"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="163" x1="96" y2="162" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="96" y2="160" x2="95"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="95" y2="160" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="94" y2="160" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="110" y2="158" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="110" y2="169" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="110" y2="169" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="99" y2="169" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="110" y2="143" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="110" y2="154" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="110" y2="154" x2="99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="99" y2="154" x2="99"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="94" y2="166" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="96" y2="164" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="97" y2="162" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="97" y2="160" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="96" y2="159" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="94" y2="151" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="96" y2="149" x2="97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="97" y2="147" x2="97"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="97" y2="145" x2="96"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="96" y2="144" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="113" y2="142" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="77" y2="141" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="77" y2="142" x2="63"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="77" y2="142" x2="77"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="77" y2="175" x2="63"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="151" y2="146" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="150" y2="144" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="147" y2="145" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="144" y2="147" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="142" y2="150" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="142" y2="153" x2="144"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="144" y2="153" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="147" y2="152" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="150" y2="149" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="138" y2="146" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="137" y2="144" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="134" y2="145" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="131" y2="147" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="129" y2="150" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="129" y2="153" x2="131"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="131" y2="153" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="134" y2="152" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="137" y2="149" x2="138"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="111" y2="141" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="111" y2="177" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="114" y2="142" x2="114"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="92" y2="143" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="90" y2="142" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="87" y2="142" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="84" y2="144" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="82" y2="147" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="81" y2="149" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="81" y2="152" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="82" y2="154" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="84" y2="154" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="87" y2="153" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="90" y2="151" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="92" y2="144" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="93" y2="144" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="94" y2="142" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="92" y2="141" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="84" y2="142" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="81" y2="144" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="80" y2="147" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="79" y2="149" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="79" y2="152" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="80" y2="154" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="81" y2="156" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="90" y2="154" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="92" y2="152" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="94" y2="152" x2="93"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="93" y2="151" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="92" y2="158" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="90" y2="157" x2="87"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="87" y2="157" x2="84"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="84" y2="159" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="82" y2="162" x2="81"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="81" y2="164" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="81" y2="167" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="82" y2="169" x2="84"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="84" y2="169" x2="87"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="87" y2="168" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="90" y2="166" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="92" y2="159" x2="93"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="93" y2="159" x2="94"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="94" y2="157" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="92" y2="156" x2="90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="84" y2="156" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="156" x1="84" y2="157" x2="82"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="82" y2="159" x2="80"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="80" y2="161" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="79" y2="164" x2="79"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="79" y2="166" x2="79"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="166" x1="79" y2="168" x2="81"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="81" y2="170" x2="83"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="83" y2="171" x2="85"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="85" y2="171" x2="88"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="171" x1="88" y2="170" x2="90"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="90" y2="169" x2="92"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="92" y2="167" x2="94"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="94" y2="167" x2="93"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="93" y2="166" x2="92"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="116" y2="141" x2="116"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="116" y2="177" x2="116"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="152" y2="146" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="151" y2="144" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="148" y2="144" x2="145"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="145" y2="146" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="142" y2="149" x2="141"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="141" y2="152" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="142" y2="153" x2="145"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="145" y2="153" x2="148"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="148" y2="152" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="151" y2="149" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="138" y2="146" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="137" y2="144" x2="135"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="135" y2="144" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="132" y2="146" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="129" y2="149" x2="128"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="128" y2="152" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="129" y2="153" x2="132"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="132" y2="153" x2="135"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="135" y2="152" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="137" y2="149" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="152" y2="161" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="151" y2="159" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="148" y2="159" x2="145"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="145" y2="161" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="142" y2="164" x2="141"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="141" y2="167" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="142" y2="168" x2="145"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="145" y2="168" x2="148"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="148" y2="167" x2="151"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="151" y2="164" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="138" y2="161" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="137" y2="159" x2="135"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="135" y2="159" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="132" y2="161" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="161" x1="129" y2="164" x2="128"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="128" y2="167" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="129" y2="168" x2="132"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="132" y2="168" x2="135"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="135" y2="167" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="137" y2="164" x2="138"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="122" y2="142" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="122" y2="177" x2="122"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="124" y2="175" x2="124"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="125" y2="142" x2="111"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="125" y2="142" x2="125"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="125" y2="175" x2="111"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="153" y2="160" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="152" y2="158" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="149" y2="157" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="146" y2="159" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="142" y2="162" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="140" y2="165" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="165" x1="140" y2="168" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="142" y2="170" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="146" y2="169" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="149" y2="167" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="152" y2="164" x2="153"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="140" y2="145" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="139" y2="143" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="136" y2="142" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="132" y2="144" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="129" y2="147" x2="127"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="127" y2="150" x2="127"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="127" y2="153" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="129" y2="155" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="132" y2="154" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="136" y2="152" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="139" y2="149" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="153" y2="145" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="152" y2="143" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="143" x1="149" y2="142" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="146" y2="144" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="142" y2="147" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="140" y2="150" x2="140"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="140" y2="153" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="142" y2="155" x2="146"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="155" x1="146" y2="154" x2="149"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="154" x1="149" y2="152" x2="152"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="152" y2="149" x2="153"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="125" y2="141" x2="125"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="164" x1="140" y2="160" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" x1="139" y2="158" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="158" x1="136" y2="157" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="157" x1="132" y2="159" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="159" x1="129" y2="162" x2="127"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="162" x1="127" y2="165" x2="127"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="165" x1="127" y2="168" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="168" x1="129" y2="170" x2="132"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" x1="132" y2="169" x2="136"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="169" x1="136" y2="167" x2="139"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="167" x1="139" y2="164" x2="140"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="156" y2="141" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="180" y2="141" x2="180"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="186" y2="177" x2="-103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="176" y2="141" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="177" x1="176" y2="175" x2="176"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="168" y2="142" x2="168"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="165" y2="175" x2="165"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="160" y2="142" x2="160"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="173" y2="175" x2="173"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="142" x1="177" y2="142" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="156" y2="142" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="177" y2="175" x2="156"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="175" x1="177" y2="142" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="174" x1="165" y2="174" x2="159"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="174" y2="144" x2="168"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="177" y2="141" x2="177"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="-97" y2="60" x2="-97"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="92" x1="-39" y2="92" x2="-88"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="92" x1="-39" y2="139" x2="-39"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="139" x1="-39" y2="139" x2="-88"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="139" x1="-88" y2="92" x2="-88"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="141" x1="164" y2="60" x2="164"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" x1="181" y2="60" x2="-99"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="83" y2="100" x2="83"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="88" y2="110" x2="98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="98" y2="100" x2="98"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="88" y2="110" x2="88"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="83" y2="100" x2="73"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="103" y2="110" x2="103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="103" y2="110" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="113" y2="100" x2="113"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="113" y2="100" x2="103"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="118" y2="110" x2="118"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="118" y2="110" x2="128"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="128" y2="100" x2="128"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="128" y2="100" x2="118"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="148" y2="110" x2="158"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="148" y2="110" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="158" y2="100" x2="148"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="158" y2="100" x2="158"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="133" y2="110" x2="143"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="133" y2="110" x2="133"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="143" y2="100" x2="133"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="143" y2="100" x2="143"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" x1="98" y2="100" x2="88"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" x1="73" y2="110" x2="83"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="109.714" x1="73" y2="100.418" x2="73"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="138" y2="146" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="137" y2="144" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="134" y2="145" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="131" y2="147" x2="129"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="129" y2="150" x2="129"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="129" y2="152" x2="131"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="131" y2="153" x2="134"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="134" y2="151" x2="137"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="137" y2="149" x2="138"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="149" x1="151" y2="146" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="146" x1="150" y2="144" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="144" x1="147" y2="145" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="145" x1="144" y2="147" x2="142"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="147" x1="142" y2="150" x2="142"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" x1="142" y2="152" x2="144"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="152" x1="144" y2="153" x2="147"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="153" x1="147" y2="151" x2="150"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="151" x1="150" y2="149" x2="151"/>
<text x="-92" y="142" size="6" rotation="90" text="750-881"/>
<input x="209.5" y="140" size="9" rotation="90" rotate="true" text="_" tagg="label"/>
<rect width="5" x="105" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="105" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<text x="113.5" y="43" size="4" color="white" text="2"/>
<rect width="5" x="112.5" y="23" antialias="false" height="15" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<rect width="5" x="112.5" y="31" antialias="false" height="7" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
<terminal x="0" y="0" orientation="e"/>
</description>
</definition>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,11 +0,0 @@
<qet-directory>
<names>
<name lang="de">Zennio</name>
<name lang="nl">Zennio</name>
<name lang="be">Zennio</name>
<name lang="fr">Zennio</name>
<name lang="it">Zennio</name>
<name lang="en">Zennio</name>
<name lang="el">Zennio</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Schaltzeichen</name>
<name lang="be">schema</name>
<name lang="el">Σχέδιο</name>
<name lang="en">schema</name>
<name lang="it">schema</name>
<name lang="fr">schema</name>
<name lang="nl">schema</name>
<name lang="ru">схема</name>
</names>
</qet-directory>

View File

@ -1,12 +0,0 @@
<qet-directory>
<names>
<name lang="de">Aufbauplanzeichnung</name>
<name lang="be">verdeelbord</name>
<name lang="nl">verdeelbord</name>
<name lang="fr">tableau de distribution</name>
<name lang="it">Tabella di distribuzione</name>
<name lang="en">distribution board</name>
<name lang="el">Πίνακας διανομής</name>
<name lang="ru">распределительный щит</name>
</names>
</qet-directory>

View File

@ -1,25 +0,0 @@
<definition width="40" version="0.3" hotspot_x="10" hotspot_y="34" height="110" type="element" orientation="dyyy">
<names>
<name lang="ar">عدّاد طاقة</name>
<name lang="el">Μετρητής ενέργειας, Κιλοβατώρες (KWh)</name>
<name lang="en">Energy meter with pulse output</name>
<name lang="it">Misuratore di Kwh</name>
<name lang="fr">Compteur dénergie à Impulsion</name>
<name lang="pl">Licznik energii</name>
<name lang="cs">Počítadlo energie</name>
<name lang="be">Energie meter met pulse contact</name>
</names>
<informations></informations>
<description>
<rect width="32" x="-6" y="-30" antialias="false" height="101" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="32" x="-6" y="-14" antialias="false" height="68" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="15" y="33" size="10" rotation="270" text="kWh"/>
<rect width="16" x="2" y="-5" antialias="false" height="48" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<terminal x="0" y="53" orientation="s"/>
<terminal x="20" y="53" orientation="s"/>
<terminal x="0" y="70" orientation="s"/>
<terminal x="20" y="70" orientation="s"/>
<terminal x="0" y="-29" orientation="n"/>
<terminal x="20" y="-29" orientation="n"/>
</description>
</definition>

View File

@ -1,72 +0,0 @@
<definition width="210" version="0.4" hotspot_x="105" hotspot_y="52" height="110" type="element" ic="true" orientation="dyyy">
<names>
<name lang="el">ECOdevices</name>
<name lang="en">ECOdevices</name>
<name lang="it">ECOdevices</name>
<name lang="fr">ECOdevices</name>
<name lang="pl">ECOdevices</name>
<name lang="es">ECOdevices</name>
<name lang="cs">ECOdevices</name>
<name lang="be">ECOdevices</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-91" y="7" size="9" text="Eco Devices"/>
<rect width="20" x="-54" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-74" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="6" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="200" x="-100" y="-47" antialias="false" height="100" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="58" y="-12" size="6" text="12/24Vcc"/>
<rect width="20" x="-94" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-14" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-54" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-74" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-94" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-14" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-68" y="-29" size="6" text="T2"/>
<text x="-90" y="-29" size="6" text="T1"/>
<text x="-49" y="-29" size="6" text="T3"/>
<rect width="20" x="6" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-34" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="26" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="30" y="-29" size="6" text="C2"/>
<text x="-30" y="-29" size="6" text="T4"/>
<rect width="20" x="26" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-34" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-13" y="-29" size="6" text="GND"/>
<rect width="20" x="72" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="11" y="-29" size="6" text="C1"/>
<rect width="20" x="-42" y="33" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="52" y="-47" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="52" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="72" y="-37" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="60" y="-28" size="10" text="-"/>
<text x="79" y="-27" size="10" text="+"/>
<text x="-93" y="-8" size="9" text="GCE Electronics"/>
<input x="-92" y="20.5" size="9" rotate="true" text="IP: ---:---:---:---"/>
<rect width="20" x="-92" y="33" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-90" y2="45" x2="-90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-74.698" y2="35" x2="-89.433"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="35" x1="-74" y2="45" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="45" x1="-87" y2="45" x2="-89"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="45" x1="-77" y2="45" x2="-74"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="48" x1="-86" y2="45" x2="-86"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="48" x1="-78" y2="45" x2="-78"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="48" x1="-78" y2="48" x2="-86"/>
<text x="-18" y="47" size="5" text="Reset"/>
<circle x="-35" y="40" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="7"/>
<rect width="40" x="52" y="-27" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="66" y="-19" size="6" text="Alim"/>
<terminal x="62" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="82" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-82" y="53" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-84" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-64" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-44" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-24" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-4" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="16" y="-47" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="36" y="-47" nameHidden="0" number="" name="" orientation="n"/>
</description>
</definition>

View File

@ -1,91 +0,0 @@
<definition width="170" version="0.3" hotspot_x="83" hotspot_y="50" height="100" type="element" orientation="dyyy">
<names>
<name lang="fr">IPX800</name>
<name lang="ar">IPX800</name>
<name lang="de">IPX800</name>
<name lang="ru">IPX800</name>
<name lang="pt">IPX800</name>
<name lang="el">IPX800</name>
<name lang="en">IPX800</name>
<name lang="it">IPX800</name>
<name lang="pl">IPX800</name>
<name lang="es">IPX800</name>
<name lang="cs">IPX800</name>
<name lang="be">IPX800</name>
</names>
<informations></informations>
<description>
<input x="23" y="26" size="4" rotate="true" text="LAN"/>
<input x="40" y="26" size="4" rotate="true" text="EXT"/>
<rect width="160" x="-80" y="-45" antialias="false" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="160" x="-80" y="-30" antialias="false" height="60" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="-33" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="29" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="-19" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="-32" y="-24" size="4" rotate="true" text="Ch 4 Ch 5 Ch 6"/>
<input x="56" y="-24" size="4" rotate="true" text="Alim 12V"/>
<input x="-31" y="26.5" size="3" rotate="true" text="1 2 3 4 5 6 7 8 Gnd"/>
<input x="15" y="-24" size="4" rotate="true" text="Ch 7 Ch 8"/>
<input x="-31" y="19" size="4" rotate="true" text="Digital Input"/>
<input x="-66" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="15" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="-5" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="-52" y="-32" size="2" rotate="true" text="NC C NO"/>
<input x="-80" y="-32.117" size="2" rotate="true" text="NC C NO"/>
<input x="63" y="-33" size="4" rotate="true" text="+ -"/>
<input x="-79" y="-24" size="4" rotate="true" text="Ch 1 Ch 2 Ch 3"/>
<input x="-79" y="-4.5" size="9" rotate="true" text="IPX-800 V3"/>
<input x="-77" y="3" size="4" rotate="true" text="Ethernet Control System"/>
<input x="-79" y="-18" size="4" rotate="true" text="Digital Output 10A"/>
<input x="-75" y="19" size="4" rotate="true" text="Analog Input"/>
<input x="-80" y="26.5" size="3" rotate="true" text="Gnd 1 2 3 4 +3,3V"/>
<input x="56" y="26" size="4" rotate="true" text="Alim 12V"/>
<input x="35" y="3" size="4" rotate="true" text="GCE Electronics"/>
<rect width="2" x="-79" y="-28" antialias="false" height="56" style="line-style:normal;line-weight:none;filling:green;color:black"/>
<rect width="37" x="39" y="7" antialias="false" height="3" style="line-style:normal;line-weight:none;filling:green;color:black"/>
<terminal x="-74" y="-39" orientation="n"/>
<terminal x="-70" y="-39" orientation="n"/>
<terminal x="-66" y="-39" orientation="n"/>
<terminal x="-60" y="-38.883" orientation="n"/>
<terminal x="-56" y="-38.883" orientation="n"/>
<terminal x="-52" y="-38.883" orientation="n"/>
<terminal x="-46" y="-38.883" orientation="n"/>
<terminal x="-42" y="-38.883" orientation="n"/>
<terminal x="-38" y="-38.883" orientation="n"/>
<terminal x="-27" y="-39" orientation="n"/>
<terminal x="-23" y="-39" orientation="n"/>
<terminal x="-19" y="-39" orientation="n"/>
<terminal x="-13" y="-38.883" orientation="n"/>
<terminal x="-9" y="-38.883" orientation="n"/>
<terminal x="-5" y="-38.883" orientation="n"/>
<terminal x="1" y="-38.883" orientation="n"/>
<terminal x="5" y="-38.883" orientation="n"/>
<terminal x="9" y="-38.883" orientation="n"/>
<terminal x="21" y="-39" orientation="n"/>
<terminal x="25" y="-39" orientation="n"/>
<terminal x="29" y="-39" orientation="n"/>
<terminal x="35" y="-38.883" orientation="n"/>
<terminal x="39" y="-38.883" orientation="n"/>
<terminal x="43" y="-38.883" orientation="n"/>
<terminal x="68" y="-40" orientation="n"/>
<terminal x="72" y="-40" orientation="n"/>
<terminal x="-26" y="39" orientation="s"/>
<terminal x="-22" y="39" orientation="s"/>
<terminal x="-18" y="39" orientation="s"/>
<terminal x="-14" y="39" orientation="s"/>
<terminal x="-10" y="39" orientation="s"/>
<terminal x="-6" y="39" orientation="s"/>
<terminal x="-2" y="39" orientation="s"/>
<terminal x="2" y="39" orientation="s"/>
<terminal x="6" y="39" orientation="s"/>
<terminal x="-70" y="39" orientation="s"/>
<terminal x="-66" y="39" orientation="s"/>
<terminal x="-62" y="39" orientation="s"/>
<terminal x="-58" y="39" orientation="s"/>
<terminal x="-54" y="39" orientation="s"/>
<terminal x="-50" y="39" orientation="s"/>
<terminal x="32" y="39" orientation="s"/>
<terminal x="48" y="39" orientation="s"/>
<terminal x="72" y="39" orientation="s"/>
</description>
</definition>

View File

@ -1,290 +0,0 @@
<definition width="590" version="0.3" hotspot_x="294" hotspot_y="55" height="130" type="element" ic="true" orientation="dyyy">
<names>
<name lang="el">IPX800 V3</name>
<name lang="en">IPX800 V3</name>
<name lang="it">IPX800 V3</name>
<name lang="fr">IPX800 V3</name>
<name lang="pl">IPX800 V3</name>
<name lang="es">IPX800 V3</name>
<name lang="cs">IPX800 V3</name>
<name lang="nl">IPX800 V3</name>
<name lang="be">IPX800 V3</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-70" y2="1" x2="-83"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="50" y2="1" x2="37"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-190" y2="1" x2="-203"/>
<rect width="579" x="-289" y="-50" antialias="false" height="120" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="249" y="-14" size="6" text="12Vcc"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-130" y2="2" x2="-143"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="170" y2="1" x2="157"/>
<rect width="11" x="85" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="110" y2="1" x2="97"/>
<rect width="11" x="105" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="90" y2="42" x2="90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-10" y2="1" x2="-23"/>
<rect width="11" x="125" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="145" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="70" y2="42" x2="70"/>
<rect width="20" x="-60" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="50" y2="42" x2="50"/>
<rect width="11" x="65" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="45" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="120" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="0" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="260" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="168" y="58" size="6" text="8"/>
<rect width="20" x="120" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-120" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="165" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-240" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-60" y="40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-220" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="-284" y="36.5" size="9" rotate="true" text="Rep Num:"/>
<rect width="20" x="-260" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="110" y2="42" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="130" y2="42" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="150" y2="42" x2="150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="170" y2="42" x2="170"/>
<rect width="20" x="-180" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="241" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="90" y2="30" x2="90"/>
<rect width="20" x="-120" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="40" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-20" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-80" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-57" y="48" size="6" text="3.3V"/>
<text x="-155" y="48" size="6" text="0V"/>
<rect width="20" x="100" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="240" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="160" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="243" y2="62" x2="243"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="150" y2="30" x2="150"/>
<rect width="20" x="-280" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-200" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-240" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-140" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-260" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-280" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="160" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="258.302" y2="52" x2="243.567"/>
<rect width="20" x="-200" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-20" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="170" y2="30" x2="170"/>
<rect width="20" x="100" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="40" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-80" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-252" y="-32" size="6" text="1"/>
<rect width="20" x="240" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-276" y="-32" size="6" text="NC"/>
<rect width="20" x="40" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-100" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-140" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="259" y2="62" x2="259"/>
<rect width="20" x="120" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-140" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-235" y="-32" size="6" text="NO"/>
<rect width="20" x="0" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="130" y2="30" x2="130"/>
<rect width="20" x="260" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-60" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-180" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-120" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="268" y="-31" size="10" text="-"/>
<rect width="20" x="80" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-100" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="140" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-250" y2="-29" x2="-250"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="246" y2="62" x2="244"/>
<rect width="20" x="-220" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-40" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="110" y2="30" x2="110"/>
<rect width="20" x="-100" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-156" y="-32" size="6" text="NC"/>
<text x="-36" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="50" y2="30" x2="50"/>
<text x="246" y="-30" size="10" text="+"/>
<text x="-96" y="-32" size="6" text="NC"/>
<text x="144" y="-32" size="6" text="NC"/>
<rect width="20" x="-60" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="84" y="-32" size="6" text="NC"/>
<text x="24" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-230" y2="-30" x2="-230"/>
<text x="-216" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="256" y2="62" x2="259"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="70" y2="30" x2="70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-240" y2="0" x2="-230"/>
<rect width="20" x="140" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-100" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-120" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="100" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="80" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="247" y2="62" x2="247"/>
<rect width="20" x="-220" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-40" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="255" y2="62" x2="255"/>
<rect width="20" x="-140" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="40" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-192" y="-32" size="6" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="30" y2="30" x2="30"/>
<text x="108" y="-32" size="6" text="7"/>
<text x="-132" y="-32" size="6" text="3"/>
<text x="168" y="-32" size="6" text="8"/>
<text x="-12" y="-32" size="6" text="5"/>
<text x="48" y="-32" size="6" text="6"/>
<text x="-72" y="-32" size="6" text="4"/>
<text x="-92" y="58" size="6" text="3"/>
<text x="-115" y="-32" size="6" text="NO"/>
<text x="-175" y="-32" size="6" text="NO"/>
<text x="5" y="-32" size="6" text="NO"/>
<rect width="20" x="160" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="65" y="-32" size="6" text="NO"/>
<text x="185" y="-32" size="6" text="NO"/>
<text x="-55" y="-32" size="6" text="NO"/>
<text x="125" y="-32" size="6" text="NO"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-270" y2="-30" x2="-270"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="255" y2="65" x2="247"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="50" y2="-29" x2="50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-190" y2="-29" x2="-190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-130" y2="-29" x2="-130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-10" y2="-29" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-259.904" y2="0" x2="-270.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="170" y2="-29" x2="170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-70" y2="-29" x2="-70"/>
<text x="-112" y="58" size="6" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="110" y2="-29" x2="110"/>
<rect width="20" x="20" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-110" y2="-30" x2="-110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="10" y2="-30" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-170" y2="-30" x2="-170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-50" y2="-30" x2="-50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="70" y2="-30" x2="70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="130" y2="-30" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="190" y2="-30" x2="190"/>
<rect width="20" x="160" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-60" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-133" y="58" size="6" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-120" y2="0" x2="-110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-60" y2="0" x2="-50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="120" y2="0" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="60" y2="0" x2="70"/>
<text x="68" y="58" size="6" text="3"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-180" y2="0" x2="-170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="0" y2="0" x2="10"/>
<rect width="20" x="-160" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="48" y="58" size="6" text="2"/>
<rect width="20" x="-80" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-150" y2="-30" x2="-150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-210" y2="-30" x2="-210"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="150" y2="-30" x2="150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="90" y2="-30" x2="90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="30" y2="-30" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-90" y2="-30" x2="-90"/>
<rect width="20" x="100" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-30" y2="-30" x2="-30"/>
<text x="27" y="58" size="6" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="100.096" y2="0" x2="89.911"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="160.096" y2="0" x2="149.911"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-199.904" y2="0" x2="-210.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-139.904" y2="0" x2="-150.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-79.904" y2="0" x2="-90.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-19.904" y2="0" x2="-30.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="40.096" y2="0" x2="29.911"/>
<text x="-157" y="58" size="6" text="Gnd"/>
<rect width="20" x="-80" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="120" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-53" y="59" size="9" text="+"/>
<text x="-72" y="58" size="6" text="4"/>
<rect width="20" x="80" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="140" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="128" y="58" size="6" text="6"/>
<text x="181" y="58" size="6" text="Com"/>
<rect width="20" x="140" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="80" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="108" y="58" size="6" text="5"/>
<text x="148" y="58" size="6" text="7"/>
<text x="88" y="58" size="6" text="4"/>
<rect width="11" x="25" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="30" y2="42" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="30" y2="30" x2="190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="49" x1="190" y2="31" x2="190"/>
<text x="-280" y="16" size="9" text="IPX800 V3"/>
<input x="-284" y="23.5" size="9" rotate="true" text="IP: ---:---:---:---"/>
<rect width="20" x="-270" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-268" y2="62" x2="-268"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-252.698" y2="52" x2="-267.433"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-252" y2="62" x2="-252"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="-265" y2="62" x2="-267"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="-255" y2="62" x2="-252"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-264" y2="62" x2="-264"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-256" y2="62" x2="-256"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-256" y2="65" x2="-264"/>
<text x="223" y="47" size="6" text="Port d'extention&#xa;OUT"/>
<text x="-196" y="64" size="5" text="Reset"/>
<circle x="-213" y="57" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="7"/>
<rect width="40" x="240" y="-30" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="253" y="-22" size="6" text="Alim"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-250" y2="2" x2="-263"/>
<terminal x="-270" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-250" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-230" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-210" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-190" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-170" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-150" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-130" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-110" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-90" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-70" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-50" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-30" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-10" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="10" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="30" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="50" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="70" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="90" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="110" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="130" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="150" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="170" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="190" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="250" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="270" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="30" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="50" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="70" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="90" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="110" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="130" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="150" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="170" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="190" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-260" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="251" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-130" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-110" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-90" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-70" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-50" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-150" y="70" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@ -1,28 +0,0 @@
<definition width="50" version="0.4" hotspot_x="25" hotspot_y="29" height="60" type="element" ic="true" orientation="dyyy">
<names>
<name lang="en">Diodes Module Pilot Wire</name>
<name lang="it">Modulo a diodi pilota</name>
<name lang="fr">Module Fil Pilote</name>
<name lang="pl">Moduł diodowy</name>
<name lang="cs">Diodový modul</name>
</names>
<informations></informations>
<description>
<input x="8" y="14.5" size="9" rotate="true" text="-"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" x1="6" y2="6" x2="14"/>
<input x="-12" y="-15" size="6" rotate="true" text="FP"/>
<rect width="40" x="-20" y="-20" antialias="false" height="40" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-14" y2="0" x2="-6"/>
<polygon x4="-10" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="0" x1="-10" y2="6" x2="-14" y3="6" x3="-6" y4="0"/>
<polygon x4="10" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="6" x1="10" y2="0" x2="6" y3="0" x3="14" y4="6"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="14" x1="-10" y2="7" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" x1="10" y2="6" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-10" y2="-15" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="10" y2="-6" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" x1="10" y2="-6" x2="-9"/>
<input x="-22" y="15.5" size="9" rotate="true" text="+"/>
<terminal x="-10" y="-19" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-10" y="19" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="10" y="19" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@ -1,15 +0,0 @@
<qet-directory>
<names>
<name lang="cs">GCE_Electronics</name>
<name lang="de">GCE_Electronics</name>
<name lang="en">GCE_Electronics</name>
<name lang="es">GCE_Electronics</name>
<name lang="fr">GCE_Electronics</name>
<name lang="it">GCE_Electronics</name>
<name lang="pl">GCE_Electronics</name>
<name lang="pt">GCE_Electronics</name>
<name lang="el">GCE_Electronics</name>
<name lang="nl">GCE_Electronics</name>
<name lang="be">GCE_Electronics</name>
</names>
</qet-directory>

View File

@ -1,262 +0,0 @@
<definition width="590" version="0.3" hotspot_x="295" hotspot_y="55" height="130" type="element" ic="true" orientation="dyyy">
<names>
<name lang="el">X880 V3</name>
<name lang="en">X880 V3</name>
<name lang="it">X880 V3</name>
<name lang="fr">X880 V3</name>
<name lang="pl">X880 V3</name>
<name lang="es">X880 V3</name>
<name lang="cs">X880 V3</name>>
<name lang="nl">X880 V3</name>
<name lang="be">X880 V3</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-280" y="48" size="6" text="Port d'extention&#xa;IN"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-70" y2="1" x2="-83"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="50" y2="1" x2="37"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-190" y2="1" x2="-203"/>
<rect width="579" x="-290" y="-50" antialias="false" height="120" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="249" y="-14" size="6" text="12Vcc"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-130" y2="2" x2="-143"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="170" y2="1" x2="157"/>
<rect width="11" x="85" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="110" y2="1" x2="97"/>
<rect width="11" x="105" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="90" y2="42" x2="90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-10" y2="1" x2="-23"/>
<rect width="11" x="125" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="145" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="70" y2="42" x2="70"/>
<rect width="20" x="-60" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="50" y2="42" x2="50"/>
<rect width="11" x="65" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="45" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="120" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="0" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="260" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="168" y="58" size="6" text="8"/>
<rect width="20" x="120" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-120" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="11" x="165" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-240" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-220" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="-284" y="23.5" size="9" rotate="true" text="Rep Num:"/>
<rect width="20" x="-260" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="110" y2="42" x2="110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="130" y2="42" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="150" y2="42" x2="150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="170" y2="42" x2="170"/>
<rect width="20" x="-180" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="241" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="90" y2="30" x2="90"/>
<rect width="20" x="40" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-20" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-80" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="100" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="240" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="160" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="243" y2="62" x2="243"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="150" y2="30" x2="150"/>
<rect width="20" x="-280" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-200" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-240" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-140" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-260" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-280" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="160" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="258.302" y2="52" x2="243.567"/>
<rect width="20" x="-200" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-20" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="170" y2="30" x2="170"/>
<rect width="20" x="100" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="40" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-80" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-252" y="-32" size="6" text="1"/>
<rect width="20" x="240" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-276" y="-32" size="6" text="NC"/>
<rect width="20" x="40" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-140" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="259" y2="62" x2="259"/>
<rect width="20" x="120" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="180" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-235" y="-32" size="6" text="NO"/>
<rect width="20" x="0" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="130" y2="30" x2="130"/>
<rect width="20" x="260" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-60" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="60" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-180" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-120" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="268" y="-31" size="10" text="-"/>
<rect width="20" x="80" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="140" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-250" y2="-29" x2="-250"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="246" y2="62" x2="244"/>
<rect width="20" x="-220" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-40" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="110" y2="30" x2="110"/>
<rect width="20" x="-100" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="-50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-156" y="-32" size="6" text="NC"/>
<text x="-36" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="50" y2="30" x2="50"/>
<text x="246" y="-30" size="10" text="+"/>
<text x="-96" y="-32" size="6" text="NC"/>
<text x="144" y="-32" size="6" text="NC"/>
<rect width="20" x="60" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="84" y="-32" size="6" text="NC"/>
<text x="24" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-230" y2="-30" x2="-230"/>
<text x="-216" y="-32" size="6" text="NC"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="256" y2="62" x2="259"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="70" y2="30" x2="70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-240" y2="0" x2="-230"/>
<rect width="20" x="140" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="20" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-100" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="100" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="80" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-160" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="247" y2="62" x2="247"/>
<rect width="20" x="-220" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="-40" y="-40" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="255" y2="62" x2="255"/>
<rect width="20" x="40" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-192" y="-32" size="6" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="38" x1="30" y2="30" x2="30"/>
<text x="108" y="-32" size="6" text="7"/>
<text x="-132" y="-32" size="6" text="3"/>
<text x="168" y="-32" size="6" text="8"/>
<text x="-12" y="-32" size="6" text="5"/>
<text x="48" y="-32" size="6" text="6"/>
<text x="-72" y="-32" size="6" text="4"/>
<text x="-115" y="-32" size="6" text="NO"/>
<text x="-175" y="-32" size="6" text="NO"/>
<text x="5" y="-32" size="6" text="NO"/>
<rect width="20" x="160" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="65" y="-32" size="6" text="NO"/>
<text x="185" y="-32" size="6" text="NO"/>
<text x="-55" y="-32" size="6" text="NO"/>
<text x="125" y="-32" size="6" text="NO"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-270" y2="-30" x2="-270"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="255" y2="65" x2="247"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="50" y2="-29" x2="50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-190" y2="-29" x2="-190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-130" y2="-29" x2="-130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-10" y2="-29" x2="-10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-259.904" y2="0" x2="-270.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="170" y2="-29" x2="170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-70" y2="-29" x2="-70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="110" y2="-29" x2="110"/>
<rect width="20" x="20" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-110" y2="-30" x2="-110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="10" y2="-30" x2="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-170" y2="-30" x2="-170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-50" y2="-30" x2="-50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="70" y2="-30" x2="70"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="130" y2="-30" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="190" y2="-30" x2="190"/>
<rect width="20" x="160" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-120" y2="0" x2="-110"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-60" y2="0" x2="-50"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="180" y2="0" x2="190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="120" y2="0" x2="130"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="60" y2="0" x2="70"/>
<text x="68" y="58" size="6" text="3"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-180" y2="0" x2="-170"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="0" y2="0" x2="10"/>
<text x="48" y="58" size="6" text="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-150" y2="-30" x2="-150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-210" y2="-30" x2="-210"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="150" y2="-30" x2="150"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="90" y2="-30" x2="90"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="30" y2="-30" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-90" y2="-30" x2="-90"/>
<rect width="20" x="100" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="-30" y2="-30" x2="-30"/>
<text x="27" y="58" size="6" text="1"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="100.096" y2="0" x2="89.911"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="160.096" y2="0" x2="149.911"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-199.904" y2="0" x2="-210.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-139.904" y2="0" x2="-150.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-79.904" y2="0" x2="-90.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-19.904" y2="0" x2="-30.089"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="40.096" y2="0" x2="29.911"/>
<rect width="20" x="180" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="120" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="80" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="140" y="50" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="128" y="58" size="6" text="6"/>
<text x="181" y="58" size="6" text="Com"/>
<rect width="20" x="140" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="20" x="80" y="60" antialias="false" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="108" y="58" size="6" text="5"/>
<text x="148" y="58" size="6" text="7"/>
<text x="88" y="58" size="6" text="4"/>
<rect width="11" x="25" y="38" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" x1="30" y2="42" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="30" x1="30" y2="30" x2="190"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="49" x1="190" y2="31" x2="190"/>
<text x="-280" y="16" size="9" text="X880 V3"/>
<rect width="20" x="-270" y="50" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-268" y2="62" x2="-268"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-252.698" y2="52" x2="-267.433"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="52" x1="-252" y2="62" x2="-252"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="-265" y2="62" x2="-267"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="62" x1="-255" y2="62" x2="-252"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-264" y2="62" x2="-264"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-256" y2="62" x2="-256"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="65" x1="-256" y2="65" x2="-264"/>
<text x="223" y="47" size="6" text="Port d'extention&#xa;OUT"/>
<text x="-196" y="64" size="5" text="Reset"/>
<circle x="-213" y="57" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="7"/>
<rect width="40" x="240" y="-30" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="253" y="-22" size="6" text="Alim"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19" x1="-250" y2="2" x2="-263"/>
<terminal x="-270" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-250" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-230" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-210" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-190" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-170" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-150" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-130" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-110" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-90" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-70" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-50" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-30" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-10" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="10" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="30" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="50" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="70" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="90" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="110" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="130" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="150" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="170" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="190" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="250" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="270" y="-50" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="30" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="50" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="70" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="90" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="110" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="130" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="150" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="170" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="190" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-260" y="70" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="251" y="70" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@ -1,37 +0,0 @@
<definition width="50" version="0.3" hotspot_x="25" hotspot_y="20" height="40" type="element" ic="true" orientation="dyyy">
<names>
<name lang="el">Ψηφιακή έξοδος, μονή</name>
<name lang="en">Binary output, single</name>
<name lang="it">Uscita digitale, singola</name>
<name lang="fr">sortie numérique</name>
<name lang="pl">Wyjście cyfrowe</name>
<name lang="es">Salida binaria, unica</name>
<name lang="cs">Digitální výstup</name>
<name lang="nl">Digitaal uitgang, enkel</name>
<name lang="be">Digitaal uitgang, enkel</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect width="10" x="-20" y="-15" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="-10" y="-15" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="9" y="8.5" size="5" rotate="true" text="1"/>
<polygon x4="-14" y5="-11" x5="-14" y6="-12" x6="-15" y7="-11" x7="-16" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-11" x1="-16" y2="11" x2="-16" y3="12" x3="-15" y4="11"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="0" x1="-5" y2="0" x2="0" y3="-3" x3="10"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-9" x1="-18" y2="-12" x2="-15" y3="-9" x3="-12"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="15" y2="0" x2="10"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="9" x1="-18" y2="12" x2="-15" y3="9" x3="-12"/>
<terminal x="-20" y="10" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="-20" y="0" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="-20" y="-10" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="20" y="0" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="20" y="10" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="20" y="-10" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="-10" y="15" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="0" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="10" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-10" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="0" y="15" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="10" y="15" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@ -1,37 +0,0 @@
<definition width="50" version="0.3" hotspot_x="25" hotspot_y="20" height="40" type="element" ic="true" orientation="dyyy">
<names>
<name lang="el">Ψηφιακή έξοδος, διπλή</name>
<name lang="en">Binary output, 2-fold</name>
<name lang="it">Uscita digitale, 2 vie</name>
<name lang="fr">Deux sorties numériques</name>
<name lang="pl">Dwa wyjścia cyfrowe</name>
<name lang="es">Dos salidas binarias</name>
<name lang="cs">Dva digitální výstupy</name>
<name lang="nl">Digitaal uitgang, 2 voudig</name>
<name lang="be">Digitaal uitgang, 2 voudig</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect width="10" x="-20" y="-15" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="30" x="-10" y="-15" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="9" y="8.5" size="5" rotate="true" text="2"/>
<polygon x4="-14" y5="-11" x5="-14" y6="-12" x6="-15" y7="-11" x7="-16" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-11" x1="-16" y2="11" x2="-16" y3="12" x3="-15" y4="11"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="0" x1="-5" y2="0" x2="0" y3="-3" x3="10"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-9" x1="-18" y2="-12" x2="-15" y3="-9" x3="-12"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="15" y2="0" x2="10"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="9" x1="-18" y2="12" x2="-15" y3="9" x3="-12"/>
<terminal x="-20" y="10" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="-20" y="0" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="-20" y="-10" nameHidden="0" number="" name="" orientation="w"/>
<terminal x="20" y="0" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="20" y="10" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="20" y="-10" nameHidden="0" number="" name="" orientation="e"/>
<terminal x="-10" y="15" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="0" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="10" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-10" y="-15" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="0" y="15" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="10" y="15" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

Some files were not shown because too many files have changed in this diff Show More