Compare commits

..

140 Commits

Author SHA1 Message Date
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 d32c322e5a.
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 44db25e76b
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 
 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 1db1800572, reversing
changes made to 4c563821e8.
2021-03-11 19:52:50 +01:00
joshua
83b69253dc Revert "fix compile error"
This reverts commit b181311162.
2021-03-11 19:49:46 +01:00
joshua
b96eff00ef Revert "Fix for cmake"
This reverts commit 4051bbd309.
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 4b82c3a0c4 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
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
598 changed files with 114087 additions and 87480 deletions

View File

@@ -133,6 +133,8 @@ target_include_directories(
)
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})
@@ -156,3 +158,5 @@ install(FILES misc/x-qet-element.desktop
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()

View File

@@ -15,10 +15,10 @@ The main goal of the developers is to provide a libre, easy to use and effective
### Version
The current stable version is 0.70 and was released on 2019.07.13.
The current stable version is 0.80 and was released on 2021.02.21.
Once it has been officialy 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.8), which can also be [downloaded](https://qelectrotech.org/download.html).
New functionalities, bug and issue fixings are further made in the development version (currently 0.9), which can also be [downloaded](https://qelectrotech.org/download.html).
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 partialy implemented until they are done!
@@ -33,6 +33,7 @@ Like many other open source softwares, QElectroTech is provided as it is, withou
### 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.
If you are reading this on Github, be aware that this is an hourly synced mirror. Our real code repository [is located here](https://git.tuxfamily.org/qet/qet.git/).
Here are the technical choices made for the software development:
@@ -172,7 +173,7 @@ Nowadays, QET is not only used by many individuals, teachers and students but al
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/?token=rqf80cP0Ck1F2jn4Y46G7tIPv9bq7x0crXkwt3GZ6OZYG6ihJYi8lZxmmQ8itsFwMUdd1G&country.x=GB&locale.x=GB)
or at [leetchi.com](https://www.leetchi.com/c/qelectroteck)
For more information, look at [Paypal](https://www.paypal.com/donate/?token=rqf80cP0Ck1F2jn4Y46G7tIPv9bq7x0crXkwt3GZ6OZYG6ihJYi8lZxmmQ8itsFwMUdd1G&country.x=GB&locale.x=GB)

View File

@@ -1,7 +1,7 @@
{
"id": "org.qelectrotech.QElectroTech",
"runtime": "org.kde.Platform",
"runtime-version": "5.14",
"runtime-version": "5.15",
"sdk": "org.kde.Sdk",
"command": "qelectrotech",
"rename-desktop-file": "qelectrotech.desktop",
@@ -10,17 +10,61 @@
"copy-icon": true,
"finish-args": [
"--socket=wayland",
"--socket=x11",
"--socket=fallback-x11",
"--device=dri",
"--share=ipc",
"--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": "2301112d142ebaf7532b25600c77d1a2edc9ef04"
}
],
"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 /app/share/mime/packages/qelectrotech.xml /app/share/mime/packages/org.qelectrotech.QElectroTech.xml"
"mv ${FLATPAK_DEST}/share/mime/packages/qelectrotech.xml ${FLATPAK_DEST}/share/mime/packages/org.qelectrotech.QElectroTech.xml"
],
"sources": [
{
@@ -32,6 +76,50 @@
"path": "patches/0001-build-Fix-the-installation-paths.patch"
}
]
}
},
{
"name": "python3.6.0",
"sources": [
{
"type": "archive",
"url": "https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz",
"sha256": "b0c5f904f685e32d9232f7bdcbece9819a892929063b6e385414ad2dd6a23622"
}
],
"config-opts": ["--enable-shared"],
"post-install": [
"chmod +w ${FLATPAK_DEST}/lib/libpython3.6m.so.1.0",
"chmod +w ${FLATPAK_DEST}/lib/libpython3.so"
]
},
{
"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/9e/c3/aaad3309a5f2ca08e2fa0ab01123bb6fafb15a92854bff88042039192a67/qet_tb_generator-1.1.7.tar.gz",
"sha256": "f626ab7bf4d9091fc85f63d33136585e611272b347499b448ece4e33cc04eeed"
}
]
},
{
"name": "DXFtoQET-2020-1",
"buildsystem": "qmake",
"sources": [
{
"type": "git",
"url": "https://github.com/qelectrotech/DXFtoQET-2020.git",
"commit": "01fbb2afe0fe66782cb1d1f901c73616c7d5299d"
}
],
"post-install": [
"mkdir -p ${FLATPAK_DEST}/bin",
"cp DXFtoQET ${FLATPAK_DEST}/bin/"
]
}
]
}

