From e7b6deb35880ff3fcad21dc7d2dbb8370df44e87 Mon Sep 17 00:00:00 2001 From: timlinux Date: Wed, 4 Nov 2009 20:16:07 +0000 Subject: [PATCH] Usability cleanups for vector props dialogs. Also removed size adjustment to marker sizes in qgsoptions. git-svn-id: http://svn.osgeo.org/qgis/trunk@11921 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/app/qgsoptions.cpp | 4 +- src/app/qgssinglesymboldialog.cpp | 44 +- .../diagram_overlay/qgsdiagramdialogbase.ui | 102 ++- .../qgslinearlyscalingdialogbase.ui | 47 +- .../qgswkndiagramfactorywidgetbase.ui | 84 ++- src/ui/qgscontinuouscolordialogbase.ui | 91 +-- src/ui/qgsgraduatedsymboldialogbase.ui | 347 +++++------ src/ui/qgssinglesymboldialogbase.ui | 584 +++++++++--------- src/ui/qgsuniquevaluedialogbase.ui | 116 ++-- src/ui/qgsvectorlayerpropertiesbase.ui | 437 ++++++------- 10 files changed, 916 insertions(+), 940 deletions(-) diff --git a/src/app/qgsoptions.cpp b/src/app/qgsoptions.cpp index a0f45067fc8..593b25296d8 100644 --- a/src/app/qgsoptions.cpp +++ b/src/app/qgsoptions.cpp @@ -277,7 +277,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WFlags fl ) : { mMarkerStyleComboBox->setCurrentIndex( mMarkerStyleComboBox->findText( tr( "None" ) ) ); } - mMarkerSizeSpinBox->setValue( settings.value( "/qgis/digitizing/marker_size", 7 ).toInt()*2 + 1 ); + mMarkerSizeSpinBox->setValue( settings.value( "/qgis/digitizing/marker_size", 7 ).toInt() ); chkDisableAttributeValuesDlg->setChecked( settings.value( "/qgis/digitizing/disable_enter_attribute_values_dialog", false ).toBool() ); @@ -524,7 +524,7 @@ void QgsOptions::saveOptions() { settings.setValue( "/qgis/digitizing/marker_style", "None" ); } - settings.setValue( "/qgis/digitizing/marker_size", ( mMarkerSizeSpinBox->value() - 1 ) / 2 ); + settings.setValue( "/qgis/digitizing/marker_size", ( mMarkerSizeSpinBox->value() ) ); settings.setValue( "/qgis/digitizing/disable_enter_attribute_values_dialog", chkDisableAttributeValuesDlg->isChecked() ); diff --git a/src/app/qgssinglesymboldialog.cpp b/src/app/qgssinglesymboldialog.cpp index b9d48287a47..5c4e081d9a5 100644 --- a/src/app/qgssinglesymboldialog.cpp +++ b/src/app/qgssinglesymboldialog.cpp @@ -156,37 +156,39 @@ void QgsSingleSymbolDialog::refreshMarkers() // //set outline / line style // - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "SolidLine" ) ), tr( "Solid Line" ), "SolidLine" ); - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashLine" ) ), tr( "Dash Line" ), "DashLine" ); - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DotLine" ) ), tr( "Dot Line" ), "DotLine" ); - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashDotLine" ) ), tr( "Dash Dot Line" ), "DashDotLine" ); - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashDotDotLine" ) ), tr( "Dash Dot Dot Line" ), "DashDotDotLine" ); - cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "NoPen" ) ), tr( "No Pen" ), "NoPen" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "SolidLine" ) ), "", "SolidLine" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashLine" ) ), "", "DashLine" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DotLine" ) ), "", "DotLine" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashDotLine" ) ), "" , "DashDotLine" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "DashDotDotLine" ) ),"", "DashDotDotLine" ); + cboOutlineStyle->addItem( QIcon( QgsSymbologyUtils::char2LinePixmap( "NoPen" ) ), tr( "None" ), "NoPen" ); // //set pattern icons and state // - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "SolidPattern" ) ), tr( "Solid" ), "SolidPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "HorPattern" ) ), tr( "Horizontal" ), "HorPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "VerPattern" ) ), tr( "Vertical" ), "VerPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "CrossPattern" ) ), tr( "Cross" ), "CrossPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "BDiagPattern" ) ), tr( "BDiagonal" ), "BDiagPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "FDiagPattern" ) ), tr( "FDiagonal" ), "FDiagPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "DiagCrossPattern" ) ), tr( "Diagonal X" ), "DiagCrossPattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense1Pattern" ) ), tr( "Dense1" ), "Dense1Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense2Pattern" ) ), tr( "Dense2" ), "Dense2Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense3Pattern" ) ), tr( "Dense3" ), "Dense3Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense4Pattern" ) ), tr( "Dense4" ), "Dense4Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense5Pattern" ) ), tr( "Dense5" ), "Dense5Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense6Pattern" ) ), tr( "Dense6" ), "Dense6Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense7Pattern" ) ), tr( "Dense7" ), "Dense7Pattern" ); - cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "NoBrush" ) ), tr( "No Brush" ), "NoBrush" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "SolidPattern" ) ), "", "SolidPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "HorPattern" ) ), "", "HorPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "VerPattern" ) ), "", "VerPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "CrossPattern" ) ),"", "CrossPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "BDiagPattern" ) ), "", "BDiagPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "FDiagPattern" ) ), "", "FDiagPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "DiagCrossPattern" ) ), "", "DiagCrossPattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense1Pattern" ) ), "", "Dense1Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense2Pattern" ) ), "", "Dense2Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense3Pattern" ) ), "", "Dense3Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense4Pattern" ) ), "", "Dense4Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense5Pattern" ) ), "", "Dense5Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense6Pattern" ) ), "", "Dense6Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "Dense7Pattern" ) ), "", "Dense7Pattern" ); + cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "NoBrush" ) ), tr( "None" ), "NoBrush" ); cboFillStyle->addItem( QIcon( QgsSymbologyUtils::char2PatternPixmap( "TexturePattern" ) ), tr( "Texture" ), "TexturePattern" ); if ( mVectorLayer && mVectorLayer->geometryType() != QGis::Point ) { mGroupPoint->setVisible( false ); mGroupPoint->setEnabled( false ); + mGroupDrawingByField->setVisible( false ); + mGroupDrawingByField->setEnabled( false ); } if ( mDisabled ) diff --git a/src/plugins/diagram_overlay/qgsdiagramdialogbase.ui b/src/plugins/diagram_overlay/qgsdiagramdialogbase.ui index c9c2846a87d..8fb30b47f1c 100644 --- a/src/plugins/diagram_overlay/qgsdiagramdialogbase.ui +++ b/src/plugins/diagram_overlay/qgsdiagramdialogbase.ui @@ -1,7 +1,8 @@ - + + QgsDiagramDialogBase - - + + 0 0 @@ -9,95 +10,74 @@ 441 - + Dialog - - - - + + + + Display diagrams - - - + + + 6 - - 0 - - - 0 - - - 0 - - + 0 - - - Diagram type: + + + Diagram type - + - - - - + + + + - - - + + + 0 - - 0 - - - 0 - - - 0 - - + 6 - - 6 - - - + + - - - - + + + + - - - - Classification attribute: + + + + Classification attribute - - + + - - - - Classification type: + + + + Classification type diff --git a/src/plugins/diagram_overlay/qgslinearlyscalingdialogbase.ui b/src/plugins/diagram_overlay/qgslinearlyscalingdialogbase.ui index d809e211435..cf6db76980c 100644 --- a/src/plugins/diagram_overlay/qgslinearlyscalingdialogbase.ui +++ b/src/plugins/diagram_overlay/qgslinearlyscalingdialogbase.ui @@ -1,7 +1,8 @@ - + + QgsLinearlyScalingDialogBase - - + + 0 0 @@ -9,52 +10,52 @@ 91 - + Form - - - - + + + + Scale linearly between 0 and the following attribute value/ diagram size: - - + + - - - find maximum Value: + + + Find maximum value - + - - - Size: + + + Size - - + + 10000000 - - - Size unit: + + + Size unit - + diff --git a/src/plugins/diagram_overlay/qgswkndiagramfactorywidgetbase.ui b/src/plugins/diagram_overlay/qgswkndiagramfactorywidgetbase.ui index bd11edc49c0..7b554e623f1 100644 --- a/src/plugins/diagram_overlay/qgswkndiagramfactorywidgetbase.ui +++ b/src/plugins/diagram_overlay/qgswkndiagramfactorywidgetbase.ui @@ -1,7 +1,8 @@ - + + QgsWKNDiagramFactoryWidgetBase - - + + 0 0 @@ -9,86 +10,65 @@ 277 - + Form - - - - + + + + 6 - - 0 - - - 0 - - - 0 - - + 0 - - - Attributes: + + + Attributes - + - - - + + + 0 - - 0 - - - 0 - - - 0 - - + 6 - - 6 - - - - + + + 2 - + 1 - + 1 - - - + + + Remove attribute - - - + + + Add attribute @@ -97,6 +77,12 @@ + + mAttributesComboBox + mAddPushButton + mRemovePushButton + mAttributesTreeWidget + diff --git a/src/ui/qgscontinuouscolordialogbase.ui b/src/ui/qgscontinuouscolordialogbase.ui index b32dfea1f19..8dfa39541d3 100644 --- a/src/ui/qgscontinuouscolordialogbase.ui +++ b/src/ui/qgscontinuouscolordialogbase.ui @@ -1,7 +1,8 @@ - + + QgsContinuousColorDialogBase - - + + 0 0 @@ -9,22 +10,22 @@ 155 - + Continuous color - - + + 9 - + 6 - - + + - - - + + + 0 20 @@ -32,9 +33,9 @@ - - - + + + 100 0 @@ -42,25 +43,25 @@ - - - + + + 0 20 - - Maximum Value: + + Maximum value - + btnMaxValue - - - + + + 100 0 @@ -68,61 +69,61 @@ - - - + + + 0 20 - - Outline Width: + + Outline width - - - + + + 0 20 - - Minimum Value: + + Minimum value - + btnMinValue - - - + + + 0 20 - - Classification Field: + + Classification field - + classificationComboBox - - - + + + Draw polygon outline - + QgsColorButton diff --git a/src/ui/qgsgraduatedsymboldialogbase.ui b/src/ui/qgsgraduatedsymboldialogbase.ui index 08ec44f27bb..a38f620feb8 100644 --- a/src/ui/qgsgraduatedsymboldialogbase.ui +++ b/src/ui/qgsgraduatedsymboldialogbase.ui @@ -1,231 +1,210 @@ - + + QgsGraduatedSymbolDialogBase - - + + 0 0 - 500 - 437 + 548 + 479 - + 300 100 - + 32767 32767 - + graduated Symbol - - + + 0 - - 8 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 0 - 20 - - - - Classification field - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - Mode - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - - - - - - 0 - 0 - - - - - 0 - 30 - - - - Number of classes - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Minimum - - - - 40 - 20 - - - - - - + + - - - - 0 - 0 - - - - Classify - - - - - - - Delete class - - + + + + + + 0 + 0 + + + + + 0 + 20 + + + + Classification field + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + Mode + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + + + + + + 0 + 0 + + + + + 0 + 30 + + + + Number of classes + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + + + + + + 0 + 0 + + + + Classify + + + + + + + Delete class + + + + - - - - + + + + 0 0 + + 0 + + + - - - - + + + + 0 0 - - 1 - - - - + classificationComboBox modeComboBox numberofclassesspinbox mClassifyButton mDeleteClassButton - mClassListWidget diff --git a/src/ui/qgssinglesymboldialogbase.ui b/src/ui/qgssinglesymboldialogbase.ui index cbab1a68e0b..082e1fcbf7c 100644 --- a/src/ui/qgssinglesymboldialogbase.ui +++ b/src/ui/qgssinglesymboldialogbase.ui @@ -1,43 +1,47 @@ - + + QgsSingleSymbolDialogBase - - + + 0 0 - 710 - 443 + 703 + 494 - - + + 0 0 - + Single Symbol - - - - + + + 0 + + + + 0 22 - + Label - + mLabelEdit - - - + + + 0 22 @@ -45,334 +49,347 @@ - - - - + + + + 0 0 - + Point Symbol - - - - + + + + + + 0 + 0 + + + QAbstractItemView::DragDrop - + false - + 0 -1 - + QListView::Adjust - + QListView::IconMode - + true - + false - - - - Rotation field - - - mRotationClassificationComboBox - - - - - - - - 0 - 20 - - - - - - - - - 0 - 20 - - - - - - - - Area scale field - - - mScaleClassificationComboBox - - - - - - - - - - Symbol field - - - mSymbolComboBox - - - - - - + + + Size - + mPointSizeSpinBox - - - + + + 5 - + 1000000.000000000000000 - + 0.100000000000000 - + 1.000000000000000 - - - - Size in map units + + + + In map units + + + - - - - - 0 - 0 - - - - Style Options - - - - - - Outline style - - - cboOutlineStyle - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - - 172 - 16777215 - - - - - - - - Outline color - - - btnOutlineColor - - - - - - - - 0 - 0 - - - - - 32 - 20 - - - - - 32 - 16777215 - - - - - - - - - - - Outline width - - - outlinewidthspinbox - - - - - - - - 0 - 20 - - - - - 172 - 16777215 - - - - 0.100000000000000 - - - - - - - Fill style - - - cboFillStyle - - - - - - - - + + + + + + Drawing by field + + + + + + Rotation + + + mRotationClassificationComboBox + + + + + + 0 20 - + + + + + + Area scale + + + mScaleClassificationComboBox + + + + + + - 142 - 16777215 + 0 + 20 - - - - ... + + + + Symbol + + + mSymbolComboBox + + + - - - - - Fill color - - - btnFillColor - - - - - - - - 0 - 0 - - - - - 32 - 20 - - - - - 32 - 16777215 - - - - - - - - - - - Qt::Horizontal - - - - 271 - 20 - - - - - - + + + + + + + + Fill options + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + + 172 + 16777215 + + + + + + + + ... + + + + + + + + 0 + 0 + + + + + 32 + 20 + + + + + 32 + 16777215 + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + 0 + 0 + + + + Outline options + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + + 172 + 16777215 + + + + + + + + + 0 + 0 + + + + + 32 + 20 + + + + + 32 + 16777215 + + + + + + + + + + + Width + + + outlinewidthspinbox + + + + + + + + 0 + 20 + + + + + 172 + 16777215 + + + + 0.100000000000000 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + - + QgsColorButton @@ -386,14 +403,9 @@ mRotationClassificationComboBox mSymbolComboBox mScaleClassificationComboBox - mPointSizeSpinBox - mPointSizeUnitsCheckBox cboOutlineStyle btnOutlineColor outlinewidthspinbox - cboFillStyle - toolSelectTexture - btnFillColor diff --git a/src/ui/qgsuniquevaluedialogbase.ui b/src/ui/qgsuniquevaluedialogbase.ui index 180ab380fce..08b1e0e4539 100644 --- a/src/ui/qgsuniquevaluedialogbase.ui +++ b/src/ui/qgsuniquevaluedialogbase.ui @@ -1,67 +1,68 @@ - + + QgsUniqueValueDialogBase - - + + 0 0 - 500 + 661 408 - - + + 0 0 - + Form1 - - + + 0 - + 8 - + 0 - + 0 - - - - + + + + 0 0 - + 0 20 - + Classification field - + mClassificationComboBox - - - - + + + + 0 0 - + 0 20 @@ -69,17 +70,17 @@ - - + + - + Qt::Horizontal - + QSizePolicy::Minimum - + 111 20 @@ -88,65 +89,65 @@ - - + + Classify - - + + Add class - - + + Delete classes - - + + Randomize Colors - - + + Reset Colors - - - - + + + + 0 0 - - - - + + + + 0 0 - - + + - + Restrict changes to common properties @@ -156,9 +157,22 @@ + + + + Qt::Vertical + + + + 20 + 40 + + + + - + mClassificationComboBox mClassifyButton diff --git a/src/ui/qgsvectorlayerpropertiesbase.ui b/src/ui/qgsvectorlayerpropertiesbase.ui index 4d85cf00875..6ce02b46027 100644 --- a/src/ui/qgsvectorlayerpropertiesbase.ui +++ b/src/ui/qgsvectorlayerpropertiesbase.ui @@ -1,170 +1,171 @@ - + + QgsVectorLayerPropertiesBase - - + + 0 0 - 839 - 675 + 678 + 600 - + 0 600 - + Layer Properties - + - + true - - - - + + + + 3 - + 1 - - + + Restore Default Style - - + + Save As Default - - + + Load Style ... - - + + Save Style ... - - - + + + Qt::Horizontal - + QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok - - - + + + true - - + + 0 0 - + false - + QTabWidget::Rounded - + 0 - - + + General - - - - + + + + Options - - - - + + + + Display name - + txtDisplayName - - + + - - - + + + Display field for the Identify Results dialog box - + This sets the display field for the Identify Results dialog box - + Display field - + displayFieldComboBox - - - + + + Use this control to set which field is placed at the top level of the Identify Results dialog box. - - - + + + true - - - + + + Create Spatial Index - - - + + + Specify the coordinate reference system of the layer's geometry. - + Specify the coordinate reference system of the layer's geometry. - + Specify CRS @@ -172,60 +173,60 @@ - - - + + + Use scale dependent rendering - + true - - + + 11 - - - + + + Maximum - + spinMaximumScale - - - + + + Minimum - + spinMinimumScale - - - + + + Minimum scale at which this layer will be displayed. - + 1 - + 100000000 - - - + + + Maximum scale at which this layer will be displayed. - + 1 - + 100000000 @@ -233,37 +234,37 @@ - - - + + + Subset - - + + 11 - - - + + + false - + false - + false - + - + Qt::Horizontal - + QSizePolicy::Expanding - + 480 21 @@ -271,9 +272,9 @@ - - - + + + Query Builder @@ -283,54 +284,54 @@ - - - + + + 0 0 - + Symbology - - - - - + + + + + 0 0 - + 32767 22 - + Legend type - + legendtypecombobox - - - - + + + + 0 0 - + 0 26 - + 32767 22 @@ -338,231 +339,231 @@ - - - - + + + + 0 0 - + Transparency - + sliderTransparency - - - - + + + + 0 0 - + 255 - + 0 - + Qt::Horizontal - - - - + + + + 0 0 - + QFrame::NoFrame - + QFrame::Sunken - + 1 - - + + - - + + Metadata - - + + 11 - - - + + + 2 - + true - - + + Labels - - - - - + + + + + 0 0 - + Display labels - - - + + + false - - + + 0 0 - + QFrame::NoFrame - + QFrame::Plain - - + + Actions - - - - - + + + + + 0 0 - + QFrame::NoFrame - + QFrame::Raised - - + + Attributes - - - + + + - - - + + + 0 0 - + New column - + - + ../xpm/new_attribute.png../xpm/new_attribute.png - + Ctrl+N - - + + Delete column - + - + ../xpm/delete_attribute.png../xpm/delete_attribute.png - + Ctrl+X - - + + Toggle editing mode - + Click to toggle table editing - + - + true - - + + Field calculator - + Click to toggle table editing - + - + false - + Qt::Horizontal - + 658 19 @@ -572,21 +573,21 @@ - - - - + + + + 0 0 - + 256 0 - + false @@ -597,7 +598,7 @@ - + legendtypecombobox sliderTransparency @@ -628,11 +629,11 @@ labelOptionsFrame setEnabled(bool) - + 60 53 - + 61 68