Çà pourrait s'envisager de rajouter l'outil Frame dans le Widget simple qui permet d'éditer les textes indépendants "IndiTextPropertiesWidget".

Fixed.

Check your settings?
https://download.qelectrotech.org/qet/forum_img_2/hovel.png

2,729

(1 replies, posted in EN : Help, suggestions, discussions, ...)

https://qelectrotech.org/forum/viewtopi … 5640#p5640

De-Backer wrote:

14 sec windows
6sec avec Linux dans une machine virtuelle sous windows

Woah!

It would be interesting to test the launch rather with WSL2 than Virtualbox...
https://docs.microsoft.com/fr-fr/windows/wsl/wsl2-index
https://docs.microsoft.com/fr-fr/window … e-versions

Use the Linux file system for faster performance
In order to optimize for the fastest performance speed, be sure to store your project files in the Linux file system (not the Windows file system).

For example, when storing your WSL project files:

Use the Linux file system root directory: \\wsl$\Ubuntu-18.04\home\<user name>\Project
Not the Windows file system root directory: C:\Users\<user name>\Project
Project files that you are working with using a WSL distribution (like Ubuntu) must be in the Linux root file system to take advantage of faster file system access.


Increased file IO performance
File intensive operations like git clone, npm install, apt update, apt upgrade, and more are all noticeably faster with WSL 2.

The actual speed increase will depend on which app you're running and how it is interacting with the file system. Initial versions of WSL 2 run up to 20x faster compared to WSL 1 when unpacking a zipped tarball, and around 2-5x faster when using git clone, npm install and cmake on various projects.

https://stackoverflow.com/questions/128 … s-vs-linux

If you run QET and go to watch CPU monitoring, you see that Windows was not using all threads 100% .. like Linux.
Maybe use a Workaround like QThread::idealThreadCount() *1.5 ?

Hallo Achim,

thanks for your feedback but it was wanted by Joshua,  if i remember i think it was a problem for sql queries features :

https://git.tuxfamily.org/qet/qet.git/l … underscore

Grüße
Laurent

Hallo,

Maybe a workaround is to open your project file with a text editor and change these variable :
%{tension-protocol} by %{tension_protocol}
%{machine-manufacturer-reference} by %{machine_manufacturer_reference}
Make a backup before.
Grüße
Laurent

Bonjour,

dans l'éditeur de texte avancé tu click sur nettoyer le code puis dans  l'onglet source tu ajoute un tableau avec une seule cellule.
http://www.wubijacq.com/encadreruntexte/index.html

Tu as un exemple dans mon projet affuteuse.qet.

Hi, new version of qet_tb_generator plug-in fixe it.

You have search and replace util for changing in an entire project some items, like items on tittle block.
Ctrl + F to launch this util.

De-Backer wrote:

Je travaille au travail avec un i5, 8G de RAM, Win7 dessus virtualbox Win7 Qt SDK (CPU numéro 2, 2G de RAM)
(qt 5.9 je pense)

You are a lucky guy, you can go to coffee machine when waitting Windows seem's working.. nomicons/grin
https://imgs.xkcd.com/comics/compiling.png

Pour avoir essayé de coder sous Windows dernièrement, WTF !  ........ !!! tout est d'une lenteur exécrable les bibliothèques sont trrrrrrrrres longues a compiler, Qtcreator est d'une lenteur épouvantable, la compilation prend dix fois plus de temps ... meme avec un laptop I7 16 GB ...

Bref, c'est une horreur... même GIT c'est d'une lenteur ...

Un double boot Windows/Linux et une AppImage serait bien mieux.

It 's packaging work.
You build in shared mode also you need to learn windeployqt to find DLL's to put in bin folder with .exe binary.
https://doc.qt.io/qt-5/windows-deployment.html
http://renaudguezennec.eu/index.php/201 … cation-qt/

https://qelectrotech.org/wiki_new/doc/d … lectrotech

https://qelectrotech.org/wiki_new/doc/d … mande_tree

2,741

(15 replies, posted in Code)

Hmm, firefox?

2,742

(15 replies, posted in Code)

Good Morning,

Damian , I was thinking of something easier for the user but with mirror flip when selection is tranformed :
At this time selection is moved to x, y but isn't a reverse mirror.

Bonjour Gilles et merci du retour,

ça rejoint ce fil.
https://qelectrotech.org/forum/viewtopi … 860#p12860
le problème à été corrigé dans une version plus recente de la 0.8-dev.