View File

@@ -39,10 +39,12 @@ 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_XML_PATH " ${QET_MIME_XML_PATH})

View File

@@ -14,7 +14,7 @@
<name lang="hu">Beérkező hivatkozás</name>
<name lang="nl">Referentie Vorig</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x2="-1" y2="4" y4="-4" x1="-1" x3="9" y3="0" closed="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-4" x4="-1" antialias="true"/>

View File

@@ -14,7 +14,7 @@
<name lang="ru">Следующая страница</name>
<name lang="cs">Další list</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon y3="0" y2="4" x4="-9" x3="2" x1="-9" x2="-9" y4="-4" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-4" closed="false" antialias="true"/>

View File

@@ -29,7 +29,7 @@
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
</elementInformations>
<informations>titus&#xd;
<informations>titus
titus0818@yahoo.com</informations>
<description>
<line y1="-16" x1="0" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none" y2="13" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>

View File

@@ -15,7 +15,7 @@
<name lang="ru">Однополюсный + нейтраль</name>
<name lang="hu">F + N</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="-5" y="-25.45" tagg="label" size="9" rotate="true" text="_"/>

View File

@@ -15,7 +15,7 @@
<name lang="ru">Трёхполюсный</name>
<name lang="hu">3F</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="-2" y="-34.45" tagg="label" size="9" rotate="true" text="_"/>

View File

@@ -15,7 +15,7 @@
<name lang="ru">Трёхполюсный + нейтраль</name>
<name lang="hu">3F + N</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="-7" y="-44.45" tagg="label" size="9" rotate="true" text="_"/>

View File

@@ -15,7 +15,7 @@
<name lang="ru">Фаза</name>
<name lang="hu">F</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="-6" y="-14.45" tagg="label" size="9" rotate="true" text="_"/>

View File

@@ -28,7 +28,7 @@
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text uuid="{0af57a27-1887-4576-8b51-200ca996e582}" Halignment="AlignLeft" frame="false" x="2" Valignment="AlignTop" text_from="ElementInfo" y="-22.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="1" rotation="0" text_width="-1">

View File

@@ -10,7 +10,7 @@
<name lang="cs">Kabel 3G</name>
<name lang="hu">Kábel 2 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="12" y="9" size="4" text="2"/>

View File

@@ -10,7 +10,7 @@
<name lang="cs">Kabel 4G</name>
<name lang="hu">Kábel 3 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line 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.95" x1="-12.05" y2="11.95" x2="-8.05"/>

View File

@@ -10,7 +10,7 @@
<name lang="cs">Kabel 3G</name>
<name lang="hu">Kábel 2 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line 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.95" x1="17.95" y2="11.95" x2="21.95"/>

View File

@@ -8,7 +8,7 @@
<name lang="cs">Kabel 4G</name>
<name lang="hu">Kábel 3 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line 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.95" x1="-33.05" y2="11.95" x2="-29.05"/>

View File

@@ -8,7 +8,7 @@
<name lang="cs">Kabel 5G</name>
<name lang="hu">Kábel 4 + N + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end1="none" x1="-42.05" y1="7.95" x2="-38.05" length1="1.5" y2="11.95" antialias="true" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>

View File

@@ -8,7 +8,7 @@
<name lang="cs">Kabel 3G</name>
<name lang="hu">Kábel 2 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end1="none" x1="-23.05" y1="7.95" x2="-19.05" length1="1.5" y2="11.95" antialias="true" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>

View File

@@ -7,7 +7,7 @@
<name lang="hu">Kábel 2 + PE</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="1.95" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2.05" length2="1.5" antialias="true" y2="1.95" end2="none" x1="-2.05" length1="1.5"/>

View File

@@ -10,7 +10,7 @@
<name lang="fr">Cable 3 phases+terre</name>
<name lang="hu">Kábel 3 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x1="-2.05" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="1.95" y2="1.95" antialias="true"/>

View File

