123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ctkVTKTextPropertyWidget</class>
- <widget class="QWidget" name="ctkVTKTextPropertyWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>271</width>
- <height>169</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>vtkTextProperty</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <property name="margin">
- <number>0</number>
- </property>
- <item row="0" column="0">
- <widget class="QLabel" name="TextLabel">
- <property name="text">
- <string>Text:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1" colspan="3">
- <widget class="QLineEdit" name="TextLineEdit"/>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="ColorLabel">
- <property name="text">
- <string>Color:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1" colspan="3">
- <widget class="ctkColorPickerButton" name="ColorPickerButton"/>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="OpacityLabel">
- <property name="text">
- <string>Opacity:</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1" colspan="3">
- <widget class="ctkDoubleSlider" name="OpacitySlider">
- <property name="singleStep">
- <double>0.100000000000000</double>
- </property>
- <property name="maximum">
- <double>1.000000000000000</double>
- </property>
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- </widget>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="FontLabel">
- <property name="text">
- <string>Font:</string>
- </property>
- </widget>
- </item>
- <item row="3" column="1" colspan="3">
- <widget class="QComboBox" name="FontComboBox">
- <item>
- <property name="text">
- <string>Arial</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Courier</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Times</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="4" column="0">
- <widget class="QLabel" name="StyleLabel">
- <property name="text">
- <string>Style:</string>
- </property>
- </widget>
- </item>
- <item row="4" column="1">
- <widget class="QCheckBox" name="BoldCheckBox">
- <property name="text">
- <string>bold</string>
- </property>
- </widget>
- </item>
- <item row="4" column="2">
- <widget class="QCheckBox" name="ItalicCheckBox">
- <property name="text">
- <string>italic</string>
- </property>
- </widget>
- </item>
- <item row="4" column="3">
- <widget class="QCheckBox" name="ShadowCheckBox">
- <property name="text">
- <string>shadow</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <customwidgets>
- <customwidget>
- <class>ctkColorPickerButton</class>
- <extends>QPushButton</extends>
- <header>ctkColorPickerButton.h</header>
- </customwidget>
- <customwidget>
- <class>ctkDoubleSlider</class>
- <extends>QWidget</extends>
- <header>ctkDoubleSlider.h</header>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections/>
- </ui>
|