mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 05:00:33 +01:00
Fix indentation code
This commit is contained in:
@@ -406,16 +406,16 @@ void QETDiagramEditor::setUpActions()
|
|||||||
m_project_terminalBloc = new QAction(QET::Icons::TerminalStrip, tr("Lancer le plugin de création de borniers"), this);
|
m_project_terminalBloc = new QAction(QET::Icons::TerminalStrip, tr("Lancer le plugin de création de borniers"), this);
|
||||||
connect(m_project_terminalBloc, &QAction::triggered, this, &QETDiagramEditor::generateTerminalBlock);
|
connect(m_project_terminalBloc, &QAction::triggered, this, &QETDiagramEditor::generateTerminalBlock);
|
||||||
|
|
||||||
//Export conductor num to csv
|
//Export conductor num to csv
|
||||||
m_project_export_conductor_num = new QAction(QET::Icons::DocumentSpreadsheet, tr("Exporter la liste des noms de conducteurs"), this);
|
m_project_export_conductor_num = new QAction(QET::Icons::DocumentSpreadsheet, tr("Exporter la liste des noms de conducteurs"), this);
|
||||||
connect(m_project_export_conductor_num, &QAction::triggered, [this]() {
|
connect(m_project_export_conductor_num, &QAction::triggered, [this]() {
|
||||||
QETProject *project = this->currentProject();
|
QETProject *project = this->currentProject();
|
||||||
if (project)
|
if (project)
|
||||||
{
|
{
|
||||||
ConductorNumExport wne(project, this);
|
ConductorNumExport wne(project, this);
|
||||||
wne.toCsv();
|
wne.toCsv();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
m_export_project_db = new QAction(QET::Icons::DocumentSpreadsheet, tr("Exporter la base de donnée interne du projet"), this);
|
m_export_project_db = new QAction(QET::Icons::DocumentSpreadsheet, tr("Exporter la base de donnée interne du projet"), this);
|
||||||
connect(m_export_project_db, &QAction::triggered, [this]() {
|
connect(m_export_project_db, &QAction::triggered, [this]() {
|
||||||
@@ -1392,7 +1392,7 @@ void QETDiagramEditor::selectionGroupTriggered(QAction *action)
|
|||||||
dv->editSelection();
|
dv->editSelection();
|
||||||
else if (value == "group_selected_texts")
|
else if (value == "group_selected_texts")
|
||||||
{
|
{
|
||||||
QList<DynamicElementTextItem *> deti_list = dc.m_element_texts.values();
|
QList<DynamicElementTextItem *> deti_list = dc.m_element_texts.values();
|
||||||
if(deti_list.size() <= 1)
|
if(deti_list.size() <= 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -1439,8 +1439,8 @@ void QETDiagramEditor::slot_updateActions()
|
|||||||
m_close_file -> setEnabled(opened_project);
|
m_close_file -> setEnabled(opened_project);
|
||||||
m_save_file -> setEnabled(opened_project);
|
m_save_file -> setEnabled(opened_project);
|
||||||
m_save_file_as -> setEnabled(opened_project);
|
m_save_file_as -> setEnabled(opened_project);
|
||||||
m_project_edit_properties->setEnabled(opened_project);
|
m_project_edit_properties->setEnabled(opened_project);
|
||||||
m_project_export_conductor_num->setEnabled(opened_project);
|
m_project_export_conductor_num->setEnabled(opened_project);
|
||||||
//prj_terminalBloc -> setEnabled(opened_project);
|
//prj_terminalBloc -> setEnabled(opened_project);
|
||||||
m_rotate_texts -> setEnabled(editable_project);
|
m_rotate_texts -> setEnabled(editable_project);
|
||||||
m_project_add_diagram -> setEnabled(editable_project);
|
m_project_add_diagram -> setEnabled(editable_project);
|
||||||
@@ -1536,8 +1536,8 @@ void QETDiagramEditor::slot_updateComplexActions()
|
|||||||
int selected_dynamic_elmt_text = 0; for(DiagramTextItem *dti : texts) {if(dti->type() == DynamicElementTextItem::Type) selected_dynamic_elmt_text++;}
|
int selected_dynamic_elmt_text = 0; for(DiagramTextItem *dti : texts) {if(dti->type() == DynamicElementTextItem::Type) selected_dynamic_elmt_text++;}
|
||||||
m_rotate_texts->setEnabled(!ro && (selected_texts || groups.size()));
|
m_rotate_texts->setEnabled(!ro && (selected_texts || groups.size()));
|
||||||
|
|
||||||
//Action that need only element text selected
|
//Action that need only element text selected
|
||||||
QList<DynamicElementTextItem *> deti_list = dc.m_element_texts.values();
|
QList<DynamicElementTextItem *> deti_list = dc.m_element_texts.values();
|
||||||
if(deti_list.size() > 1 && dc.count() == deti_list.count())
|
if(deti_list.size() > 1 && dc.count() == deti_list.count())
|
||||||
{
|
{
|
||||||
Element *elmt = deti_list.first()->parentElement();
|
Element *elmt = deti_list.first()->parentElement();
|
||||||
@@ -1587,7 +1587,7 @@ void QETDiagramEditor::slot_updateComplexActions()
|
|||||||
else if (selected_conductors_count)
|
else if (selected_conductors_count)
|
||||||
{
|
{
|
||||||
m_edit_selection -> setText(tr("Éditer le conducteur", "edit conductor"));
|
m_edit_selection -> setText(tr("Éditer le conducteur", "edit conductor"));
|
||||||
m_edit_selection -> setIcon(QET::Icons::ConductorEdit);
|
m_edit_selection -> setIcon(QET::Icons::ConductorEdit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//not an editable item
|
//not an editable item
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ class QETDiagramEditor : public QETMainWindow
|
|||||||
QAction *m_add_nomenclature; ///< Add nomenclature graphics item;
|
QAction *m_add_nomenclature; ///< Add nomenclature graphics item;
|
||||||
QAction *m_add_summary; ///<Add summary graphics item
|
QAction *m_add_summary; ///<Add summary graphics item
|
||||||
QAction *m_project_terminalBloc; ///< generate terminal block
|
QAction *m_project_terminalBloc; ///< generate terminal block
|
||||||
QAction *m_project_export_conductor_num; ///<Export the wire num to csv
|
QAction *m_project_export_conductor_num; ///<Export the wire num to csv
|
||||||
QAction *m_export_project_db; ///Export to file the internal database of the current project
|
QAction *m_export_project_db; ///Export to file the internal database of the current project
|
||||||
QAction *m_tile_window; ///< Show MDI subwindows as tile
|
QAction *m_tile_window; ///< Show MDI subwindows as tile
|
||||||
QAction *m_cascade_window; ///< Show MDI subwindows as cascade
|
QAction *m_cascade_window; ///< Show MDI subwindows as cascade
|
||||||
|
|||||||
Reference in New Issue
Block a user