@@ -10,7 +10,7 @@
<name lang="fr">Cable 6 phases+terre</name>
<name lang="hu">Kábel 6 + PE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input size="4" tagg="none" rotate="true" x="38" y="-4" text="6"/>

View File

@@ -9,7 +9,7 @@
<name lang="es">Sección 1 conductor</name>
<name lang="hu">1 ér keresztmetszet</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line antialias="false" length1="1.5" x2="9.91885" end2="none" x1="-10.8483" end1="none" y2="0" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0"/>

View File

@@ -9,7 +9,7 @@
<name lang="es">Sección 2 conductores</name>
<name lang="hu">2 ér keresztmetszet</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line antialias="true" length1="1.5" x2="41.95" end2="none" x1="37.95" end1="none" y2="1.95" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2.05"/>

View File

@@ -9,7 +9,7 @@
<name lang="es">Sección 2 conductores</name>
<name lang="hu">2 ér keresztmetszet</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line antialias="true" length1="1.5" x2="21.95" end2="none" x1="17.95" end1="none" y2="1.95" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2.05"/>

View File

@@ -9,7 +9,7 @@
<name lang="es">Sección 3 conductores</name>
<name lang="hu">3 ér keresztmetszet</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line antialias="true" length1="1.5" x2="41.95" end2="none" x1="37.95" end1="none" y2="1.95" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2.05"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="-15" y2="10" x2="-10" y3="20" x3="-10"/>

View File

@@ -15,7 +15,7 @@
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="25" y2="10" x2="30" y3="20" x3="30"/>

View File

@@ -15,7 +15,7 @@
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<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:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-33" y2="0" x2="-26"/>

View File

@@ -15,7 +15,7 @@
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="-15" y2="10" x2="-10" y3="20" x3="-10"/>

View File

@@ -12,6 +12,7 @@
<name lang="pt">Descarregador de faísca</name>
<name lang="fr">Éclateur</name>
<name lang="nl">Vonkbrug</name>
<name lang="hu">Szikraköz</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -8,6 +8,7 @@
<name lang="cs">Varistor</name>
<name lang="it">Varistore Metal-oxide</name>
<name lang="nl">Varistor Metal-oxide</name>
<name lang="hu">Fém-oxid varisztor</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>

View File

@@ -10,10 +10,11 @@
<name lang="el">Προστασία από υπέρταση</name>
<name lang="fr">Parafoudre</name>
<name lang="en">Surge protection</name>
<name lang="hu">Túlfeszültség védő</name>
<name lang="es">Protección contra descargas 2</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text z="1" text_from="ElementInfo" rotation="0" text_width="-1" Valignment="AlignTop" frame="false" x="18" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-15.45" uuid="{daef117a-d243-49f7-b089-6a8ffe076f69}" Halignment="AlignLeft">

View File

@@ -2,6 +2,7 @@
<uuid uuid="{5FC5912D-A466-4E02-8051-7F08868D3FB5}"/><names>
<name lang="de">Blitzschutz</name>
<name lang="en">Surge protector</name>
<name lang="hu">Túlfeszültség védő</name>
<name lang="es">Protección contra descargas</name>
<name lang="it">Scaricatore</name>
<name lang="fr">Parafoudre</name>

View File

@@ -11,6 +11,7 @@
<name lang="pl">Ogranicznik przepięć</name>
<name lang="ar">حامي من الصواعق</name>
<name lang="en">Surge protection</name>
<name lang="hu">Túlfeszültség védő</name>
</names>
<elementInformations>
<elementInformation show="1" name="unity"></elementInformation>

View File

@@ -8,6 +8,7 @@
<name lang="cs">Bleskojistka, ochrana proti přepětí</name>
<name lang="fr">Parafoudre</name>
<name lang="en">Surge protector</name>
<name lang="hu">Túlfeszültség védő</name>
<name lang="es">Protección contra descargas</name>
</names>
<elementInformations>

View File

@@ -11,5 +11,6 @@
<name lang="el">Προστασία από υπέρταση</name>
<name lang="nl">Overspanningsbeveiliging</name>
<name lang="da">Overspændingsbeskyttelse</name>
<name lang="hu">Túlfeszültség védelem</name>
</names>
</qet-directory>

View File

