Hi Luca,

I 'm thinking is maybe a wayland or Qt problem.

https://qelectrotech.org/bugtracker/view.php?id=305

Laurent

227

(29 replies, posted in Import DXF)

Kellermorph wrote:

Hi
Ich habe auch versucht im Terminal ./dxf2elmt deos600.dxf einzugeben aber bekam den Fehler Error: UnexpectedCode(90, 11).

You can share here this file: deos600.dxf?

228

(29 replies, posted in Import DXF)

@Kellermorph:
Linux 64 new dxf2elmt binary
https://qelectrotech.org/forum/viewtopi … 380#p20380

229

(3 replies, posted in FR : Aide, suggestions, discussions, ...)

https://qelectrotech.org/forum/viewtopi … 523#p19523

230

(29 replies, posted in Import DXF)

Why?
1 Download last 0.100-dev
2 If you OS is Windows get the new dxf2elmt binary archive, and extract it on QET binary folder like this vidéo:

https://qelectrotech.org/forum/viewtopi … 381#p20381
3 open your element editor in GUI and chose import an dxf..


C:\Users\"user"\Application Data\qet\binary

scorpio810 wrote:

It 's the same procedure :
1- click button "Download" to get tarball, download your OS version.
2- cick button "Installion folder"
3- paste in this folder your exe (unzip if Windows not extract it automatically)
4- click button "ok" to finish install

Now you can open menu file again and click to "import DXF" to launch new DXF import tool.

Enjoy! nomicons/wink

The folder "Application Data" is for backward compatibility,the real folder is now at a different place.

The fastest way to get to the folder is to enter "%APPDATA%" in explorer.

Else you can manually browse to  C:\Users\{Your User Name}\AppData\Roaming

https://answers.microsoft.com/en-us/win … 5152f067c1

Si c'est le même élément voir la solution proposée ici:
https://qelectrotech.org/forum/viewtopic.php?id=1932

Par contre pour que tu puisse conserver les conducteurs, l'élément doit avoir le même nombre de bornes, et c'elle ci doivent se trouver exactement à la même position. Si ces conditions ne sont pas respecté les "ancien" éléments disparaîtront.
Pour résumer tu peut modifier l'aspect graphique mais ne pas toucher au bornes.
Fait une copie de ton fichier .qet avant de faire la manipulation au cas ou quelque chose tourne mal.

https://qelectrotech.org/forum/viewtopi … 204#p11204

233

(29 replies, posted in Import DXF)

Hallo,

see: https://qelectrotech.org/forum/viewtopi … 280#p20280

234

(3 replies, posted in FR : Aide, suggestions, discussions, ...)

Did you use the Forum-Search before posting here?

Regards Laurent

235

(193 replies, posted in Import DXF)

Hello Vadoola!
Hallo plc-user!


Uniformise MessageBox, add the same type of box popup like plc-user added for QET_ElementScaler, when dxf2elmt can't convert DXF files.
Add QObjet for translate box message.

https://download.qelectrotech.org/qet/forum_img_2/dxf2elmt_error3.png
https://download.qelectrotech.org/qet/forum_img_2/dxf2elmt_error6.png

hairy_kiwi wrote:

I may not be using QET for the kind of wiring diagramming for which it was originally conceived, but I appreciate it - and all the work that goes into developing it - because I enjoy its ability to generate aesthetically pleasing output, even if a few workarounds are still required to achieve that; thanks for everything you've been working on for the QET project. nomicons/smile

Thanks for your compliments hairy_kiwi. nomicons/wink

I saw you used old version, on last 0.100-dev you have also an company collection to put your elements.

238

(193 replies, posted in Import DXF)

Thanks you for your commit nomicons/wink

239

(193 replies, posted in Import DXF)

Hallo plc-user

great nomicons/smile

240

(193 replies, posted in Import DXF)

I have this patch, show the real error but also an empty widget when convert is ok... humm what do you think?

--- sources/dxf/dxftoelmt.cpp
+++ sources/dxf/dxftoelmt.cpp
@@ -23,6 +23,8 @@
#include <QMessageBox>
#include <QDir>
#include <QDebug>
+#include <QTextBrowser>
+#include <QProcess>
 
