diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:34:13 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:34:13 (GMT) |
commit | 67ad0519fd165acee4a4d2a94fa502e9e4847bd0 (patch) | |
tree | 1dbf50b3dff8d5ca7e9344733968c72704eb15ff /tests/auto/uic3/baseline/form1.ui.4 | |
download | Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.zip Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.gz Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.bz2 |
Long live Qt!
Diffstat (limited to 'tests/auto/uic3/baseline/form1.ui.4')
-rw-r--r-- | tests/auto/uic3/baseline/form1.ui.4 | 186 |
1 files changed, 186 insertions, 0 deletions
diff --git a/tests/auto/uic3/baseline/form1.ui.4 b/tests/auto/uic3/baseline/form1.ui.4 new file mode 100644 index 0000000..41c9d7a --- /dev/null +++ b/tests/auto/uic3/baseline/form1.ui.4 @@ -0,0 +1,186 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0" stdsetdef="1"> + <author></author> + <comment></comment> + <exportmacro></exportmacro> + <class>Form1</class> + <widget class="QWidget" name="Form1"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>584</width> + <height>331</height> + </rect> + </property> + <property name="windowTitle"> + <string>Form1</string> + </property> + <layout class="QVBoxLayout"> + <item> + <layout class="QGridLayout"> + <item row="1" column="0"> + <widget class="QLabel" name="textLabel3"> + <property name="frameShape"> + <enum>QFrame::NoFrame</enum> + </property> + <property name="frameShadow"> + <enum>QFrame::Plain</enum> + </property> + <property name="text"> + <string>Size</string> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + </widget> + </item> + <item row="1" column="2"> + <widget class="QLabel" name="textLabel4"> + <property name="text"> + <string>Stretch</string> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + </widget> + </item> + <item row="0" column="0"> + <widget class="QLabel" name="textLabel1"> + <property name="text"> + <string>Family</string> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + </widget> + </item> + <item row="0" column="3"> + <widget class="QComboBox" name="styles"/> + </item> + <item row="0" column="1"> + <widget class="QComboBox" name="families"/> + </item> + <item row="1" column="1"> + <widget class="QSpinBox" name="sizebox"> + <property name="suffix"> + <string> pt</string> + </property> + <property name="specialValueText"> + <string/> + </property> + <property name="maximum"> + <number>1000</number> + </property> + <property name="minimum"> + <number>10</number> + </property> + <property name="singleStep"> + <number>10</number> + </property> + </widget> + </item> + <item row="0" column="2"> + <widget class="QLabel" name="textLabel2"> + <property name="text"> + <string>Style</string> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + </widget> + </item> + <item row="1" column="3"> + <widget class="QSpinBox" name="stretchbox"> + <property name="suffix"> + <string> %</string> + </property> + <property name="maximum"> + <number>4000</number> + </property> + <property name="minimum"> + <number>1</number> + </property> + <property name="value"> + <number>100</number> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line1"> + <property name="frameShape"> + <enum>QFrame::HLine</enum> + </property> + <property name="frameShadow"> + <enum>QFrame::Sunken</enum> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="viewer"> + <property name="sizePolicy"> + <sizepolicy> + <hsizetype>3</hsizetype> + <vsizetype>3</vsizetype> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="maximumSize"> + <size> + <width>500</width> + <height>32767</height> + </size> + </property> + <property name="text"> + <string>Andy, + +I'm sorry but that does not quite help me. I've already seen that the new functional equivalent is drawPrimitive witrh a PE_ArrowDown flag. The problem is that I do not see how to translate the parameters used in the old function to the QRect parameter that is required in the new function. Sinve there is no one-to-one correspondance in parameters I do not see how to move form the old function to the new. + +The purpose of this method is to pain t a combobox-like down arrow to the right of a QLineEdit widget that is contained in the class. How do I convert the old code to the new? + +Thanks! + +...Jake</string> + </property> + <property name="alignment"> + <set>Qt::AlignTop</set> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + <layoutdefault spacing="6" margin="11"/> + <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> + <tabstops> + <tabstop>families</tabstop> + <tabstop>styles</tabstop> + <tabstop>sizebox</tabstop> + <tabstop>stretchbox</tabstop> + </tabstops> + <connections> + <connection> + <sender>families</sender> + <signal>activated(QString)</signal> + <receiver>Form1</receiver> + <slot>changeFamily(QString)</slot> + </connection> + <connection> + <sender>sizebox</sender> + <signal>valueChanged(int)</signal> + <receiver>Form1</receiver> + <slot>changeSize(int)</slot> + </connection> + <connection> + <sender>stretchbox</sender> + <signal>valueChanged(int)</signal> + <receiver>Form1</receiver> + <slot>changeStretch(int)</slot> + </connection> + </connections> +</ui> |