@@ -8,6 +8,7 @@
<name lang="pl">Odgromnik gazowyładowczy dwuelektrodowy</name>
<name lang="cs">Plynová bleskojistka</name>
<name lang="nl">gasontladingsbuis</name>
<name lang="hu">Védőgázas szimetrikus kisülőcső</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>

View File

@@ -8,6 +8,7 @@
<name lang="pl">Odgromnik gazowyładowczy trójelektrodowy</name>
<name lang="cs">Dvojitá plynová bleskojistka</name>
<name lang="nl">Symmetrische gasontlading buis</name>
<name lang="hu">Védőgázas kisülőcső</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">protection</kindInformation>

View File

@@ -11,6 +11,7 @@
<name lang="es">Bobina</name>
<name lang="cs">Cívka relé</name>
<name lang="nl">Spoel</name>
<name lang="hu">Tekercs</name>
<name lang="be">Relais spoel (algemeen)</name>
</names>
<kindInformations>

View File

@@ -12,6 +12,7 @@
<name lang="cs">Bistabilní remanentní relé</name>
<name lang="nl">spoel remanent</name>
<name lang="be">Spoel KA remanent</name>
<name lang="hu">Tekercs</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -11,6 +11,7 @@
<name lang="es">Bobina KA con enclavamiento mecánico</name>
<name lang="cs">Mechanické blokovací relé</name>
<name lang="nl">spoel met vergrendeling</name>
<name lang="hu">Tekercs</name>
<name lang="be">Spoel KA met mechanische vergrendeling</name>
</names>
<kindInformations>

View File

@@ -9,6 +9,7 @@
<name lang="cs">Relé se zpožděným zapnutím a vypnutím</name>
<name lang="de">Relais ansprech- und rückfallverzögert</name>
<name lang="it">Bobina di relè ritardato</name>
<name lang="hu">Tekercs be/ki késleltetéssel</name>
<name lang="el">Πηνίο χρονικού, καθυστέρηση ενεργοποίησης-απενεργοποίησης</name>
<name lang="ar">ملف مُؤقت مع تأخير الإستجابة و تأخير الإعتاق</name>
<name lang="pl">Cewka przekaźnika działającego ze zwłoką przy wzbudzeniu i odwzbudzeniu</name>

View File

@@ -2,6 +2,7 @@
<uuid uuid="{7E996B1F-B537-44D9-A3E9-DB5F30487400}"/><names>
<name lang="be">Spoel met uitschakel vertraging</name>
<name lang="en">Coil with off delay</name>
<name lang="hu">Tekercs ki késleltetéssel</name>
<name lang="fr">Bobine tempo repos</name>
<name lang="ru">Обмотка</name>
<name lang="es">Bobina de reposo temporizado</name>

View File

@@ -2,6 +2,7 @@
<uuid uuid="{14D69713-ADDE-4ACD-8654-50E3E60B61F7}"/><names>
<name lang="be">Spoel met inschakel vertraging</name>
<name lang="en">Coil with on delay</name>
<name lang="hu">Tekercs be késleltetéssel</name>
<name lang="fr">Bobine tempo travail</name>
<name lang="ru">Обмотка</name>
<name lang="es">Bobina de trabajo temporizado</name>

View File

@@ -8,6 +8,7 @@
<name lang="pl">Przekaźnik prądu przemiennego</name>
<name lang="cs">Cívka relé pro AC napájení</name>
<name lang="es">Relé de CA</name>
<name lang="hu">Tekercs AC</name>
<name lang="nl">Relais voor wisselspanning</name>
<name lang="be">Relais AC (wisselspanning)</name>
</names>

View File

@@ -8,6 +8,7 @@
<name lang="cs">Cívka relé pro DC napájení</name>
<name lang="de">Spule mit Gleichstrombetätigung</name>
<name lang="it">Relè DC</name>
<name lang="hu">Tekercs DC</name>
<name lang="el">Πηνίο συνεχούς</name>
<name lang="pl">Przekaźnik prądu przemiennego</name>
</names>

View File

@@ -9,7 +9,8 @@
<name lang="cs">Elektronické relé</name>
<name lang="nl">relais electronisch</name>
<name lang="es">Relé electrónico</name>
<name lang="be">Electronisch relais</name>
<name lang="be">Electronisch relais</name>
<name lang="hu">Tranzisztoros működtetés</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -7,7 +7,7 @@
<name lang="es">Contacto relé térmico (NA)</name>
<name lang="cs">Kontakt (NO) tepelného jističe</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<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="3" x1="-12.6286" y2="3" x2="-16.1714"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Contacto relé térmico (NC)</name>
<name lang="cs">Kontakt (NC) tepelného jističe</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<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="0" x1="-7.67895" y2="0" x2="-10.9053"/>