/**
  * @brief dxftoElmt
@@ -39,28 +41,31 @@ QByteArray dxfToElmt(const QString &file_path)
         return QByteArray();
     }
 
-    QProcess process_;
+        auto process = new QProcess;
+        auto view = new QTextBrowser;
+       
+       
+        QObject::connect(process, &QProcess::readyReadStandardError, [process,view]() {
+            auto output=process->readAllStandardError().data();
+            view->append(output);
+        });
+       
         const QString program{dxf2ElmtBinaryPath()};
         const QStringList arguments{file_path, QStringLiteral("-v")};
 
-    process_.start(program, arguments);
-    // qInfo()<<"\n Start converting DXF file..........\n"<< file_path;
-     //qInfo()<< process_.readAllStandardError().data(); //Print standard error to log file
+        process->start(program, arguments);
 
-    if (process_.waitForFinished())
-    {
-        bool dxf2elmterr = process_.readAllStandardError().isEmpty();
-        QString message=QObject::tr(
-        "Error: Make sure the file is a valid .dxf file");
-       
-        if (!dxf2elmterr){
-        QMessageBox::warning(nullptr,
-                     QObject::tr("Error: to convert this dxf file."),
-                     message);
-        }
+        process->setProcessChannelMode(QProcess::MergedChannels);
+   
+        process->waitForStarted();
+        qDebug() << process->error();
+        view->show();
 
-            const auto byte_array{process_.readAll()};
-            process_.close();
+   
+    if (process->waitForFinished())
+    {
+            const auto byte_array{process->readAll()};
+            process->close();
             return byte_array;
     }
     else



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

241

(193 replies, posted in Import DXF)

Hello Vadoola!
Hallo plc-user!

Now the program return a messageBox to inform users if dxf2elmt can't convert DXF files, but I loose QInfo() information about the errors in logs files... which is a bit of a shame, unless you do run dxf2elmt in a CLI terminal to read the convertion error!
if someone can help?


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


--- sources/dxf/dxftoelmt.cpp
+++ sources/dxf/dxftoelmt.cpp
@@ -22,7 +22,6 @@
#include <QProcess>
#include <QMessageBox>
#include <QDir>
-#include <iostream>
#include <QDebug>
 
/**
@@ -45,11 +44,20 @@ QByteArray dxfToElmt(const QString &file_path)
     const QStringList arguments{file_path, QStringLiteral("-v")};
 
     process_.start(program, arguments);
+    // qInfo()<<"\n Start converting DXF file..........\n"<< file_path;
+    // qInfo()<< process_.readAllStandardError(); //Print standard error to log file
 
     if (process_.waitForFinished())
     {
-        qInfo()<<"\n Start converting DXF file..........\n"<< file_path;
-        qInfo()<< process_.readAllStandardError().data(); //Print standard error to log file
+        bool dxf2elmterr = process_.readAllStandardError().isEmpty();
+        QString message=QObject::tr(
+        "Error: Make sure the file is a valid .dxf file");
+       
+        if (!dxf2elmterr){
+        QMessageBox::warning(nullptr,
+                     QObject::tr("Error: to convert this dxf file."),
+                     message);
+        }
 
             const auto byte_array{process_.readAll()};
             process_.close();

FYI, these elements isn't used in electric diagram on France!

243

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

Yes, you can lock the text colour for newly created conductors in the project properties, but bear in mind that if you connect another connector to it that has another wire of a different colour you'll have to make a choice!

Laurent

Hallo plc-user

FYI, the joedavenportjd25 message contained a hidden URL, so I deleted the spammer..

245

(117 replies, posted in Code)

https://www.basyskom.de/translating-qt-applications/

https://qelectrotech.org/forum/viewtopi … 910#p16910

Bonjour Gilbert,

moi je les conserverai.

D'autres font autrement

249

(193 replies, posted in Import DXF)

Hello Vadoola!
Hallo plc-user!


dxftoelmt: add Print standard error and filepath name to the log files when launching program on QET element editor.
users shouldn't wait an hour in front of his element editor screen, but just look at the QET logs a minute later if nothing happens...

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

250

(193 replies, posted in Import DXF)

macOS Apple silicon arm64 binary