@ Erik :
https://download.qelectrotech.org/qet/forum_img_2/Qt_install.png
https://download.qelectrotech.org/qet/forum_img_2/path.png
Install cmake (https://cmake.org/install/)
https://github.com/Kitware/CMake/releas … 64-x64.msi


Install CMAKE and chose add PATH for all users

Build ecm
Download cmake-extra-modules (https://github.com/KDE/extra-cmake-modules)

Unpack cmake-extra-modules

SET QTPATH=C:\Qt\5.12.4\mingw73_64

cd(path to ecm)

cmake -DCMAKE_INSTALL_PREFIX=%QTPATH% -G "MinGW Makefiles"
mingw32-make install

https://download.qelectrotech.org/qet/forum_img_2/ecm_cmake.png


build kcoreaddons
download an unpack tkcoreaddons (https://github.com/KDE/kcoreaddons)
cd (path to kcoreaddons)
mkdir build
cd build

cmake .. -DCMAKE_INSTALL_PREFIX=%QTPATH% -DCMAKE_PREFIX_PATH=$QTPATH -G "MinGW Makefiles" -DZLIB_LIBRARY:FILEPATH=C:\Qt\Tools\mingw730_64\x86_64-w64-mingw32\libz.a

https://download.qelectrotech.org/qet/forum_img_2/kcoreaddons.png
https://download.qelectrotech.org/qet/forum_img_2/kcoreaddons2.png

mingw32-make

https://download.qelectrotech.org/qet/forum_img_2/kcoreaddons3.png

mingw32-make install

https://download.qelectrotech.org/qet/forum_img_2/kcoreaddons4.png


build kwidgetsaddons

downloadan unpack kwidgetsaddons (https://github.com/KDE/kwidgetsaddons)

cd (path to kwidgetsaddons)
mkdir build
cd build

cmake .. -DCMAKE_INSTALL_PREFIX=%QTPATH% -DCMAKE_PREFIX_PATH=$QTPATH -G "MinGW Makefiles" -DZLIB_LIBRARY:FILEPATH=C:\Qt\Tools\mingw730_64\x86_64-w64-mingw32\libz.a

https://download.qelectrotech.org/qet/forum_img_2/kwidget.png

mingw32-make

https://download.qelectrotech.org/qet/forum_img_2/kwidget2.png

mingw32-make install

https://download.qelectrotech.org/qet/forum_img_2/kwidget3.png



https://download.qelectrotech.org/qet/forum_img_2/win_qt12.4.png

Les informations ne sont pas accessibles si on choisis le type slave, ce qui est normal, il me semble.
Pour les autres valeurs type ça fonctionne.

Effectivement les informations de l'élément ne sont plus accessibles dans l'éditeur de symboles, merci du retour.

https://qelectrotech.org/forum/viewtopi … 885#p11885

Un petit test sur ma machine Debian démontre qu'avec 42 000 symboles  dans ma collection user en plus des ~ 7000 symboles officiels le temps de lancement est inférieur à 4 secondes.. et de l'ordre de 6 a 7 secondes avec 85 000 elements dans ma collection user .. on a de la marge ... si OS linux et une bonne bécane..
~/.qet/elements$ ./count_elements.sh
42752 elements dans 6038 categories (soit 48790 fichiers)


~/.qet/elements$ ./count_elements.sh
85418 elements dans 12068 categories (soit 97486 fichiers)

mingw32-make is on C:\Qt\Tools\mingw810_64\bin\

Alors, j'ai ensuite désinstallé la V0.7 et installé la 0.8 Dev, pas gros changement.

Pas de changement?
Alors certes la 0.8-dev contient ~ 2100 symboles de plus que la 0.7 mais nous avons effectués des changements qui permettent de réduire considérablement le temps de lancement du logiciel.
Certes sous Linux le lancement prendra 1 à 2 secondes là ou sur Windows il en faudra une bonne dizaine..
La 0.8-dev est plus solide que la 0.7 et devrait moins planter sous Windows.

se qelectrotech depuis un moment et j'avais abandonné à l'utiliser, car ça plantait sans arrêt en version (0.5 ou 0.6) avec Windows.
Mais la en version 0.7 ca plante aussi et c'est lent, pour modifier ou créer un élément de la bibliothèque 2 hrs.

Le problème viendrait pas de ton Windows ou du PC, tu as remarqué des problemes similaires avec d'autres logiciels sur cette machine?

Bonjour,

tu pourrais donner les caractéristiques de ton PC Windows, CPU , RAM, etc?
Tu as essayé la version en cours de devel 0.8-dev?