View File

@@ -13,5 +13,6 @@
<name lang="cs">Relé, stykače a kontakty</name>
<name lang="da">Relæer, kontaktorer og kontakter</name>
<name lang="ja">継電器、接触器、接点</name>
<name lang="hu">Relék, kontaktorok és érintkezők</name>
</names>
</qet-directory>

View File

@@ -11,7 +11,7 @@
<name lang="cs">Jednofázový autotransformátor</name>
<name lang="nl">enkelfase autotransformator</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<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="8" y2="-35" x2="8"/>

View File

@@ -11,7 +11,7 @@
<name lang="cs">Třífázový autotransformátor</name>
<name lang="nl">driefase autotransformator</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="20" y="17.6667" size="5" text="___V"/>

View File

@@ -11,7 +11,7 @@
<name lang="cs">Třífázový autotransformátor + neutrál</name>
<name lang="nl">driefase autotransformator + Nul</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="20" y="17.6667" size="5" text="___V"/>

View File

@@ -11,7 +11,7 @@
<name lang="cs">Třífázový transformátor</name>
<name lang="nl">Driefase transformator</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-16" y="-31.6667" size="4" text="A1"/>

View File

@@ -11,7 +11,7 @@
<name lang="cs">Třífázový transformátor + neutrál</name>
<name lang="nl">driefase transformator + Nul</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x4="-12" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="35" x1="-34" y2="30" x2="-34" y3="19" x3="-27" y4="19"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Lámpara azul</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<ellipse width="14.5169" x="-7.5012" y="-6.95514" antialias="true" height="13.3034" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Lámpara roja</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon style="line-style:normal;line-weight:normal;filling:red;color:red" x1="-6.61784" x2="-8.37626" x3="-8.37626" x4="-7.49705" antialias="false" x5="-4.85942" x6="-0.463379" x7="3.05345" x8="5.69108" x9="7.4495" y1="-5.31158" y10="-0.849266" y2="-2.3367" y11="-3.82414" y3="0.638173" y4="3.61305" y12="-6.0553" y5="5.84421" x10="7.4495" y13="-6.79902" y6="7.33165" x11="6.57029" y14="-6.79902" y7="6.58793" x12="4.81187" y15="-5.31158" y8="4.35677" x13="1.29504" y9="2.12561" x14="-3.10101" x15="-6.61784"/>

View File

@@ -8,7 +8,7 @@
<name lang="ca">Lum verda</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<ellipse width="14.5169" x="-7.5012" y="-6.95514" antialias="true" height="13.3034" style="line-style:normal;line-weight:normal;filling:green;color:black"/>

View File

@@ -12,7 +12,7 @@
<name lang="pl">Głośnik</name>
<name lang="nl">Luidspreker</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input y="1.55" text="_" x="14" rotate="true" size="9" tagg="label"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y1="0" length1="1.5" y2="0" antialias="false" x1="-5" end1="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" length2="1.5" end2="none" x2="7"/>

View File

