3,801 2019-08-19 07:40:13
Re: Kennzeichnung der Betriebsmittel (BMK) (10 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
3,802 2019-08-19 07:21:35
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
What do you prefer ?
1 = first postion
2 = second position
3 = 3 position etc,
0 = always in last position
--- sources/projectview.cpp
+++ sources/projectview.cpp
@@ -363,7 +363,7 @@ void ProjectView::addNewDiagram() {
void ProjectView::addNewDiagramFolioList() {
if (m_project -> isReadOnly()) return;
QSettings settings;
- int i = (settings.value("projectview/foliolist_position").toInt()); //< Each new diagram is added to the end of the project.
+ int i = (settings.value("projectview/foliolist_position").toInt() -1); //< Each new diagram is added to the end of the project.
//< We use @i to move the folio list at second position in the project
foreach (Diagram *d, m_project -> addNewDiagramFolioList()) {
DiagramView *new_diagram_view = new DiagramView(d);
@@ -885,7 +885,7 @@ void ProjectView::loadDiagrams()
// If project have the folios list, move it at the beginning of the project
if (m_project -> getFolioSheetsQuantity()) {
for (int i = 0; i < m_project->getFolioSheetsQuantity(); i++)
- m_tab -> tabBar() -> moveTab(diagram_views().size()-1, + (settings.value("projectview/foliolist_position").toInt()));
+ m_tab -> tabBar() -> moveTab(diagram_views().size()-1, + (settings.value("projectview/foliolist_position").toInt() -1));
m_project->setModified(false);
}
}
--- sources/ui/configpage/generalconfigurationpage.cpp
+++ sources/ui/configpage/generalconfigurationpage.cpp
@@ -55,7 +55,7 @@ GeneralConfigurationPage::GeneralConfigurationPage(QWidget *parent) :
ui->m_export_terminal->setChecked(settings.value("nomenclature-exportlist", true).toBool());
ui->m_border_0->setChecked(settings.value("border-columns_0", false).toBool());
ui->m_autosave_sb->setValue(settings.value("diagrameditor/autosave-interval", 0).toInt());
- ui->m_foliolist_sb->setValue(settings.value("projectview/foliolist_position", 1).toInt());
+ ui->m_foliolist_sb->setValue(settings.value("projectview/foliolist_position", 2).toInt());
QString fontInfos = settings.value("diagramitemfont").toString() + " " +
settings.value("diagramitemsize").toString() + " (" +
3,803 2019-08-18 21:00:46
Re: Kennzeichnung der Betriebsmittel (BMK) (10 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Like this?
With "%prefix%sequ_1-%M%LM" autonum rule.
3,804 2019-08-18 20:48:51
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
@Plc-user,
Properties for PLC modules are planned, but we have not yet studied or established specifications.
Joshua, the main developer want create new terminal function and terminal block generator before.
3,805 2019-08-18 20:33:19
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
Not easy to understand numbering but work very well: 1=second position.
Like PLC (index 0 is the first digit).
Maybe, make a signal when user change spinbox value connected to slots : rebuildDiagramsMap(); updateAllTabsTitle();
I could have done it, the methods already exist in the code, but I do not want the projects to be notified modify without a modification of the user.
3,806 2019-08-18 14:35:20
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Thank you for your answer in English.
In principle the wires retain their potentials when they are connected to the same terminals.
Otherwise, I may proceed differently by drawing several overlapping modules with different properties.
I can not put more examples, but these screenshots can give you ideas. Ps, I removed company tittleblock in this confidential screenshots authors not want I provide these projects..
3,807 2019-08-18 13:27:18
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Maybe I don't understand well your question?
Maybe this video might interest you and give you ideas...?
3,808 2019-08-18 12:18:13
Re: Verbindungen innerhalb eines Bauteils (40 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
3,809 2019-08-18 11:11:39
Re: Dynamisches Textfeld verschiebt sich beim Doppelklick (2 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo,
one click for select dynamic text, focused text is selected on widget and you can edit it without moving anything with mouse.
3,810 2019-08-18 09:09:48
Re: Website link is wrong (1 replies, posted in EN : Help, suggestions, discussions, ...)
Thanks Giovanni,
fixed typo.
Cheers.
3,811 2019-08-17 22:01:59
Re: Änderungen übernehmen nicht möglich (3 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo,
you must enter the start digit for the increment and validate the rule.
3,812 2019-08-17 14:18:37
Topic: Nouveautés de la version de développement 0.8 (317 replies, posted in News)
Hello all,
for Debian/ubuntu users which use QET PPA, or repository and if you want the latest version 0.8-dev, please change your pinning :
sudo sed -i 's/'"version 0.70.*"'/'"version 0.80.*"'/' /etc/apt/preferences.d/40qelectrotech-devel
3,813 2019-08-17 14:13:33
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
I understand now it is hard coded in the software to move the 'list of folios' always to be the second sheet in the project, but I don't understand why.
In principle we put in first folio the cover page of project.
3,814 2019-08-17 12:40:05
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
https://git.tuxfamily.org/qet/qet.git/c … 61baa20b23
Is a quickly patch, but work, maybe be improved in future.
0 for first position
1 for second position
99999 always in the end , btw if you add more folio after, summary pages is always at the end when you reload project.
Cheers.
3,815 2019-08-15 16:06:43
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
Folio summary pages is generated on the fly if project contain in XML a folioSheetQuantity="x" >= 1 page number variable.
We only store the number for follio summary page in the XML not the definition of pages and sheets values.
A this , I rest and enjoy the sea beach and sun.
I look this in à next weeks if I can add a menu in setting for user, but Joshua want to recode this summary pages in future.
3,816 2019-08-14 20:14:29
Re: feature set xref slave position (29 replies, posted in Code)
Hello Stromie,
you could sync your repository to QET mirror and make a Pull request, thanks.
3,817 2019-08-14 17:12:18
Re: List of Folios always on 2nd page (14 replies, posted in EN : Help, suggestions, discussions, ...)
Hello Arjan,
Folio list is hard coded to be always in second position.
look this :
https://qelectrotech.org/forum/viewtopi … 245#p10245
3,818 2019-08-13 15:37:05
Re: Gestion des variables et arboresence des folios (2 replies, posted in FR : Aide, suggestions, discussions, ...)
Bonjour Naheulf,
et merci pour ton résumé sur les différentes variables.
Jusqu’à présent QET n'a pas de gestion de dossier, sous dossier au sein de l' architecture d'un projet.
On peut toutefois y palier avec des variables.
Le fichier projet est un simple fichier XML définissant la structure et le contenant des folios, les images et éléments embarqués, nous pensons modifier cela dans l'avenir non plus avec un simple fichier, mais une archive contenant les images, PDF, etc, la définition du projet par un ou plusieurs XML, dans ce cas il pourrait être possible de composer un projet façon Eplan avec dossiers et sous dossiers.
3,819 2019-08-12 13:18:56
Re: Financement nouvelle machine de build (23 replies, posted in News)
Thanks Nicolas
3,820 2019-08-11 14:31:34
Re: Inhaltsverzeichnis an das Ende verschieben (5 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo,
what your OS?, if Windows look this howto :
3,821 2019-08-08 17:43:48
Re: QElectroTech version 0.7 released (6 replies, posted in News)
Create manually the file 40qelectrotech-devel in /etc/apt/preferences.d/ and add these 3 lines:
Package: qelectrotech*
Pin: version 0.70.*
Pin-Priority: 1001
sudo apt update
3,822 2019-08-08 13:30:43
Re: problème impression avec la version 0.7.0 (36 replies, posted in FR : Aide, suggestions, discussions, ...)
snap refresh exemple :
laurent@debian:~$ snap refresh
All snaps up to date.
laurent@debian:~$ snap info qelectrotech
name: qelectrotech
summary: Electrical diagram editor
publisher: laurent trinques (scorpio)
contact: https://qelectrotech.org/forum/index.php
license: GPL-2.0
description: |
QElectroTech is a Qt5 application to design electric diagrams.
It uses XML files for elements and diagrams, and includes both a diagram
editor, an element editor, and a titleblock editor.
commands:
- qelectrotech.dxf-to-qet
- qelectrotech
- qelectrotech.qet-tb-generator
snap-id: CEFA0rCgrd6XZ1w9fX4mZzE8jrbR7y6n
tracking: edge
refresh-date: today at 01:32 CEST
channels:
stable: 0.7.0+git2.ccc43c816 2019-07-17 (78) 121MB -
candidate: 0.70-RC2~svn5945 2019-06-26 (18) 122MB -
beta: ↑
edge: 0.8-dev-2-g603824aab 2019-08-07 (138) 121MB -
installed: 0.8-dev-2-g603824aab (138) 121MB -
3,823 2019-08-08 12:57:17
Re: problème impression avec la version 0.7.0 (36 replies, posted in FR : Aide, suggestions, discussions, ...)
Cool, merci du retour.
encore une petite question qu'est ce que "Nouvelle build :
latest/edge 0.8+gitdev.1.86e658692 Today" ?
Juste pour te dire qu'on avait fait des changements de notre coté sur le paquet Snap pour l'impression et donc forcé le cron de construction du paquet pour qu'un paquet soit disponible rapidement.
3,824 2019-08-08 10:53:19
Re: Summary page layout (1 replies, posted in EN : Help, suggestions, discussions, ...)
Hi,
you can only change text fonts and titleblock, for now the only way to change the layout of these page is to hack source code.
https://git.tuxfamily.org/qet/qet.git/t … iolist.cpp
3,825 2019-08-07 13:55:21
Re: problème impression avec la version 0.7.0 (36 replies, posted in FR : Aide, suggestions, discussions, ...)
Nouvelle build :
latest/edge 0.8+gitdev.1.86e658692 Today
