r21041 by jghali -
scribus-commit
scribus-commit at lists.scribus.net
Sun Feb 28 10:50:07 UTC 2016
Author: jghali
Date: Sun Feb 28 10:50:07 2016
New Revision: 21041
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=21041
Log:
#13774: Simplify X,Y,Z Palette strings translation <FirasH>
Modified:
trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
trunk/Scribus/scribus/ui/propertiespalette_xyzbase.ui
Modified: trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=21041&path=/trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
==============================================================================
--- trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp (original)
+++ trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp Sun Feb 28 10:50:07 2016
@@ -68,11 +68,6 @@
installSniffer(widthSpin);
installSniffer(heightSpin);
- xposLabel->setBuddy(xposSpin);
- yposLabel->setBuddy(yposSpin);
- widthLabel->setBuddy(widthSpin);
- heightLabel->setBuddy(heightSpin);
-
keepFrameWHRatioButton->setCheckable( true );
keepFrameWHRatioButton->setAutoRaise( true );
keepFrameWHRatioButton->setMaximumSize( QSize( 15, 32767 ) );
@@ -217,8 +212,8 @@
flipH->setEnabled(false);
flipV->setEnabled(false);
xposLabel->setText( tr( "&X-Pos:" ) );
+ yposLabel->setText( tr( "&Y-Pos:" ) );
widthLabel->setText( tr( "&Width:" ) );
- yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
xposSpin->showValue(0);
yposSpin->showValue(0);
@@ -240,8 +235,8 @@
if (lineMode == 0)
{
xposLabel->setText( tr( "&X-Pos:" ) );
+ yposLabel->setText( tr( "&Y-Pos:" ) );
widthLabel->setText( tr( "&Width:" ) );
- yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
rotationSpin->setEnabled(true);
heightSpin->setEnabled(false);
@@ -250,8 +245,8 @@
else
{
xposLabel->setText( tr( "&X1:" ) );
+ yposLabel->setText( tr( "Y&1:" ) );
widthLabel->setText( tr( "X&2:" ) );
- yposLabel->setText( tr( "Y&1:" ) );
heightLabel->setText( tr( "&Y2:" ) );
rotationSpin->setEnabled(false);
heightSpin->setEnabled(true);
@@ -360,16 +355,16 @@
if ((m_item->itemType() == PageItem::Line) && m_lineMode)
{
xposLabel->setText( tr( "&X1:" ) );
+ yposLabel->setText( tr( "Y&1:" ) );
widthLabel->setText( tr( "X&2:" ) );
- yposLabel->setText( tr( "Y&1:" ) );
heightLabel->setText( tr( "&Y2:" ) );
rotationSpin->setEnabled(false);
}
else
{
xposLabel->setText( tr( "&X-Pos:" ) );
+ yposLabel->setText( tr( "&Y-Pos:" ) );
widthLabel->setText( tr( "&Width:" ) );
- yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
rotationSpin->setEnabled(true);
}
@@ -446,8 +441,8 @@
else if (bp == 0)
m_ScMW->view->RCenter = FPoint(gx + gw, gy + gh);
xposLabel->setText( tr( "&X-Pos:" ) );
+ yposLabel->setText( tr( "&Y-Pos:" ) );
widthLabel->setText( tr( "&Width:" ) );
- yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
xposSpin->showValue(gx);
@@ -514,8 +509,8 @@
{
case -1:
xposLabel->setText( tr( "&X-Pos:" ) );
+ yposLabel->setText( tr( "&Y-Pos:" ) );
widthLabel->setText( tr( "&Width:" ) );
- yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
xposSpin->showValue(0);
@@ -1290,17 +1285,8 @@
void PropertiesPalette_XYZ::languageChange()
{
setWindowTitle( tr("Properties"));
-
- nameGroup->setTitle( tr("Name"));
- geoGroup->setTitle( tr("Geometry"));
- xposLabel->setText( tr("&X-Pos:"));
- yposLabel->setText( tr("&Y-Pos:"));
- widthLabel->setText( tr("&Width:"));
- heightLabel->setText( tr("&Height:"));
- rotationLabel->setText( tr("&Rotation:"));
- basepointLabel->setText( tr("Basepoint:"));
- levelGroup->setTitle( tr("Level"));
-
+ retranslateUi(this);
+
QString ptSuffix = tr(" pt");
QString ein = (m_haveDoc) ? unitGetSuffixFromIndex(m_doc->unitIndex()) : ptSuffix;
@@ -1309,28 +1295,6 @@
yposSpin->setSuffix(ein);
widthSpin->setSuffix(ein);
heightSpin->setSuffix(ein);
-
- nameEdit->setToolTip( tr("Name of selected object"));
- xposSpin->setToolTip( tr("Horizontal position of current basepoint"));
- yposSpin->setToolTip( tr("Vertical position of current basepoint"));
- widthSpin->setToolTip( tr("Width"));
- heightSpin->setToolTip( tr("Height"));
- rotationSpin->setToolTip( tr("Rotation of object at current basepoint"));
- basepointLabel->setToolTip( tr("Point from which measurements or rotation angles are referenced"));
- doGroup->setToolTip( tr("Group the selected objects"));
- doUnGroup->setToolTip( tr("Ungroup the selected group"));
- flipH->setToolTip( tr("Flip Horizontal"));
- flipV->setToolTip( tr("Flip Vertical"));
- levelUp->setToolTip( tr("Move one level up"));
- levelDown->setToolTip( tr("Move one level down"));
- levelTop->setToolTip( tr("Move to front"));
- levelBottom->setToolTip( tr("Move to back"));
- levelLabel->setToolTip( tr("Indicates the level the object is on, 1 means the object is at the bottom"));
- doLock->setToolTip( tr("Lock or unlock the object"));
- noResize->setToolTip( tr("Lock or unlock the size of the object"));
- noPrint->setToolTip( tr("Enable or disable exporting of the object"));
-
- keepFrameWHRatioButton->setToolTip( tr("Keep the aspect ratio"));
}
void PropertiesPalette_XYZ::updateSpinBoxConstants()
Modified: trunk/Scribus/scribus/ui/propertiespalette_xyzbase.ui
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=21041&path=/trunk/Scribus/scribus/ui/propertiespalette_xyzbase.ui
==============================================================================
--- trunk/Scribus/scribus/ui/propertiespalette_xyzbase.ui (original)
+++ trunk/Scribus/scribus/ui/propertiespalette_xyzbase.ui Sun Feb 28 10:50:07 2016
@@ -1,353 +1,473 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>PropertiesPalette_XYZBase</class>
- <widget class="QWidget" name="PropertiesPalette_XYZBase">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>280</width>
- <height>325</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <property name="spacing">
- <number>5</number>
- </property>
- <property name="margin">
- <number>0</number>
- </property>
- <item>
- <widget class="QGroupBox" name="nameGroup">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="title">
- <string>Name</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <property name="spacing">
- <number>2</number>
- </property>
- <property name="margin">
- <number>2</number>
- </property>
- <item>
- <widget class="NameWidget" name="nameEdit">
- <property name="focusPolicy">
- <enum>Qt::ClickFocus</enum>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="geoGroup">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="title">
- <string>Geometry</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <property name="margin">
- <number>2</number>
- </property>
- <item>
- <layout class="QGridLayout" name="geoGroupLayout">
- <property name="margin">
- <number>5</number>
- </property>
- <property name="spacing">
- <number>4</number>
- </property>
- <item row="0" column="0">
- <widget class="QLabel" name="xposLabel">
- <property name="text">
- <string>&X-Pos:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="ScrSpinBox" name="xposSpin">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="widthLabel">
- <property name="text">
- <string>&Width:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="yposLabel">
- <property name="text">
- <string>&Y-Pos:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="ScrSpinBox" name="yposSpin"/>
- </item>
- <item row="2" column="1">
- <widget class="ScrSpinBox" name="widthSpin"/>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="heightLabel">
- <property name="text">
- <string>&Height:</string>
- </property>
- </widget>
- </item>
- <item row="3" column="1">
- <widget class="ScrSpinBox" name="heightSpin"/>
- </item>
- <item row="4" column="0">
- <widget class="QLabel" name="rotationLabel">
- <property name="text">
- <string>&Rotation:</string>
- </property>
- </widget>
- </item>
- <item row="4" column="1">
- <widget class="ScrSpinBox" name="rotationSpin">
- <property name="wrapping">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="5" column="0">
- <widget class="QLabel" name="basepointLabel">
- <property name="text">
- <string>Basepoint:</string>
- </property>
- </widget>
- </item>
- <item row="5" column="1">
- <widget class="BasePointWidget" name="basePointWidget" native="true"/>
- </item>
- <item row="2" column="2" rowspan="2">
- <widget class="LinkButton" name="keepFrameWHRatioButton">
- <property name="maximumSize">
- <size>
- <width>15</width>
- <height>32767</height>
- </size>
- </property>
- <property name="text">
- <string>...</string>
- </property>
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <item>
- <widget class="QGroupBox" name="levelGroup">
- <property name="title">
- <string>Level</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <property name="margin">
- <number>5</number>
- </property>
- <property name="spacing">
- <number>4</number>
- </property>
- <item row="0" column="0">
- <widget class="QToolButton" name="levelUp">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>22</height>
- </size>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QToolButton" name="levelDown">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>22</height>
- </size>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QToolButton" name="levelTop">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>22</height>
- </size>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QToolButton" name="levelBottom">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>22</height>
- </size>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="2" rowspan="2">
- <widget class="QLabel" name="levelLabel">
- <property name="text">
- <string>0</string>
- </property>
- </widget>
- </item>
- </layout>
- </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>
- <layout class="QGridLayout" name="gridLayout_2">
- <item row="0" column="0">
- <widget class="QToolButton" name="doGroup">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QToolButton" name="doUnGroup">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QToolButton" name="flipH">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QToolButton" name="flipV">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="2">
- <widget class="QToolButton" name="doLock">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="2">
- <widget class="QToolButton" name="noPrint">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="3">
- <widget class="QToolButton" name="noResize">
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </item>
- <item>
- <spacer name="verticalSpacer">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>20</width>
- <height>40</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </widget>
- <customwidgets>
- <customwidget>
- <class>NameWidget</class>
- <extends>QLineEdit</extends>
- <header>ui/propertiespalette_utils.h</header>
- </customwidget>
- <customwidget>
- <class>ScrSpinBox</class>
- <extends>QDoubleSpinBox</extends>
- <header>ui/scrspinbox.h</header>
- </customwidget>
- <customwidget>
- <class>BasePointWidget</class>
- <extends>QWidget</extends>
- <header>ui/basepointwidget.h</header>
- <container>1</container>
- </customwidget>
- <customwidget>
- <class>LinkButton</class>
- <extends>QToolButton</extends>
- <header>ui/linkbutton.h</header>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections/>
-</ui>
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>PropertiesPalette_XYZBase</class>
+ <widget class="QWidget" name="PropertiesPalette_XYZBase">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>280</width>
+ <height>333</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string notr="true">Form</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <property name="spacing">
+ <number>5</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="QGroupBox" name="nameGroup">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="title">
+ <string>Name</string>
+ </property>
+ <layout class="QHBoxLayout" name="horizontalLayout">
+ <property name="spacing">
+ <number>2</number>
+ </property>
+ <property name="leftMargin">
+ <number>2</number>
+ </property>
+ <property name="topMargin">
+ <number>2</number>
+ </property>
+ <property name="rightMargin">
+ <number>2</number>
+ </property>
+ <property name="bottomMargin">
+ <number>2</number>
+ </property>
+ <item>
+ <widget class="NameWidget" name="nameEdit">
+ <property name="focusPolicy">
+ <enum>Qt::ClickFocus</enum>
+ </property>
+ <property name="toolTip">
+ <string>Name of selected object</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="geoGroup">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="title">
+ <string>Geometry</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout_2">
+ <property name="leftMargin">
+ <number>2</number>
+ </property>
+ <property name="topMargin">
+ <number>2</number>
+ </property>
+ <property name="rightMargin">
+ <number>2</number>
+ </property>
+ <property name="bottomMargin">
+ <number>2</number>
+ </property>
+ <item>
+ <layout class="QGridLayout" name="geoGroupLayout">
+ <property name="leftMargin">
+ <number>5</number>
+ </property>
+ <property name="topMargin">
+ <number>5</number>
+ </property>
+ <property name="rightMargin">
+ <number>5</number>
+ </property>
+ <property name="bottomMargin">
+ <number>5</number>
+ </property>
+ <property name="spacing">
+ <number>4</number>
+ </property>
+ <item row="0" column="0">
+ <widget class="QLabel" name="xposLabel">
+ <property name="text">
+ <string>&X-Pos:</string>
+ </property>
+ <property name="buddy">
+ <cstring>xposSpin</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="ScrSpinBox" name="xposSpin">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="toolTip">
+ <string>Horizontal position of current basepoint</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0">
+ <widget class="QLabel" name="widthLabel">
+ <property name="text">
+ <string>&Width:</string>
+ </property>
+ <property name="buddy">
+ <cstring>widthSpin</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="yposLabel">
+ <property name="text">
+ <string>&Y-Pos:</string>
+ </property>
+ <property name="buddy">
+ <cstring>yposSpin</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="ScrSpinBox" name="yposSpin">
+ <property name="toolTip">
+ <string>Vertical position of current basepoint</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="1">
+ <widget class="ScrSpinBox" name="widthSpin">
+ <property name="toolTip">
+ <string>Width of current selection</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="0">
+ <widget class="QLabel" name="heightLabel">
+ <property name="text">
+ <string>&Height:</string>
+ </property>
+ <property name="buddy">
+ <cstring>heightSpin</cstring>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="1">
+ <widget class="ScrSpinBox" name="heightSpin">
+ <property name="toolTip">
+ <string>Height of current selection</string>
+ </property>
+ </widget>
+ </item>
+ <item row="4" column="0">
+ <widget class="QLabel" name="rotationLabel">
+ <property name="text">
+ <string>&Rotation:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="4" column="1">
+ <widget class="ScrSpinBox" name="rotationSpin">
+ <property name="toolTip">
+ <string>Rotation of object at current basepoint</string>
+ </property>
+ <property name="wrapping">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="5" column="0">
+ <widget class="QLabel" name="basepointLabel">
+ <property name="toolTip">
+ <string>Point from which measurements or rotation angles are referenced</string>
+ </property>
+ <property name="text">
+ <string>Basepoint:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="5" column="1">
+ <widget class="BasePointWidget" name="basePointWidget" native="true"/>
+ </item>
+ <item row="2" column="2" rowspan="2">
+ <widget class="LinkButton" name="keepFrameWHRatioButton">
+ <property name="maximumSize">
+ <size>
+ <width>15</width>
+ <height>32767</height>
+ </size>
+ </property>
+ <property name="toolTip">
+ <string>Keep the aspect ratio</string>
+ </property>
+ <property name="text">
+ <string>...</string>
+ </property>
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="autoRaise">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <layout class="QHBoxLayout" name="horizontalLayout_2">
+ <item>
+ <widget class="QGroupBox" name="levelGroup">
+ <property name="title">
+ <string>Level</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout">
+ <property name="leftMargin">
+ <number>5</number>
+ </property>
+ <property name="topMargin">
+ <number>5</number>
+ </property>
+ <property name="rightMargin">
+ <number>5</number>
+ </property>
+ <property name="bottomMargin">
+ <number>5</number>
+ </property>
+ <property name="spacing">
+ <number>4</number>
+ </property>
+ <item row="0" column="0">
+ <widget class="QToolButton" name="levelUp">
+ <property name="maximumSize">
+ <size>
+ <width>22</width>
+ <height>22</height>
+ </size>
+ </property>
+ <property name="toolTip">
+ <string>Move one level up</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QToolButton" name="levelDown">
+ <property name="maximumSize">
+ <size>
+ <width>22</width>
+ <height>22</height>
+ </size>
+ </property>
+ <property name="toolTip">
+ <string>Move one level down</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QToolButton" name="levelTop">
+ <property name="maximumSize">
+ <size>
+ <width>22</width>
+ <height>22</height>
+ </size>
+ </property>
+ <property name="toolTip">
+ <string>Move to front</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QToolButton" name="levelBottom">
+ <property name="maximumSize">
+ <size>
+ <width>22</width>
+ <height>22</height>
+ </size>
+ </property>
+ <property name="toolTip">
+ <string>Move to back</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="2" rowspan="2">
+ <widget class="QLabel" name="levelLabel">
+ <property name="toolTip">
+ <string>Indicates the level the object is on, 1 means the object is at the bottom</string>
+ </property>
+ <property name="text">
+ <string>0</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </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>
+ <layout class="QGridLayout" name="gridLayout_2">
+ <item row="0" column="0">
+ <widget class="QToolButton" name="doGroup">
+ <property name="toolTip">
+ <string>Group the selected objects</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QToolButton" name="doUnGroup">
+ <property name="toolTip">
+ <string>Ungroup the selected group</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QToolButton" name="flipH">
+ <property name="toolTip">
+ <string>Flip horizontally</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QToolButton" name="flipV">
+ <property name="toolTip">
+ <string>Flip vertically</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="2">
+ <widget class="QToolButton" name="doLock">
+ <property name="toolTip">
+ <string>Lock or unlock the object</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="2">
+ <widget class="QToolButton" name="noPrint">
+ <property name="toolTip">
+ <string>Enable or disable exporting of the object</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="3">
+ <widget class="QToolButton" name="noResize">
+ <property name="toolTip">
+ <string>Lock or unlock the size of the object</string>
+ </property>
+ <property name="text">
+ <string/>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <spacer name="verticalSpacer">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ </layout>
+ </widget>
+ <customwidgets>
+ <customwidget>
+ <class>NameWidget</class>
+ <extends>QLineEdit</extends>
+ <header>ui/propertiespalette_utils.h</header>
+ </customwidget>
+ <customwidget>
+ <class>ScrSpinBox</class>
+ <extends>QDoubleSpinBox</extends>
+ <header>ui/scrspinbox.h</header>
+ </customwidget>
+ <customwidget>
+ <class>BasePointWidget</class>
+ <extends>QWidget</extends>
+ <header>ui/basepointwidget.h</header>
+ <container>1</container>
+ </customwidget>
+ <customwidget>
+ <class>LinkButton</class>
+ <extends>QToolButton</extends>
+ <header>ui/linkbutton.h</header>
+ </customwidget>
+ </customwidgets>
+ <resources/>
+ <connections/>
+</ui>
More information about the scribus-commit
mailing list