@@ -0,0 +1,40 @@
<definition hotspot_y="24" type="element" link_type="simple" height="50" width="60" orientation="dyyy" version="0.80" hotspot_x="28">
<uuid uuid="{4f9e99c4-8b9f-4727-837a-c145a41669dc}"/>
<names>
<name lang="de">Fußschalter 2-polig Schliesser/Öffner</name>
<name lang="en">Foot Switch (NO/NC)</name>
<name lang="pl">Łącznik wielozestykowy napędzany nogą</name>
<name lang="it">Comando a pedale (NO/NC)</name>
<name lang="ar">مفتاح بدوّاسة (NO/NC)</name>
<name lang="el">Ποδοδιακόπτης, ανοικτή και κλειστή επαφή</name>
<name lang="cs">Pedálový spínač (NO/NC)</name>
<name lang="es">Paro de emergencia con pedal (NA/NC)</name>
<name lang="fr">Interrupteur à pedale (NO/NC)</name>
<name lang="nl">Voetschakelaar (NO/NC)</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="-15" length1="1.5" y1="-9" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{6e15cbca-5884-432a-b376-0eeeaf93807b}" frame="false" Valignment="AlignTop" z="4" Halignment="AlignLeft" x="-25" rotation="0" text_width="-1" text_from="ElementInfo" y="-23">
<text></text>
</dynamic_text>
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{fec82be4-22c7-47c0-9f88-03e4aa98453b}" frame="false" Valignment="AlignTop" z="5" Halignment="AlignLeft" x="-24" rotation="0" text_width="-1" text_from="ElementInfo" y="9">
<text></text>
</dynamic_text>
<polygon x2="-22" x3="-16" y1="20" y2="10" antialias="true" y3="-10" closed="false" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="28" length1="1.5" y1="0" y2="0" length2="1.5" antialias="false" end1="none" end2="none" x1="-23" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
<line x2="-22" length1="1.5" y1="-20" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x2="25" x3="19" y1="20" y2="10" antialias="true" y3="-10" closed="false" x1="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="25" length1="1.5" y1="-20" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{710338b0-9eaa-4d59-83d7-04c5d943f372}" frame="false" Valignment="AlignTop" z="12" Halignment="AlignLeft" x="-16" rotation="0" text_width="-1" text_from="ElementInfo" y="-7.8334">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal uuid="{d0344bb5-2bee-4b7e-a546-3d1e93cc6c6e}" name="" x="-22" orientation="n" y="-20"/>
<terminal uuid="{e5ce146b-8ee7-4911-8b16-3df6e5db95f7}" name="" x="25" orientation="s" y="20"/>
<terminal uuid="{cb1c6234-2e2b-4182-a41e-0bd903308857}" name="" x="25" orientation="n" y="-20"/>
<terminal uuid="{4c78277d-8476-4fb2-9ca3-49c4e85e6dd3}" name="" x="-22" orientation="s" y="20"/>
</description>
</definition>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y3="-10" y2="10" closed="false" x2="30" x3="24" x1="30" y1="20"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon y1="20" y3="-10" x3="36" antialias="true" x2="30" y2="10" x1="30" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>

View File

@@ -0,0 +1,53 @@
<definition hotspot_x="34" type="element" version="0.90" link_type="simple" width="190" height="60" hotspot_y="30">
<uuid uuid="{1493c806-dd66-4b97-8f60-7fe6805d7364}"/>
<names>
<name lang="fr">Commutateur à 3 positions A/0/M </name>
</names>
<elementInformations>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="description" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-22" color="#000000" text="0" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<polygon x3="150" x1="145" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="150"/>
<text x="-19" color="#000000" text="I" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<line end1="none" length1="1.5" x1="150" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="150"/>
<polygon x3="50" x1="45" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="50"/>
<text x="-10" color="#000000" text="III" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<polygon x3="100" x1="95" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="100"/>
<line end1="none" length1="1.5" x1="50" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="50"/>
<line end1="none" length1="1.5" x1="100" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="100"/>
<line end1="none" length1="1.5" x1="-15" y1="5" y2="-5" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-9"/>
<line end1="none" length1="1.5" x1="-21" y1="-5" y2="5" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-15"/>
<line end1="none" length1="1.5" x1="147" y1="0" y2="0" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-23.0136"/>
<text x="-14" color="#000000" text="II" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<dynamic_text x="160" text_width="-1" y="-10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" z="13" rotation="0" frame="false" uuid="{f223e627-8712-4f6f-9c88-ec96bed2375e}" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x3="-27" x1="-24" y1="-5" y2="-5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-30" y4="5" y3="5" closed="false" antialias="false" x2="-27"/>
<polygon x3="0" x1="-5" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="0"/>
<line end1="none" length1="1.5" x1="0" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="0"/>
<line end1="none" length1="1.5" x1="-15" y1="5" y2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-18"/>
<line end1="none" length1="1.5" x1="-13" y1="-6" y2="5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-15"/>
<terminal x="0" name="" orientation="s" type="Generic" y="21" uuid="{80d55e51-fb45-4e4b-9321-113e221eb3fb}"/>
<terminal x="150" name="" orientation="s" type="Generic" y="21" uuid="{35246de8-5510-4491-ac36-9f168d0f2c67}"/>
<terminal x="100" name="" orientation="s" type="Generic" y="21" uuid="{276a6a53-a111-4c37-bd44-62a391f3790d}"/>
<terminal x="0" name="" orientation="n" type="Generic" y="-21" uuid="{98679cb1-c7aa-472f-8fba-2176b61cdb84}"/>
<terminal x="50" name="" orientation="s" type="Generic" y="21" uuid="{e8f43154-6943-4015-b5cf-d7cff3a3bf59}"/>
<terminal x="150" name="" orientation="n" type="Generic" y="-22" uuid="{b7eafdd7-085a-4b99-961c-5518e9f89a89}"/>
<terminal x="50" name="" orientation="n" type="Generic" y="-21" uuid="{73d98523-0345-48f2-a752-89d6f99646c0}"/>
<terminal x="100" name="" orientation="n" type="Generic" y="-21" uuid="{ecb47209-ebde-4018-9bfb-234a6719c1ab}"/>
</description>
</definition>

