mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
146 lines
3.6 KiB
Plaintext
146 lines
3.6 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<ui version="4.0">
|
||
|
<class>MandelbrotMainWindow</class>
|
||
|
<widget class="QMainWindow" name="MandelbrotMainWindow">
|
||
|
<property name="geometry">
|
||
|
<rect>
|
||
|
<x>0</x>
|
||
|
<y>0</y>
|
||
|
<width>800</width>
|
||
|
<height>600</height>
|
||
|
</rect>
|
||
|
</property>
|
||
|
<property name="windowTitle">
|
||
|
<string>MainWindow</string>
|
||
|
</property>
|
||
|
<widget class="QWidget" name="centralwidget">
|
||
|
<layout class="QVBoxLayout" name="verticalLayout" stretch="0,1">
|
||
|
<item>
|
||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||
|
<item>
|
||
|
<widget class="QLabel" name="label">
|
||
|
<property name="text">
|
||
|
<string>Color Palette:</string>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="JKQTPMathImageColorPaletteComboBox" name="cmbColorPalette"/>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="QCheckBox" name="chkLogScaling">
|
||
|
<property name="text">
|
||
|
<string>logarithmic color scaling</string>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item>
|
||
|
<spacer name="horizontalSpacer">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Horizontal</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>40</width>
|
||
|
<height>20</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="QLabel" name="label_2">
|
||
|
<property name="text">
|
||
|
<string>max. iterations:</string>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="QSpinBox" name="spinMaxIterations">
|
||
|
<property name="minimum">
|
||
|
<number>1</number>
|
||
|
</property>
|
||
|
<property name="maximum">
|
||
|
<number>1000000</number>
|
||
|
</property>
|
||
|
<property name="value">
|
||
|
<number>100</number>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="JKQTPlotter" name="plot" native="true"/>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</widget>
|
||
|
<widget class="QMenuBar" name="menubar">
|
||
|
<property name="geometry">
|
||
|
<rect>
|
||
|
<x>0</x>
|
||
|
<y>0</y>
|
||
|
<width>800</width>
|
||
|
<height>21</height>
|
||
|
</rect>
|
||
|
</property>
|
||
|
<widget class="QMenu" name="menu_Main">
|
||
|
<property name="title">
|
||
|
<string>&Menu</string>
|
||
|
</property>
|
||
|
<addaction name="action_Reset_View"/>
|
||
|
<addaction name="separator"/>
|
||
|
<addaction name="actionExit"/>
|
||
|
</widget>
|
||
|
<addaction name="menu_Main"/>
|
||
|
</widget>
|
||
|
<widget class="QStatusBar" name="statusbar"/>
|
||
|
<action name="action_Exit">
|
||
|
<property name="text">
|
||
|
<string>&Exit</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
<action name="action_Reset_View">
|
||
|
<property name="text">
|
||
|
<string>&Reset View</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
<action name="actionExit">
|
||
|
<property name="text">
|
||
|
<string>&Exit</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
</widget>
|
||
|
<customwidgets>
|
||
|
<customwidget>
|
||
|
<class>JKQTPlotter</class>
|
||
|
<extends>QWidget</extends>
|
||
|
<header>jkqtplotter/jkqtplotter.h</header>
|
||
|
<container>1</container>
|
||
|
</customwidget>
|
||
|
<customwidget>
|
||
|
<class>JKQTPMathImageColorPaletteComboBox</class>
|
||
|
<extends>QComboBox</extends>
|
||
|
<header>jkqtplotter/gui/jkqtpcomboboxes.h</header>
|
||
|
</customwidget>
|
||
|
</customwidgets>
|
||
|
<resources/>
|
||
|
<connections>
|
||
|
<connection>
|
||
|
<sender>actionExit</sender>
|
||
|
<signal>triggered()</signal>
|
||
|
<receiver>MandelbrotMainWindow</receiver>
|
||
|
<slot>close()</slot>
|
||
|
<hints>
|
||
|
<hint type="sourcelabel">
|
||
|
<x>-1</x>
|
||
|
<y>-1</y>
|
||
|
</hint>
|
||
|
<hint type="destinationlabel">
|
||
|
<x>399</x>
|
||
|
<y>299</y>
|
||
|
</hint>
|
||
|
</hints>
|
||
|
</connection>
|
||
|
</connections>
|
||
|
</ui>
|