Pas pour l'instant et personne ne s'en ai plain jusqu'a présent.
3,826 2019-08-28 15:12:05
Re: Taille impression et taille zone de travail (11 replies, posted in FR : Aide, suggestions, discussions, ...)
3,827 2019-08-28 15:08:58
Re: Displaced terminal pins (8 replies, posted in EN : Help, suggestions, discussions, ...)
Hi,
interesting, thanks for your feed back.
You have UHD (4K) screens in your config?
3,828 2019-08-28 06:38:29
Re: Impossible to scroll page tabs (left-right) on Mac and how to compile (60 replies, posted in Code)
Unfortunately, we have no one who is familiar with the macos environment as well as C ++ / Qt to help us improve the software on this platform.
We do what we can with our Linux virtual machines. and not time..
3,829 2019-08-28 06:31:08
Re: Displaced terminal pins (8 replies, posted in EN : Help, suggestions, discussions, ...)
Hello Rajamodol,
thanks for this informations that can be help us.
It seems that some people only have problems under Windows (10 ?) with several screens, but we have no information on the configurations and type of these screens.
Here on my Debian Sid with 2 X 27" screens one in 4K (3840 * 2160) and other in 2K (1920*1080) I saw no problem.
Is maybe a MS Windows 10 problem, I don't know?
3,830 2019-08-28 06:14:09
Re: Impossible to scroll page tabs (left-right) on Mac and how to compile (60 replies, posted in Code)
I use https://github.com/KDE-mac/homebrew-kde for KWidgetsAddons KCoreAddons libs.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap kde-mac/kde
brew install kde-mac/kde/kf5-karchive
brew install kde-mac/kde/kf5-kwidgetsaddons
brew install kde-mac/kde/kf5-kcoreaddons
3,831 2019-08-27 20:13:04
Re: Impossible to scroll page tabs (left-right) on Mac and how to compile (60 replies, posted in Code)
If you have Qt 5 installed or know a liitle C++/Qt you can try to add Fusion style for macOS in qetapp.cpp
Like this :
p, li { white-space: pre-wrap; }
/**
Autodetec Windows style
@param Windows style
*/
#if defined(Q_OS_WIN) && defined(Q_OS_WINCE)
if defined(Q_OS_WIN)
if ((QSysInfo::WindowsVersion >= QSysInfo::WV_VISTA
&& QSysInfo::WindowsVersion < QSysInfo::WV_NT_based))
style = QLatin1String("WindowsVista");
else if ((QSysInfo::WindowsVersion >= QSysInfo::WV_XP
&& QSysInfo::WindowsVersion < QSysInfo::WV_NT_based))
style = QLatin1String("WindowsXP");
else
style = QLatin1String("Windows"); // default styles for Windows
#endif
3,832 2019-08-27 18:57:27
Re: Impossible to scroll page tabs (left-right) on Mac and how to compile (60 replies, posted in Code)
Seem's like this :
https://forum.qt.io/topic/94574/how-to- … -for-mac/5
Maybe add for macOS style ("macintosh, or fusion") in code.
https://doc.qt.io/qt-5/qtabbar.html
See : A truncated tab bar shown in the Fusion widget style.
3,833 2019-08-26 19:26:51
Re: Taille impression et taille zone de travail (11 replies, posted in FR : Aide, suggestions, discussions, ...)
3,834 2019-08-26 19:16:44
Re: Taille impression et taille zone de travail (11 replies, posted in FR : Aide, suggestions, discussions, ...)
Ton fichier semble en aperçu bien passer ici en impression A4, par contre les remplissages de zones avec des motifs faut y aller mollo car ça peut rendre différemment une fois imprimé.
3,835 2019-08-26 19:07:28
Re: Liste dernier projet (2 replies, posted in FR : Aide, suggestions, discussions, ...)
Bonsoir,
de mémoire c'est les fichiers enregistrés qui remplissent la liste.
3,836 2019-08-26 14:23:11
Re: Comment supprimer un backup "fantôme" ? (8 replies, posted in FR : Aide, suggestions, discussions, ...)
Salut Nuri,
rien qui correspond a ton projet11 dans ton $/.local/share/stalefiles/QElectroTech/ ?
3,837 2019-08-26 14:10:44
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
3,838 2019-08-26 13:29:24
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
You can try it now, all packages on all platforms are availables.
3,839 2019-08-26 12:40:53
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
@Plc-user,
added.
https://git.tuxfamily.org/qet/qet.git/c … ee97c7f633
3,840 2019-08-26 11:15:29
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Do you think it is possible to use for example <Ctrl> or <Shift> together
with the Cursor-Keys to reduce the step-size to 0.1 ?
Is a problem if directly Cursor-Keys reduce the step-size to 0.1 whitout <Ctrl> or <Shift> keys?
With the mouse you move elements by 10 points or by 1 point with <Ctrl>.
--- sources/editor/elementscene.cpp
+++ sources/editor/elementscene.cpp
@@ -213,13 +214,13 @@ void ElementScene::keyPressEvent(QKeyEvent *event)
QPointF p = qgo->pos();
int k = event->key();
if(k == Qt::Key_Right)
- p.rx() += 1;
+ p.rx() += 0.1;
else if (k == Qt::Key_Left)
- p.rx() -= 1;
+ p.rx() -= 0.1;
else if (k == Qt::Key_Up)
- p.ry() -= 1;
+ p.ry() -= 0.1;
else if (k == Qt::Key_Down)
- p.ry() += 1;
+ p.ry() += 0.1;
qgo->setPos(p);
QPropertyUndoCommand *undo = new QPropertyUndoCommand(qgo, "pos", QVariant(original_pos), QVariant(p));
3,841 2019-08-25 20:18:30
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
3,842 2019-08-25 13:07:35
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Plc-user,
Another one: Is it possible to show the coordinates of the mouse-pointer?
Good idea. ;-)
3,843 2019-08-25 12:53:31
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Plc-user,
many thanks for sharing your elements.
I just commit it to GIT, Wago directory needs to be reorganized a bit, if it interests someone to work on it.
https://git.tuxfamily.org/qet/qet.git/c … a830d3ac9d
Cheers,
Laurent
3,844 2019-08-24 20:34:53
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Plc-user,
I extracted your Wago elements and not seeing any different like some Wago elements in official collection :
https://git.tuxfamily.org/qet/qet.git/t … icles/wago
Cheers
Laurent
3,845 2019-08-24 20:25:53
Re: Neue Funktion im Element-Editor? (15 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo,
right click on polygon for add or delete point, if I understand your Google translated question well.
https://git.tuxfamily.org/qet/qet.git/c … 5baf5aa117
3,846 2019-08-24 18:31:31
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
@Plc-user,
is new Wago elements?
I can add these in collection?
Laurent
3,847 2019-08-24 18:29:53
Re: Project incorrectly marked [changed] and unsolicited saved (2 replies, posted in EN : Help, suggestions, discussions, ...)
2. You could disable backup copy in settings.
Very strange ! 0.80 version has for now only folio list position added in code.
GIT log sources histroy : https://git.tuxfamily.org/qet/qet.git/log/sources
3,848 2019-08-24 11:33:33
Re: Nouveautés de la version de développement 0.8 (317 replies, posted in News)
QTabBar::tab:selected { font: bold; color: green; }
3,849 2019-08-23 20:22:59
Re: [HELP] - Element Editor Unavailable (8 replies, posted in EN : Help, suggestions, discussions, ...)
Haroldo,
thanks for your feedback.
.
QET save window editors geometry in config, under Windows is stored on Regedit.
But when you uninstall QET this key isn't removed on Regedit.
You can delete in Regedit HKEY_CURRENT_USER\Software\QElectroTech\
Example here under Linux is only a text file :
[diagrameditor]
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\x1\0\0\n\xb6\0\0\x5\xd7\0\0\0\0\0\0\0\x14\0\0\a#\0\0\x4\x17\0\0\0\0\x2\0\0\0\n\xb7)
state="@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x1\0\0\0\0\0\0\x1i\0\0\x5`\xfc\x2\0\0\0\x2\xfb\0\0\0J\0\x64\0i\0\x61\0g\0r\0\x61\0m\0_\0p\0r\0o\0p\0\x65\0r\0t\0i\0\x65\0s\0_\0\x65\0\x64\0i\0t\0o\0r\0_\0\x64\0o\0\x63\0k\0_\0w\0i\0\x64\0g\0\x65\0t\x1\0\0\0\x44\0\0\0\"\0\0\0\"\0\0\0\"\xfc\0\0\0g\0\0\x5=\0\0\0\xde\x1\0\0\x1b\xfa\0\0\0\x1\x2\0\0\0\x4\xfb\0\0\0.\0\x41\0u\0t\0o\0N\0u\0m\0\x62\0\x65\0r\0i\0n\0g\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\xc2\x1\0\0\x3\xfb\0\0\0\x34\0\x65\0l\0\x65\0m\0\x65\0n\0t\0s\0_\0\x63\0o\0l\0l\0\x65\0\x63\0t\0i\0o\0n\0_\0w\0i\0\x64\0g\0\x65\0t\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\xa8\x1\0\0\x3\xfb\0\0\0\x18\0\x64\0i\0\x61\0g\0r\0\x61\0m\0_\0u\0n\0\x64\0o\x1\0\0\0\0\xff\xff\xff\xff\0\0\0v\x1\0\0\x3\xfb\0\0\0\x1c\0p\0r\0o\0j\0\x65\0\x63\0t\0s\0 \0p\0\x61\0n\0\x65\0l\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\x96\x1\0\0\x3\0\0\tM\0\0\x5`\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\x1\0\0\0\x2\0\0\0\x5\0\0\0\xe\0t\0o\0o\0l\0\x62\0\x61\0r\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\xe\0\x64\0i\0s\0p\0l\0\x61\0y\x1\0\0\x1\xe0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\xe\0\x64\0i\0\x61\0g\0r\0\x61\0m\x1\0\0\x2\xec\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\f\0\x61\0\x64\0\x64\0i\0n\0g\x1\0\0\x3`\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0*\0\x64\0i\0\x61\0g\0r\0\x61\0m\0_\0\x64\0\x65\0p\0t\0h\0_\0t\0o\0o\0l\0\x62\0\x61\0r\x1\0\0\x4:\xff\xff\xff\xff\0\0\0\0\0\0\0\0)"
viewmode=tabbed
zoom-out-beyond-of-folio=false
etc
[elementeditor]
default-informations=
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\x1\0\0\n\xb6\0\0\x5\xd7\0\0\0\0\0\0\0\x14\0\0\x2\x8d\0\0\x1\xa1\0\0\0\0\x2\0\0\0\n\xb7)
state=@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x1\0\0\0\x1\0\0\x1\xa8\0\0\x5`\xfc\x2\0\0\0\x2\xfb\0\0\0\x18\0i\0n\0\x66\0o\0r\0m\0\x61\0t\0i\0o\0n\0s\x1\0\0\0\x44\0\0\x1\xb8\0\0\0\x34\x1\0\0\x3\xfc\0\0\x1\xfd\0\0\x3\xa7\0\0\0\x92\x1\0\0\x1b\xfa\0\0\0\x1\x2\0\0\0\x2\xfb\0\0\0\b\0u\0n\0\x64\0o\x1\0\0\0\0\xff\xff\xff\xff\0\0\0v\x1\0\0\x3\xfb\0\0\0\x14\0p\0\x61\0r\0t\0s\0_\0l\0i\0s\0t\x1\0\0\0\0\xff\xff\xff\xff\0\0\0v\x1\0\0\x3\0\0\b\xe8\0\0\x5`\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\x2\0\0\0\0\0\0\0\x1\0\0\0\n\0p\0\x61\0r\0t\0s\x3\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\x2\0\0\0\x4\0\0\0\x1a\0\x64\0\x65\0p\0t\0h\0_\0t\0o\0o\0l\0\x62\0\x61\0r\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\x18\0m\0\x61\0i\0n\0_\0t\0o\0o\0l\0\x62\0\x61\0r\x1\0\0\0\x96\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\xe\0\x64\0i\0s\0p\0l\0\x61\0y\x1\0\0\x1\xc4\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\x1e\0\x65\0l\0\x65\0m\0\x65\0n\0t\0_\0t\0o\0o\0l\0\x62\0\x61\0r\x1\0\0\x2\x16\xff\xff\xff\xff\0\0\0\0\0\0\0\0)
etc
3,850 2019-08-23 17:25:16
Re: [HELP] - Element Editor Unavailable (8 replies, posted in EN : Help, suggestions, discussions, ...)
Hi Haroldo,
A new Qelectrotech Icon for the editing window appears on the system tray bar but the windows "don't appear"
Very strange, you can't switch to editor with ALT -TAB shortcuts?
Have you tried to delete QET config keys in regedit, if the version is installer?
Is the installer, or ReadyToUse version?