View File

@@ -11,7 +11,7 @@
<name lang="es">Interruptor de 3 posiciones</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end1="none" x1="47" x2="23" end2="none" length1="1.5" length2="1.5" antialias="false" y1="0" style="line-style:dashed;line-weight:thin;filling:none;color:black" y2="0"/>

View File

@@ -13,7 +13,7 @@
<kindInformations>
<kindInformation name="type" show="1">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="7" y2="-3" length1="1.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" end1="none" x1="3" end2="none" length2="1.5" antialias="true" y1="3"/>

View File

@@ -13,7 +13,7 @@
<kindInformations>
<kindInformation name="type" show="1">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line length1="1.5" y1="3" length2="1.5" y2="-3" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="true" end2="none" end1="none" x1="-2" x2="2"/>

View File

@@ -13,7 +13,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line antialias="false" end1="none" x1="15" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="11" end2="simple" y2="-4" y1="-4" length2="0.5"/>

View File

@@ -12,7 +12,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<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:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-2" y2="0" x2="11"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="70.5" y="-3.5" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="7"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<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="0" x1="55" y2="0" x2="56"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="-11" y="10.5" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="3"/>

View File

@@ -14,7 +14,7 @@
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
<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:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-12" y2="0" x2="57"/>

View File

@@ -4,8 +4,8 @@
<name lang="cs">Měřič překročení spotřeby</name>
<name lang="nl">Overcapaciteit teller</name>
<name lang="it">Contatore di energia attiva a supero di potenza</name>
<name lang="de">Überverbrauchszähler, Spitzenzähler&#xd;</name>
<name lang="en"> Excess watt-hour meter&#xd;</name>
<name lang="de">Überverbrauchszähler, Spitzenzähler</name>
<name lang="en"> Excess watt-hour meter</name>
<name lang="fr">Compteur à énergie active à dépassement de puissance</name>
<name lang="pl">Licznik watogodzin szczytowy</name>
<name lang="ar">عدّاد طاقة فعّالة مع تجاوز قدرة</name>

View File

@@ -14,7 +14,7 @@
<name lang="es">Motor trifásico</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="2" color="#000000" text="U2" y="-45" rotation="0"/>

View File

@@ -9,7 +9,7 @@
<name lang="cs">Jednofázový motor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon y1="-20" y3="9" closed="false" y2="9" x3="15" antialias="false" x1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x4="15" x2="20" y4="9"/>

View File

@@ -9,7 +9,7 @@
<name lang="fr">Moteur monophasé</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text font="Sans Serif,18,-1,5,50,0,0,0,0,0" y="21" x="-6" text="M" rotation="0" color="#000000"/>

View File

@@ -10,7 +10,7 @@
<name lang="nl">Motor DC Serie</name>
<name lang="cs">Sériový DC motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x4="-15" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-30" x1="-20" y2="10" x2="-20" y3="10" x3="-15" y4="10"/>

View File

@@ -10,7 +10,7 @@
<name lang="nl">Motor serie 1fase</name>
<name lang="cs">Sériový AC motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x4="15" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-9" x1="20" y2="9" x2="20" y3="9" x3="15" y4="9"/>

View File

@@ -10,7 +10,7 @@
<name lang="nl">Draaistroommotor Serie 3fasen</name>
<name lang="cs">Trojfázový sériový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="-15" y="-5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="30"/>

