##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1462:66c20669d3a7
r1477:70de8bd3d575
Show More
MainWindow.ui
177 lines | 4.9 KiB | text/plain | TextLexer
Initialisation de l'application multithread avec le spimpl....
r21 <?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>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
Set SciQLop Version to 1.0.0 🍾...
r1458 <string>SciQlop</string>
Initialisation de l'application multithread avec le spimpl....
r21 </property>
<property name="dockNestingEnabled">
<bool>true</bool>
</property>
<widget class="QWidget" name="centralWidget">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
Add skelleton of the gui
r56 <layout class="QHBoxLayout" name="horizontalLayout">
Creation and styling SidePaneWidget
r57 <property name="spacing">
Add button on the SidePane widgets to open left or right inspectors
r101 <number>0</number>
Creation and styling SidePaneWidget
r57 </property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
Add skelleton of the gui
r56 <item>
Add button on the SidePane widgets to open left or right inspectors
r101 <widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QWidget" name="leftMainInspectorWidget" native="true">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="DataSourceWidget" name="dataSourceWidget" native="true"/>
</item>
<item>
<widget class="QWidget" name="dateTimeWidget" native="true"/>
</item>
<item>
Alexandre Leroux
Initializes the variable inspector and adds it to the MainWindow
r110 <widget class="VariableInspectorWidget" name="variableInspectorWidget" native="true"/>
Add button on the SidePane widgets to open left or right inspectors
r101 </item>
</layout>
</widget>
<widget class="VisualizationWidget" name="view" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
Creation and styling SidePaneWidget
r57 </property>
Add button on the SidePane widgets to open left or right inspectors
r101 </widget>
<widget class="QWidget" name="rightMainInspectorWidget" native="true">
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="commonPropertyInspectorWidget" native="true"/>
</item>
<item>
Alexandre Leroux
Minor fix
r1038 <widget class="QTreeWidget" name="catalogWidget">
<column>
<property name="text">
<string notr="true">Name</string>
</property>
</column>
</widget>
Add button on the SidePane widgets to open left or right inspectors
r101 </item>
</layout>
</widget>
Creation and styling SidePaneWidget
r57 </widget>
Add skelleton of the gui
r56 </item>
</layout>
Initialisation de l'application multithread avec le spimpl....
r21 </widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
Refactored main toolbar to make it suck less :)...
r1462 <height>27</height>
Initialisation de l'application multithread avec le spimpl....
r21 </rect>
</property>
Refactored main toolbar to make it suck less :)...
r1462 <property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="nativeMenuBar">
<bool>true</bool>
</property>
Initialisation de l'application multithread avec le spimpl....
r21 </widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
Creation and styling SidePaneWidget
r57 <customwidgets>
<customwidget>
<class>VisualizationWidget</class>
<extends>QWidget</extends>
mv visualization -> Visualization...
r95 <header location="global">Visualization/VisualizationWidget.h</header>
Creation and styling SidePaneWidget
r57 <container>1</container>
</customwidget>
Alexandre Leroux
Creates the data source widget...
r82 <customwidget>
<class>DataSourceWidget</class>
<extends>QWidget</extends>
<header location="global">DataSource/DataSourceWidget.h</header>
<container>1</container>
</customwidget>
Alexandre Leroux
Initializes the variable inspector and adds it to the MainWindow
r110 <customwidget>
<class>VariableInspectorWidget</class>
<extends>QWidget</extends>
<header location="global">Variable/VariableInspectorWidget.h</header>
<container>1</container>
</customwidget>
Creation and styling SidePaneWidget
r57 </customwidgets>
Initialisation de l'application multithread avec le spimpl....
r21 <resources/>
<connections/>
</ui>