✨ feat(MainWindow.py): add functionality to export advanced data to a text file 🚀 feat(MainWindow.py): add button to export advanced data to a text file 🚀 feat(MainWindow.ui): update labels for Volume and Surface to include units The keys in the dict returned by the get_advanced_data function were updated to be more descriptive. The export_advanced_data function was added to the MainWindow class to allow the user to export the advanced data to a text file. A button was added to the GUI to allow the user to export the advanced data. The labels for Volume and Surface were updated to include the units of measurement. 🎨 style(UI_MainWindow.py): rename tab_5 to parameters and tab_6 to values for better semantics The names of the tabs have been changed to better reflect their contents. The tab previously named tab_5 is now named parameters, and the tab previously named tab_6 is now named values. This improves the readability and maintainability of the code. 🎨 style(UI_MainWindow.py): rename tab_6 to values and tab to graph_pane_1, tab_2 to graph_pane_2, tab_3 to graph_pane_3, and tab_4 to graph_pane_4 for better semantics This commit only renames the tabs in the UI_MainWindow.py file to improve the semantics of the code. The tab_6 is renamed to values, and tab, tab_2, tab_3, and tab_4 are renamed to graph_pane_1, graph_pane_2, graph_pane_3, and graph_pane_4, respectively. 🔨 refactor(UI_MainWindow.py): update labels for volume and surface to include units The labels for volume and surface have been updated to include the units of measurement in millimeters. The tab names for the settings and graph panes have also been updated to improve readability and consistency with the naming conventions. 🔨 refactor(AdvancedDataWorker.py): update keys in the dict returned by the function to be more explicit 🔨 refactor(position_manipulation.py): remove unnecessary computation of the center of gravity in the verticalise function The keys in the dict returned by the AdvancedDataWorker function have been updated to be more explicit. The keys 'Volume' and 'Surface' have been updated to 'Volume en mm3' and 'Surface en mm2' respectively to indicate the units of measurement. In the position_manipulation.py file, the computation of the center of gravity in the verticalise function was unnecessary and has been removed to improve performance.
902 lines
33 KiB
XML
902 lines
33 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<ui version="4.0">
|
||
<class>MainWindow</class>
|
||
<widget class="QMainWindow" name="MainWindow">
|
||
<property name="geometry">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1419</width>
|
||
<height>842</height>
|
||
</rect>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string>Analyse Morphologique</string>
|
||
</property>
|
||
<widget class="QWidget" name="centralwidget">
|
||
<layout class="QGridLayout" name="gridLayout">
|
||
<item row="1" column="0">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||
<item>
|
||
<widget class="QWidget" name="MainSettings" native="true">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>518</width>
|
||
<height>794</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>518</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_2">
|
||
<item row="1" column="0">
|
||
<widget class="QTabWidget" name="SettingsTab">
|
||
<property name="currentIndex">
|
||
<number>0</number>
|
||
</property>
|
||
<widget class="QWidget" name="parameters">
|
||
<attribute name="title">
|
||
<string>Parametres</string>
|
||
</attribute>
|
||
<layout class="QGridLayout" name="gridLayout_14">
|
||
<item row="0" column="0">
|
||
<layout class="QVBoxLayout" name="MainSettingsLayout">
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||
<item>
|
||
<widget class="QLabel" name="input_file_label">
|
||
<property name="text">
|
||
<string>Chemin du fichier .obj</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="input_file_choose_btn">
|
||
<property name="text">
|
||
<string>Choisir le fichier</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item>
|
||
<widget class="QPlainTextEdit" name="input_file_path"/>
|
||
</item>
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||
<item>
|
||
<widget class="QLabel" name="output_folder_label">
|
||
<property name="text">
|
||
<string>Repertoire de sortie</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="output_folder_choose_btn">
|
||
<property name="text">
|
||
<string>Choisir le repertoire</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item>
|
||
<widget class="QPlainTextEdit" name="output_folder_path"/>
|
||
</item>
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||
<item>
|
||
<widget class="QLabel" name="output_file_prefix_label">
|
||
<property name="text">
|
||
<string>Préfix du fichier de sortie</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLineEdit" name="output_file_prefix"/>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item alignment="Qt::AlignHCenter">
|
||
<widget class="QLabel" name="discretisation_label">
|
||
<property name="text">
|
||
<string>Discretisation (en mm)</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QDoubleSpinBox" name="discretisation_value_selector">
|
||
<property name="minimum">
|
||
<double>0.000000000000000</double>
|
||
</property>
|
||
<property name="value">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QProgressBar" name="analyse_progress_bar">
|
||
<property name="value">
|
||
<number>0</number>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<layout class="QHBoxLayout" name="graphs_params_layout">
|
||
<item>
|
||
<widget class="QCheckBox" name="show_graph_checkbox">
|
||
<property name="text">
|
||
<string>afficher les graphes</string>
|
||
</property>
|
||
<property name="checked">
|
||
<bool>true</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLabel" name="label">
|
||
<property name="text">
|
||
<string>Nombre de graphes :</string>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QSpinBox" name="graph_nb_spinbox">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="start_analyse_button">
|
||
<property name="text">
|
||
<string>Analyser le fichier</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLineEdit" name="status_text">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="values">
|
||
<attribute name="title">
|
||
<string>Valeurs</string>
|
||
</attribute>
|
||
<layout class="QGridLayout" name="gridLayout_15">
|
||
<item row="0" column="0">
|
||
<layout class="QFormLayout" name="formLayout">
|
||
<item row="0" column="0">
|
||
<widget class="QLabel" name="layer_label">
|
||
<property name="text">
|
||
<string>Numero de la couche a traiter :</string>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignCenter</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="1">
|
||
<widget class="QComboBox" name="layer_ComboBox"/>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<widget class="QLabel" name="interval_size_label">
|
||
<property name="text">
|
||
<string>Taille de l'intervale</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="1">
|
||
<widget class="QDoubleSpinBox" name="interval_size">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0">
|
||
<widget class="QLabel" name="x_mean_label">
|
||
<property name="text">
|
||
<string>X moyen</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="1">
|
||
<widget class="QDoubleSpinBox" name="x_mean">
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="3" column="0">
|
||
<widget class="QLabel" name="y_mean_label">
|
||
<property name="text">
|
||
<string>Y Moyen</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="3" column="1">
|
||
<widget class="QDoubleSpinBox" name="y_mean">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="4" column="0">
|
||
<widget class="QLabel" name="z_mean_label">
|
||
<property name="text">
|
||
<string>Z Moyen</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="4" column="1">
|
||
<widget class="QDoubleSpinBox" name="z_mean">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="5" column="0">
|
||
<widget class="QLabel" name="r_mean_label">
|
||
<property name="text">
|
||
<string>Rayon moyen</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="5" column="1">
|
||
<widget class="QDoubleSpinBox" name="r_mean">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="6" column="0">
|
||
<widget class="QLabel" name="sigma_r_label">
|
||
<property name="text">
|
||
<string>Ecart type des rayons (σR)</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="6" column="1">
|
||
<widget class="QDoubleSpinBox" name="sigma_r">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="8" column="0">
|
||
<widget class="QLabel" name="tortuosity_label">
|
||
<property name="text">
|
||
<string>Tortuosité</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="8" column="1">
|
||
<widget class="QDoubleSpinBox" name="tortuosity">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="9" column="0">
|
||
<widget class="QLabel" name="volume_label">
|
||
<property name="text">
|
||
<string>Volume en mm3</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="9" column="1">
|
||
<widget class="QDoubleSpinBox" name="volume">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="10" column="0">
|
||
<widget class="QLabel" name="surface_label">
|
||
<property name="text">
|
||
<string>Surface en mm2</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="10" column="1">
|
||
<widget class="QDoubleSpinBox" name="surface">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="11" column="0">
|
||
<widget class="QLabel" name="mean_r_mean_label">
|
||
<property name="text">
|
||
<string>Moyenne des rayons moyens (<R>)</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="11" column="1">
|
||
<widget class="QDoubleSpinBox" name="mean_r_mean">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="12" column="0">
|
||
<widget class="QLabel" name="sigma_r_mean_label">
|
||
<property name="text">
|
||
<string>Ecart type des rayons moyens(σ<R>)</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="12" column="1">
|
||
<widget class="QDoubleSpinBox" name="sigma_r_mean">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="13" column="0">
|
||
<widget class="QLabel" name="sigma_r_tot_label">
|
||
<property name="text">
|
||
<string>σ<R>tot</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="13" column="1">
|
||
<widget class="QDoubleSpinBox" name="sigma_r_tot">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="14" column="0">
|
||
<widget class="QLabel" name="MI_p_label">
|
||
<property name="text">
|
||
<string>MI_p</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="14" column="1">
|
||
<widget class="QDoubleSpinBox" name="MI_p">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="15" column="0">
|
||
<widget class="QLabel" name="MI_l_label">
|
||
<property name="text">
|
||
<string>MI_l</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="15" column="1">
|
||
<widget class="QDoubleSpinBox" name="MI_l">
|
||
<property name="readOnly">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="buttonSymbols">
|
||
<enum>QAbstractSpinBox::NoButtons</enum>
|
||
</property>
|
||
<property name="decimals">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="minimum">
|
||
<double>-999999.000000000000000</double>
|
||
</property>
|
||
<property name="maximum">
|
||
<double>999999.000000000000000</double>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="7" column="1">
|
||
<widget class="Line" name="line">
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="16" column="0">
|
||
<widget class="QPushButton" name="export_advanced_metrics">
|
||
<property name="text">
|
||
<string>Exporter les variables</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QWidget" name="Graphs" native="true">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>700</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_3">
|
||
<item row="2" column="0">
|
||
<widget class="QTabWidget" name="GraphTabs">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="currentIndex">
|
||
<number>0</number>
|
||
</property>
|
||
<widget class="QWidget" name="graph_pane_1">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<attribute name="title">
|
||
<string>1</string>
|
||
</attribute>
|
||
<layout class="QGridLayout" name="gridLayout_5">
|
||
<item row="0" column="1">
|
||
<widget class="QFrame" name="slot1_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_10">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot1"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot1ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<widget class="QFrame" name="slot2_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_11">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot2"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot2ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="1">
|
||
<widget class="QFrame" name="slot3_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_12">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot3"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot3ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QFrame" name="slot0_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_8">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot0"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot0ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="graph_pane_2">
|
||
<attribute name="title">
|
||
<string>2</string>
|
||
</attribute>
|
||
<layout class="QGridLayout" name="gridLayout_13">
|
||
<item row="1" column="1">
|
||
<widget class="QFrame" name="slot5_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_18">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot5"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot5ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<widget class="QFrame" name="slot4_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_17">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot4"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot4ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0">
|
||
<widget class="QFrame" name="slot6_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_19">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot6"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot6ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="1">
|
||
<widget class="QFrame" name="slot7_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_20">
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot7"/>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot7ComboBox"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="graph_pane_3">
|
||
<attribute name="title">
|
||
<string>3</string>
|
||
</attribute>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||
<item>
|
||
<widget class="QFrame" name="slot8_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_7">
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot8ComboBox"/>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot8"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QFrame" name="slot9_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_6">
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot9ComboBox"/>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot9"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="graph_pane_4">
|
||
<attribute name="title">
|
||
<string>4</string>
|
||
</attribute>
|
||
<layout class="QGridLayout" name="gridLayout_4">
|
||
<item row="0" column="0">
|
||
<widget class="QFrame" name="slot10_frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QGridLayout" name="gridLayout_9">
|
||
<item row="0" column="0">
|
||
<widget class="QComboBox" name="slot10ComboBox"/>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<layout class="QGridLayout" name="slot10"/>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QMenuBar" name="menuBar">
|
||
<property name="geometry">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1419</width>
|
||
<height>22</height>
|
||
</rect>
|
||
</property>
|
||
<widget class="QMenu" name="menuRichier">
|
||
<property name="title">
|
||
<string>Fichier</string>
|
||
</property>
|
||
<addaction name="actionOuvrir_un_fichier"/>
|
||
<addaction name="actionSauvegarder_le_model_redress"/>
|
||
<addaction name="separator"/>
|
||
<addaction name="actionPr_f_rennces"/>
|
||
<addaction name="separator"/>
|
||
<addaction name="actionQuitter"/>
|
||
</widget>
|
||
<widget class="QMenu" name="menuA_propos">
|
||
<property name="title">
|
||
<string>A propos</string>
|
||
</property>
|
||
<addaction name="actionQ_propos_de_ce_logiciel"/>
|
||
</widget>
|
||
<addaction name="menuRichier"/>
|
||
<addaction name="menuA_propos"/>
|
||
</widget>
|
||
<action name="actionOuvrir_un_fichier">
|
||
<property name="text">
|
||
<string>Ouvrir un fichier</string>
|
||
</property>
|
||
</action>
|
||
<action name="actionSauvegarder_le_model_redress">
|
||
<property name="text">
|
||
<string>Sauvegarder le model 3D redressé</string>
|
||
</property>
|
||
</action>
|
||
<action name="actionPr_f_rennces">
|
||
<property name="text">
|
||
<string>Préférences</string>
|
||
</property>
|
||
</action>
|
||
<action name="actionQuitter">
|
||
<property name="text">
|
||
<string>Quitter</string>
|
||
</property>
|
||
</action>
|
||
<action name="actionQ_propos_de_ce_logiciel">
|
||
<property name="text">
|
||
<string>A propos de ce logiciel</string>
|
||
</property>
|
||
</action>
|
||
</widget>
|
||
<resources/>
|
||
<connections/>
|
||
</ui>
|