View File

@@ -14,7 +14,7 @@
<name lang="nl">Draaistroommotor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle antialias="true" x="-15" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15"/>

View File

@@ -12,7 +12,7 @@
<name lang="it">Motore trifase</name>
<name lang="cs">Trojfázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text text="PE" x="23" y="28" size="5"/>

View File

@@ -14,7 +14,7 @@
<name lang="de">Drehstrom Motor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text y="-12" color="#000000" rotation="0" x="22" text="W1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Motor trifásico</name>
<name lang="cs">Trojfázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-10.25" y="18" size="18" text="M"/>

View File

@@ -12,7 +12,7 @@
<name lang="nl">DraaistroomMotor 3 fasen 6 aansluitingen</name>
<name lang="cs">Trojfázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc width="4" x="4" y="4.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" angle="-180"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Motor part winding</name>
<name lang="cs">Trojfázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<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="10" x1="-15" y2="10" x2="-26"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Motor monofásico2</name>
<name lang="cs">Jednofázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-11" y="12" size="18" text="M"/>

View File

@@ -7,7 +7,7 @@
<name lang="es">Motor mono cond.</name>
<name lang="cs">Jednofázový motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<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="-10" x1="9" y2="-10" x2="19"/>

View File

@@ -14,7 +14,7 @@
<name lang="de">Drehstrom Motor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="2" text="Z1" y="-50" color="#000000"/>

View File

@@ -6,7 +6,7 @@
<name lang="ca">Motor</name>
<name lang="cs">Motor</name>
</names>
<informations>Author: The QElectroTech team&#xd;&#xd;&#xd;&#xd;&#xd;&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-8" y="5" size="14" text="M"/>

View File

@@ -14,7 +14,7 @@
<name lang="pt">Motor trifásico</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="31" rotation="0" text="Z2" color="#000000"/>

View File

@@ -11,7 +11,7 @@
<name lang="pt">Motor trifásico PE + BRAKE</name>
<name lang="fr">Moteur triphasé PE + BRAKE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text text="W1" rotation="270" x="8" y="-9" size="5"/>

View File

@@ -11,7 +11,7 @@
<name lang="pt">Motor trifásico PE + TERM</name>
<name lang="fr">Moteur triphasé PE + TERM</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text text="PE" rotation="270" x="18" y="-11" size="5"/>

View File

@@ -11,7 +11,7 @@
<name lang="pt">Motor trifásico PE + TERM + BRAKE</name>
<name lang="fr">Moteur triphasé PE + TERM + BRAKE</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text text="W1" rotation="270" x="8" y="-9" size="5"/>

View File

@@ -10,7 +10,7 @@
<name lang="cs">Tlumivka</name>
<name lang="nl">Inductor</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<input x="14.5" y="4.3333" size="9" rotate="true" text="_" tagg="label"/>

View File

@@ -9,7 +9,7 @@
<name lang="cs">Tlumivka (indukčnost se vzduchovou mezerou)</name>
<name lang="nl">Inductor met spleet</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<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="-10" x1="7" y2="-1" x2="7"/>

View File

@@ -10,7 +10,7 @@
<name lang="cs">Optočlen</name>
<name lang="nl">Opto koppelaar</name>
</names>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect width="45" x="-23" y="-10" antialias="false" height="21" style="line-style:normal;line-weight:thin;filling:none;color:black"/>

View File

@@ -12,7 +12,7 @@
<name lang="fr">Interface optocoupleur 2</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x2="4" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="8" y1="-5" y2="-1" y3="-4" antialias="true" x3="13"/>

View File

@@ -20,7 +20,7 @@
<elementInformation show="1" name="unity"></elementInformation>
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
</elementInformations>
<informations>Author: Angelescu Constantin&#xd;
<informations>Author: Angelescu Constantin
titus0818@yahoo.com</informations>
<description>
<rect width="30" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" y="-10" height="20" rx="0" antialias="false"/>

View File

@@ -22,7 +22,7 @@
<elementInformation show="1" name="label"></elementInformation>
<elementInformation show="1" name="quantity"></elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect x="0" antialias="false" y="0" rx="2" width="100" ry="2" style="line-style:normal;line-weight:normal;filling:HTMLBlueCornflowerBlue;color:black" height="70"/>

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