";
// Start a nested table in this trow
myMetedata += "";
- myMetedata += "";
- myMetedata += "" + tr("Field") + "";
+ myMetedata += " |
---|
";
+ myMetedata += tr("Field");
myMetedata += " | ";
- myMetedata += "";
- myMetedata += "" + tr("Type") + "";
+ myMetedata += " | ";
+ myMetedata += tr("Type");
myMetedata += " | ";
- myMetedata += "";
- myMetedata += "" + tr("Length") + "";
+ myMetedata += " | ";
+ myMetedata += tr("Length");
myMetedata += " | ";
- myMetedata += "";
- myMetedata += "" + tr("Precision") + "";
+ myMetedata += " | ";
+ myMetedata += tr("Precision");
myMetedata += " | ";
- myMetedata += "";
- myMetedata += "" + tr("Comment") + "";
+ myMetedata += " | ";
+ myMetedata += tr("Comment");
myMetedata += " | ";
//get info for each field by looping through them
@@ -563,19 +570,19 @@ QString QgsVectorLayerProperties::getMetadata()
{
const QgsField& myField = *it;
- myMetedata += "
---|
";
+ myMetedata += " | ";
myMetedata += myField.name();
myMetedata += " | ";
- myMetedata += "";
+ myMetedata += " | ";
myMetedata += myField.typeName();
myMetedata += " | ";
- myMetedata += "";
+ myMetedata += " | ";
myMetedata += QString("%1").arg(myField.length());
myMetedata += " | ";
- myMetedata += "";
+ myMetedata += " | ";
myMetedata += QString("%1").arg(myField.precision());
myMetedata += " | ";
- myMetedata += "";
+ myMetedata += " | ";
myMetedata += QString("%1").arg(myField.comment());
myMetedata += " | ";
}
diff --git a/src/core/qgsapplication.cpp b/src/core/qgsapplication.cpp
index ad4e1c7f2dc..2caf9765beb 100644
--- a/src/core/qgsapplication.cpp
+++ b/src/core/qgsapplication.cpp
@@ -222,18 +222,46 @@ void QgsApplication::exitQgis()
QString QgsApplication::reportStyleSheet()
{
- QString myStyle = ".glossy,h1,h2,h3{ background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565); color: white; padding-left: 4px; border: 1px solid #6c6c6c; }";
- myStyle += "h1 {font-size : 22pt;}";
- myStyle += "h2 {font-size : 18pt;}";
- myStyle += "h3 {font-size : 14pt;}";
- myStyle += ".cellHeader {color:#466aa5; font-size : 12pt;}";
- myStyle += ".largeCell {color:#000000; font-size : 12pt;}";
- myStyle += "table "
+ QString myStyle;
+ myStyle = ".glossy{ background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565);"
+ "color: white;"
+ "padding-left: 4px;"
+ "padding-top: 20px;"
+ "padding-bottom: 8px;"
+ "border: 1px solid #6c6c6c;"
+ "}"
+ ".glossyBlue{ background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #3087d3, stop: 0.5 #3794e2, stop: 0.6 #43a6f9, stop:1 #2f87d1);"
+ "color: white;"
+ "padding-left: 4px;"
+ "padding-top: 20px;"
+ "padding-bottom: 8px;"
+ "border: 1px solid #44a7fb;"
+ "}"
+ "h1 {font-size : 22pt; }"
+ "h2 {font-size : 18pt; }"
+ "h3 {font-size : 14pt; }"
+ ".glossyh3{ "
+ "background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565);"
+ "color: white; "
+ "padding-left: 4px; "
+ "padding-top: 20px;"
+ "padding-bottom: 8px; "
+ "border: 1px solid #6c6c6c; }"
+ ".headerCell, th {color:#466aa5; "
+ "font-size : 12pt; "
+ "font-weight: bold; "
+ "width: 100%;"
+ "align: left;"
+ "}"
+ ".parameterHeader {font-weight: bold;}"
+ ".largeCell {color:#000000; font-size : 12pt;}"
+ ".alternateCell {font-weight: bold;}"
+ ".rocTable "
"{"
" border-width: 1px 1px 1px 1px;"
" border-spacing: 2px;"
- " border-style: solid solid solid solid;"
- " border-color: black black black black;"
+ " border-style: solid solid solid solid;" //unsupported
+ " border-color: black black black black;" //unsupported
" border-collapse: separate;"
" background-color: white;"
"}";
diff --git a/src/core/raster/qgsrasterlayer.cpp b/src/core/raster/qgsrasterlayer.cpp
index ce87fb8522b..2cb83c621bd 100644
--- a/src/core/raster/qgsrasterlayer.cpp
+++ b/src/core/raster/qgsrasterlayer.cpp
@@ -3442,7 +3442,7 @@ static
QString
makeTableCell_( QString const & value )
{
- return "" + value + " | ";
+ return "\n" + value + " \n";
} // makeTableCell_
@@ -3490,40 +3490,37 @@ cStringList2Q_( char ** stringList )
QString QgsRasterLayer::getMetadata()
{
- QString myMetadataQString ;
- myMetadataQString += "";
- myMetadataQString += "";
- myMetadataQString += tr("Driver:");
- myMetadataQString += " | ";
- myMetadataQString += "";
+ QString myMetadata ;
+ myMetadata += " " + tr("Driver:") + " \n";
+ myMetadata += "";
if (mProviderKey.isEmpty())
{
- myMetadataQString += QString(GDALGetDescription(GDALGetDatasetDriver(mGdalDataset)));
- myMetadataQString += " ";
- myMetadataQString += QString(GDALGetMetadataItem(GDALGetDatasetDriver(mGdalDataset),GDAL_DMD_LONGNAME,NULL));
+ myMetadata += QString(GDALGetDescription(GDALGetDatasetDriver(mGdalDataset)));
+ myMetadata += " ";
+ myMetadata += QString(GDALGetMetadataItem(GDALGetDatasetDriver(mGdalDataset),GDAL_DMD_LONGNAME,NULL));
}
else
{
- myMetadataQString += mDataProvider->description();
+ myMetadata += mDataProvider->description();
}
- myMetadataQString += " | ";
+ myMetadata += "\n";
if (!mProviderKey.isEmpty())
{
// Insert provider-specific (e.g. WMS-specific) metadata
- myMetadataQString += mDataProvider->getMetadata();
+ myMetadata += mDataProvider->getMetadata();
}
else
{
// my added code (MColetti)
- myMetadataQString += "";
- myMetadataQString += tr("Dataset Description");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QFile::decodeName(GDALGetDescription(mGdalDataset));
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Dataset Description");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += QFile::decodeName(GDALGetDescription(mGdalDataset));
+ myMetadata += " \n";
char ** GDALmetadata = GDALGetMetadata(mGdalDataset,NULL);
@@ -3531,7 +3528,7 @@ QString QgsRasterLayer::getMetadata()
if ( GDALmetadata )
{
QStringList metadata = cStringList2Q_( GDALmetadata );
- myMetadataQString += makeTableCells_( metadata );
+ myMetadata += makeTableCells_( metadata );
}
else
{
@@ -3540,13 +3537,14 @@ QString QgsRasterLayer::getMetadata()
for ( int i = 1; i <= GDALGetRasterCount(mGdalDataset); ++i )
{
+ myMetadata += "" + tr("Band %1").arg(i) + " \n";
GDALRasterBandH gdalBand = GDALGetRasterBand(mGdalDataset,i);
GDALmetadata = GDALGetMetadata(gdalBand,NULL);
if ( GDALmetadata )
{
QStringList metadata = cStringList2Q_( GDALmetadata );
- myMetadataQString += makeTableCells_( metadata );
+ myMetadata += makeTableCells_( metadata );
}
else
{
@@ -3558,7 +3556,7 @@ QString QgsRasterLayer::getMetadata()
if ( GDALcategories )
{
QStringList categories = cStringList2Q_( GDALcategories );
- myMetadataQString += makeTableCells_( categories );
+ myMetadata += makeTableCells_( categories );
}
else
{
@@ -3569,80 +3567,80 @@ QString QgsRasterLayer::getMetadata()
// end my added code
- myMetadataQString += "";
- myMetadataQString += tr("Dimensions:");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += tr("X: ") + QString::number(GDALGetRasterXSize(mGdalDataset)) +
+ myMetadata += " ";
+ myMetadata += tr("Dimensions:");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += tr("X: ") + QString::number(GDALGetRasterXSize(mGdalDataset)) +
tr(" Y: ") + QString::number(GDALGetRasterYSize(mGdalDataset)) + tr(" Bands: ") + QString::number(GDALGetRasterCount(mGdalDataset));
- myMetadataQString += " | ";
+ myMetadata += "\n";
//just use the first band
GDALRasterBandH myGdalBand = GDALGetRasterBand(mGdalDataset,1);
- myMetadataQString += "";
- myMetadataQString += tr("No Data Value");
- myMetadataQString += " | ";
- myMetadataQString += "";
+ myMetadata += " ";
+ myMetadata += tr("No Data Value");
+ myMetadata += " \n";
+ myMetadata += "";
if(mValidNoDataValue)
{
- myMetadataQString += QString::number(mNoDataValue);
+ myMetadata += QString::number(mNoDataValue);
}
else
{
- myMetadataQString += "*" + tr("NoDataValue not set") + "*";
+ myMetadata += "*" + tr("NoDataValue not set") + "*";
}
- myMetadataQString += " | ";
+ myMetadata += "\n";
- myMetadataQString += "";
- myMetadataQString += "";
- myMetadataQString += tr("Data Type:");
- myMetadataQString += " | ";
- myMetadataQString += "";
+ myMetadata += "\n";
+ myMetadata += " ";
+ myMetadata += tr("Data Type:");
+ myMetadata += " \n";
+ myMetadata += "";
switch (GDALGetRasterDataType(myGdalBand))
{
case GDT_Byte:
- myMetadataQString += tr("GDT_Byte - Eight bit unsigned integer");
+ myMetadata += tr("GDT_Byte - Eight bit unsigned integer");
break;
case GDT_UInt16:
- myMetadataQString += tr("GDT_UInt16 - Sixteen bit unsigned integer ");
+ myMetadata += tr("GDT_UInt16 - Sixteen bit unsigned integer ");
break;
case GDT_Int16:
- myMetadataQString += tr("GDT_Int16 - Sixteen bit signed integer ");
+ myMetadata += tr("GDT_Int16 - Sixteen bit signed integer ");
break;
case GDT_UInt32:
- myMetadataQString += tr("GDT_UInt32 - Thirty two bit unsigned integer ");
+ myMetadata += tr("GDT_UInt32 - Thirty two bit unsigned integer ");
break;
case GDT_Int32:
- myMetadataQString += tr("GDT_Int32 - Thirty two bit signed integer ");
+ myMetadata += tr("GDT_Int32 - Thirty two bit signed integer ");
break;
case GDT_Float32:
- myMetadataQString += tr("GDT_Float32 - Thirty two bit floating point ");
+ myMetadata += tr("GDT_Float32 - Thirty two bit floating point ");
break;
case GDT_Float64:
- myMetadataQString += tr("GDT_Float64 - Sixty four bit floating point ");
+ myMetadata += tr("GDT_Float64 - Sixty four bit floating point ");
break;
case GDT_CInt16:
- myMetadataQString += tr("GDT_CInt16 - Complex Int16 ");
+ myMetadata += tr("GDT_CInt16 - Complex Int16 ");
break;
case GDT_CInt32:
- myMetadataQString += tr("GDT_CInt32 - Complex Int32 ");
+ myMetadata += tr("GDT_CInt32 - Complex Int32 ");
break;
case GDT_CFloat32:
- myMetadataQString += tr("GDT_CFloat32 - Complex Float32 ");
+ myMetadata += tr("GDT_CFloat32 - Complex Float32 ");
break;
case GDT_CFloat64:
- myMetadataQString += tr("GDT_CFloat64 - Complex Float64 ");
+ myMetadata += tr("GDT_CFloat64 - Complex Float64 ");
break;
default:
- myMetadataQString += tr("Could not determine raster data type.");
+ myMetadata += tr("Could not determine raster data type.");
}
- myMetadataQString += " | ";
+ myMetadata += "\n";
- myMetadataQString += "";
- myMetadataQString += tr("Pyramid overviews:");
- myMetadataQString += " | ";
- myMetadataQString += "";
+ myMetadata += " ";
+ myMetadata += tr("Pyramid overviews:");
+ myMetadata += " \n";
+ myMetadata += "";
if( GDALGetOverviewCount(myGdalBand) > 0 )
{
@@ -3653,29 +3651,29 @@ QString QgsRasterLayer::getMetadata()
{
GDALRasterBandH myOverview;
myOverview = GDALGetOverview( myGdalBand, myOverviewInt );
- myMetadataQString += " X : " + QString::number(GDALGetRasterBandXSize( myOverview ));
- myMetadataQString += ",Y " + QString::number(GDALGetRasterBandYSize( myOverview ) ) + " ";
+ myMetadata += "X : " + QString::number(GDALGetRasterBandXSize( myOverview ));
+ myMetadata += ",Y " + QString::number(GDALGetRasterBandYSize( myOverview ) ) + " ";
}
}
- myMetadataQString += " | ";
+ myMetadata += "\n";
} // if (mProviderKey.isEmpty())
- myMetadataQString += "";
- myMetadataQString += tr("Layer Spatial Reference System: ");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += mSRS->proj4String();
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Layer Spatial Reference System: ");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += mSRS->proj4String();
+ myMetadata += " \n";
// output coordinate system
// TODO: this is not related to layer, to be removed? [MD]
/*
- myMetadataQString += "";
- myMetadataQString += tr("Project Spatial Reference System: ");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += mCoordinateTransform->destSRS().proj4String();
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Project Spatial Reference System: ");
+ myMetadata += "\n";
+ myMetadata += " ";
+ myMetadata += mCoordinateTransform->destSRS().proj4String();
+ myMetadata += " \n";
*/
if (mProviderKey.isEmpty())
@@ -3688,69 +3686,58 @@ QString QgsRasterLayer::getMetadata()
}
else
{
- myMetadataQString += " | ";
- myMetadataQString += tr("Origin:");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(mGeoTransform[0]);
- myMetadataQString += ",";
- myMetadataQString += QString::number(mGeoTransform[3]);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Origin:");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += QString::number(mGeoTransform[0]);
+ myMetadata += ",";
+ myMetadata += QString::number(mGeoTransform[3]);
+ myMetadata += " \n";
- myMetadataQString += "";
- myMetadataQString += tr("Pixel Size:");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(mGeoTransform[1]);
- myMetadataQString += ",";
- myMetadataQString += QString::number(mGeoTransform[5]);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Pixel Size:");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += QString::number(mGeoTransform[1]);
+ myMetadata += ",";
+ myMetadata += QString::number(mGeoTransform[5]);
+ myMetadata += " \n";
}
//
// Add the stats for each band to the output table
//
- myMetadataQString += "";
-
- // Start a nested table in this trow
- myMetadataQString += "";
- myMetadataQString += "";
- myMetadataQString += tr("Property") ;
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += tr("Value");
- myMetadataQString += " | ";
-
int myBandCountInt = getBandCount();
for (int myIteratorInt = 1; myIteratorInt <= myBandCountInt; ++myIteratorInt)
{
QgsDebugMsg("Raster properties : checking if band " + QString::number(myIteratorInt) + " has stats? ");
//band name
- myMetadataQString += " ";
- myMetadataQString += " ";
+ myMetadata += "\n";
+ myMetadata += tr("Band");
+ myMetadata += " \n";
+ myMetadata += "";
+ myMetadata += getRasterBandName(myIteratorInt);
+ myMetadata += " \n";
//band number
- myMetadataQString += "";
- myMetadataQString += tr("Band No");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myIteratorInt);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Band No");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myIteratorInt);
+ myMetadata += " \n";
//check if full stats for this layer have already been collected
if (!hasStats(myIteratorInt)) //not collected
{
QgsDebugMsg(".....no");
- myMetadataQString += "";
- myMetadataQString += tr("No Stats");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += tr("No stats collected yet");
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("No Stats");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += tr("No stats collected yet");
+ myMetadata += " \n";
}
else // collected - show full detail
{
@@ -3758,80 +3745,74 @@ QString QgsRasterLayer::getMetadata()
QgsRasterBandStats myRasterBandStats = getRasterBandStats(myIteratorInt);
//Min Val
- myMetadataQString += "";
- myMetadataQString += tr("Min Val");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.minVal, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Min Val");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.minVal, 'f',10);
+ myMetadata += " \n";
// Max Val
- myMetadataQString += "";
- myMetadataQString += tr("Max Val");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.maxVal, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Max Val");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.maxVal, 'f',10);
+ myMetadata += " \n";
// Range
- myMetadataQString += "";
- myMetadataQString += tr("Range");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.range, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Range");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.range, 'f',10);
+ myMetadata += " \n";
// Mean
- myMetadataQString += "";
- myMetadataQString += tr("Mean");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.mean, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Mean");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.mean, 'f',10);
+ myMetadata += " \n";
//sum of squares
- myMetadataQString += "";
- myMetadataQString += tr("Sum of squares");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.sumSqrDev, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Sum of squares");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.sumSqrDev, 'f',10);
+ myMetadata += " \n";
//standard deviation
- myMetadataQString += "";
- myMetadataQString += tr("Standard Deviation");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.stdDev, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Standard Deviation");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.stdDev, 'f',10);
+ myMetadata += " \n";
//sum of all cells
- myMetadataQString += "";
- myMetadataQString += tr("Sum of all cells");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.sum, 'f',10);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Sum of all cells");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.sum, 'f',10);
+ myMetadata += " \n";
//number of cells
- myMetadataQString += "";
- myMetadataQString += tr("Cell Count");
- myMetadataQString += " | ";
- myMetadataQString += "";
- myMetadataQString += QString::number(myRasterBandStats.elementCount);
- myMetadataQString += " | ";
+ myMetadata += "";
+ myMetadata += tr("Cell Count");
+ myMetadata += " \n";
+ myMetadata += "\n";
+ myMetadata += QString::number(myRasterBandStats.elementCount);
+ myMetadata += " \n";
}
}
- myMetadataQString += " "; //end of nested table
- myMetadataQString += " | "; //end of stats container table row
} // if (mProviderKey.isEmpty())
- //
- // Close the table
- //
-
- myMetadataQString += " ";
- return myMetadataQString;
+ QgsDebugMsg(myMetadata);
+ return myMetadata;
}
QString QgsRasterLayer::buildPyramids(RasterPyramidList const & theRasterPyramidList,
diff --git a/src/ui/qgsabout.ui b/src/ui/qgsabout.ui
index 40e95782feb..57e2c1a5c97 100644
--- a/src/ui/qgsabout.ui
+++ b/src/ui/qgsabout.ui
@@ -16,12 +16,6 @@
true
-
- 9
-
-
- 6
-
-
@@ -32,20 +26,8 @@
About
-
- 9
-
-
- 6
-
-
-
- 0
-
-
- 6
-
-
@@ -55,7 +37,7 @@
- ../../images/icons/qgis-icon-60x60.png
+ :/images/icons/qgis-icon-60x60.png
false
@@ -63,64 +45,106 @@
-
-
-
- 0
+
+
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:x-large; font-weight:600;"><span style=" font-size:x-large;">Quantum GIS (QGIS)</span></p></body></html>
-
- 6
+
+ Qt::AlignCenter
-
-
-
-
- <h2>Quantum GIS (qgis)</h2>
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- Version
-
-
- Qt::AlignCenter
-
-
-
-
+
- -
-
-
-
-
+
-
+
+
+ Version
+
+
+ Qt::AlignCenter
+
+
+ true
+
-
-
-
- QGIS Home Page
+
+
+ Qt::Vertical
-
- false
+
+
+ 20
+ 21
+
+
+
+
+ -
+
+
+ Quantum GIS is licensed under the GNU General Public License
+
+
+ Qt::AlignCenter
+
+
+ true
- -
-
+
-
+
- Subscribe to the QGIS-User mailing list
+ http://www.gnu.org/licenses
-
- false
+
+ Qt::AlignCenter
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+ -
+
+
-
+
+
+ QGIS Home Page
+
+
+ false
+
+
+
+ -
+
+
+ Join our user mailing list
+
+
+ false
+
+
+
+
+
@@ -128,12 +152,6 @@
What's New
-
- 9
-
-
- 6
-
-
@@ -157,72 +175,10 @@
Developers
-
- 9
-
-
- 6
-
-
-
-
-
- -
-
-
-
- 7
- 5
- 0
- 0
-
-
-
- QFrame::StyledPanel
-
-
- QFrame::Raised
-
-
-
- 9
-
-
- 6
-
-
-
-
-
-
- 7
- 7
- 0
- 0
-
-
-
- QFrame::NoFrame
-
-
- QFrame::Plain
-
-
-
-
-
- false
-
-
- Qt::AlignCenter
-
-
-
-
-
-
- -
-
-
- <h2>QGIS Developers</h2>
+
-
+
+
+ true
@@ -233,12 +189,6 @@
Providers
-
- 9
-
-
- 6
-
-
@@ -249,18 +199,8 @@
Sponsors
-
- 9
-
-
- 6
-
-
-
-
- true
-
-
+
@@ -268,12 +208,6 @@
-
-
- 0
-
-
- 6
-
-
@@ -312,11 +246,12 @@
tabWidget
btnQgisUser
btnQgisHome
- lblUrls
buttonCancel
txtBrowserPlugins
listBox1
-
+
+
+
diff --git a/src/ui/qgsaddattrdialogbase.ui b/src/ui/qgsaddattrdialogbase.ui
index c2dece3e39c..3ac17317bcd 100644
--- a/src/ui/qgsaddattrdialogbase.ui
+++ b/src/ui/qgsaddattrdialogbase.ui
@@ -5,8 +5,8 @@
0
0
- 303
- 171
+ 312
+ 132
@@ -16,70 +16,18 @@
true
-
- 9
-
-
- 6
-
-
-
-
-
- 0
+
-
+
+
+ Name:
-
- 6
+
+ mNameEdit
-
-
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Expanding
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
- OK
-
-
-
- -
-
-
- Cancel
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Expanding
-
-
-
- 60
- 20
-
-
-
-
-
+
- -
-
+
-
+
-
@@ -91,16 +39,13 @@
- -
-
+
-
+
- -
-
-
- Name:
-
-
- mNameEdit
+
-
+
+
+ QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok
@@ -110,9 +55,40 @@
mNameEdit
mTypeBox
- mOkButton
- mCancelButton
-
+
+
+ buttonBox
+ accepted()
+ QgsAddAttrDialogBase
+ accept()
+
+
+ 260
+ 109
+
+
+ 307
+ 68
+
+
+
+
+ buttonBox
+ rejected()
+ QgsAddAttrDialogBase
+ reject()
+
+
+ 196
+ 106
+
+
+ 6
+ 77
+
+
+
+
diff --git a/src/ui/qgsattributeactiondialogbase.ui b/src/ui/qgsattributeactiondialogbase.ui
index ad2df933f01..d4a78203d30 100644
--- a/src/ui/qgsattributeactiondialogbase.ui
+++ b/src/ui/qgsattributeactiondialogbase.ui
@@ -5,80 +5,205 @@
0
0
- 513
- 432
+ 596
+ 560
-
- 5
- 5
+
0
0
- Form1
+ Attribute Actions
-
- 0
-
-
- 6
-
- -
-
-
- Qt::Vertical
-
-
- QSizePolicy::Expanding
-
-
-
- 85
- 141
-
-
-
-
- -
-
-
- Remove the selected action
-
-
- Remove
+
-
+
+
+ Action properties
+
+
-
+
+
+ Enter the name of an action here. The name should be unique (qgis will make it unique if necessary).
+
+
+ Name
+
+
+ actionName
+
+
+
+ -
+
+
+ Enter the action name here
+
+
+ Enter the name of an action here. The name should be unique (qgis will make it unique if necessary).
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Maximum
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if preceeded by a backslash
+
+
+ Action
+
+
+ actionAction
+
+
+
+ -
+
+
+ Enter the action command here
+
+
+ Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if preceeded by a backslash
+
+
+
+ -
+
+
+ Browse for action
+
+
+ Click to browse for an action
+
+
+ Clicking the buttone will let you select an application to use as the action
+
+
+ ...
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Maximum
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ The valid attribute names for this layer
+
+
+
+ -
+
+
+ Inserts the selected field into the action, prepended with a %
+
+
+ Insert field
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Maximum
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Maximum
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ Captures any output from the action
+
+
+ Captures the standard output or error generated by the action and displays it in a dialog box
+
+
+ Capture output
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Maximum
+
+
+
+ 40
+ 20
+
+
+
+
+
- -
-
-
- Move the selected action down
-
-
- Move down
-
-
-
- -
-
-
- Move the selected action up
-
-
- Move up
-
-
-
- -
+
-
-
- 7
- 7
+
0
0
@@ -112,67 +237,7 @@
- -
-
-
- Qt::Horizontal
-
-
-
- -
-
-
- The valid attribute names for this layer
-
-
-
- -
-
-
- Browse for action commands
-
-
- Browse
-
-
-
- -
-
-
- Inserts the selected field into the action, prepended with a %
-
-
- Insert field
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Expanding
-
-
-
- 51
- 29
-
-
-
-
- -
-
-
- Update the selected action
-
-
- Update action
-
-
-
- -
+
-
Inserts the action into the list above
@@ -182,62 +247,75 @@
- -
-
+
-
+
- Captures any output from the action
-
-
- Captures the standard output or error generated by the action and displays it in a dialog box
+ Update the selected action
- Capture output
+ Update action
- -
-
+
-
+
+
+ Qt::Vertical
+
+
+ QSizePolicy::Expanding
+
+
+
+ 85
+ 20
+
+
+
+
+ -
+
- Enter the action command here
-
-
- Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if preceeded by a backslash
-
-
-
- -
-
-
- Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if preceeded by a backslash
+ Move the selected action up
- Action:
-
-
- actionAction
+ Move up
- -
-
+
-
+
- Enter the action name here
-
-
- Enter the name of an action here. The name should be unique (qgis will make it unique if necessary).
-
-
-
- -
-
-
- Enter the name of an action here. The name should be unique (qgis will make it unique if necessary).
+ Move the selected action down
- Name:
+ Move down
-
- actionName
+
+
+ -
+
+
+ Qt::Vertical
+
+
+ QSizePolicy::Expanding
+
+
+
+ 85
+ 41
+
+
+
+
+ -
+
+
+ Remove the selected action
+
+
+ Remove
@@ -245,17 +323,18 @@
- moveUpButton
- moveDownButton
- removeButton
actionName
actionAction
browseButton
+ fieldComboBox
+ insertFieldButton
captureCB
insertButton
updateButton
- insertFieldButton
- fieldComboBox
+ moveUpButton
+ moveDownButton
+ attributeActionTable
+ removeButton
diff --git a/src/ui/qgsattributedialogbase.ui b/src/ui/qgsattributedialogbase.ui
index a452843540d..9e2154906bf 100644
--- a/src/ui/qgsattributedialogbase.ui
+++ b/src/ui/qgsattributedialogbase.ui
@@ -5,21 +5,15 @@
0
0
- 267
- 286
+ 329
+ 330
Enter Attribute Values
-
- 9
-
-
- 6
-
- -
+
-
2
@@ -41,75 +35,50 @@
- -
-
-
- &OK
-
-
-
- -
-
-
- &Cancel
-
-
-
-
-
-
- Qt::Horizontal
+
+
+ QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok
-
- QSizePolicy::Expanding
-
-
-
- 55
- 27
-
-
-
+
mTable
- mOkButton
- mCancelButton
- mOkButton
- clicked()
+ buttonBox
+ accepted()
QgsAttributeDialogBase
accept()
- 130
- 260
+ 277
+ 305
- 133
- 142
+ 325
+ 279
- mCancelButton
- clicked()
+ buttonBox
+ rejected()
QgsAttributeDialogBase
reject()
- 217
- 260
+ 208
+ 308
- 133
- 142
+ 163
+ 284
diff --git a/src/ui/qgsbookmarksbase.ui b/src/ui/qgsbookmarksbase.ui
index f37f41abcae..38908751f2c 100644
--- a/src/ui/qgsbookmarksbase.ui
+++ b/src/ui/qgsbookmarksbase.ui
@@ -5,37 +5,15 @@
0
0
- 344
- 263
+ 440
+ 370
Geospatial Bookmarks
-
- 9
-
-
- 6
-
- -
-
-
- Qt::Vertical
-
-
- QSizePolicy::Expanding
-
-
-
- 85
- 109
-
-
-
-
- -
+
-
false
@@ -68,40 +46,10 @@
- -
-
-
- Help
-
-
-
- -
-
-
- Close the dialog
-
-
- Close
-
-
-
- -
-
-
- Delete the currently selected bookmark
-
-
- Delete
-
-
-
- -
-
-
- Zoom to the currently selected bookmark
-
-
- Zoom To
+
-
+
+
+ QDialogButtonBox::Close|QDialogButtonBox::Help|QDialogButtonBox::NoButton
@@ -109,11 +57,26 @@
- btnZoomTo
- btnDelete
- btnClose
- btnHelp
+ lstBookmarks
+ buttonBox
-
+
+
+ buttonBox
+ rejected()
+ QgsBookmarksBase
+ reject()
+
+
+ 211
+ 342
+
+
+ 274
+ 256
+
+
+
+
diff --git a/src/ui/qgscontinuouscolordialogbase.ui b/src/ui/qgscontinuouscolordialogbase.ui
index 5686e068422..35cfcb178cc 100644
--- a/src/ui/qgscontinuouscolordialogbase.ui
+++ b/src/ui/qgscontinuouscolordialogbase.ui
@@ -5,30 +5,20 @@
0
0
- 425
- 155
+ 306
+ 205
Continuous color
-
- 8
+
+ 0
-
- 6
+
+ 0
- -
-
-
- -
-
-
- Draw polygon outline
-
-
-
-
@@ -38,13 +28,23 @@
- Classification Field:
+ Classification field
classificationComboBox
+ -
+
+
+
+ 0
+ 20
+
+
+
+
-
@@ -54,31 +54,15 @@
- Minimum Value:
+ Minimum value
btnMinValue
- -
-
-
-
- 0
- 20
-
-
-
- Outline Width:
-
-
- outlinewidthspinbox
-
-
-
- -
-
+
-
+
100
@@ -96,15 +80,15 @@
- Maximum Value:
+ Maximum value
btnMaxValue
- -
-
+
-
+
100
@@ -113,16 +97,45 @@
- -
-
+
-
+
+
+ Draw polygon outlines
+
+
+
+ -
+
0
20
+
+ Outline width
+
+
+ outlinewidthspinbox
+
+ -
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
diff --git a/src/ui/qgsgeomtypedialogbase.ui b/src/ui/qgsgeomtypedialogbase.ui
index df6d593ac3b..907ddba56a0 100644
--- a/src/ui/qgsgeomtypedialogbase.ui
+++ b/src/ui/qgsgeomtypedialogbase.ui
@@ -16,16 +16,10 @@
true
-
- 9
-
-
- 6
-
-
- File Format:
+ File format
mFileFormatComboBox
@@ -61,7 +55,7 @@
-
- Attributes:
+ Attributes
mAddAttributeButton
@@ -81,12 +75,6 @@
Type
-
- 9
-
-
- 6
-
-
diff --git a/src/ui/qgsgraduatedsymboldialogbase.ui b/src/ui/qgsgraduatedsymboldialogbase.ui
index 47d82bb44d9..08ec44f27bb 100644
--- a/src/ui/qgsgraduatedsymboldialogbase.ui
+++ b/src/ui/qgsgraduatedsymboldialogbase.ui
@@ -5,8 +5,8 @@
0
0
- 388
- 502
+ 500
+ 437
@@ -25,154 +25,208 @@
graduated Symbol
-
- 9
+
+ 0
-
- 6
+
+ 8
-
-
-
-
-
+
+ 0
+
+
+ 0
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 20
+
+
+
+ Classification field
+
+
+ Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter
+
- -
-
-
- 0
+
-
+
+
+
+ 0
+ 0
+
-
- 6
+
+
+ 0
+ 20
+
-
-
-
-
- 0
-
-
- 6
-
-
-
-
-
-
- 5
- 5
- 0
- 0
-
-
-
-
- 0
- 20
-
-
-
- Classification Field:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
- -
-
-
-
- 0
- 20
-
-
-
- Mode:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
- -
-
-
-
- 0
- 30
-
-
-
- Number of Classes:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
-
-
- -
-
-
- 0
-
-
- 6
-
-
-
-
-
-
- 0
- 20
-
-
-
-
- -
-
-
-
- 0
- 20
-
-
-
-
- -
-
-
-
- 0
- 20
-
-
-
-
-
-
-
+
- -
-
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 20
+
+
- Delete class
+ Mode
+
+
+ Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter
-
-
-
- Classify
+
+
+
+ 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
+ 0
+
+
+
+ 1
+
+
+
+
+
+ classificationComboBox
+ modeComboBox
+ numberofclassesspinbox
+ mClassifyButton
+ mDeleteClassButton
+ mClassListWidget
+
diff --git a/src/ui/qgsoptionsbase.ui b/src/ui/qgsoptionsbase.ui
index 6f3fb7dab2b..d711a72cfd7 100644
--- a/src/ui/qgsoptionsbase.ui
+++ b/src/ui/qgsoptionsbase.ui
@@ -5,8 +5,8 @@
0
0
- 871
- 512
+ 617
+ 559
@@ -22,12 +22,6 @@
true
-
- 9
-
-
- 6
-
-
@@ -37,124 +31,139 @@
&General
-
-
- 11
-
-
- 6
-
-
-
+
+
-
- General
+ Project files
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Ask to save project changes when required
+ Prompt to save project changes when required
-
- Warn me when opening a project file saved with an older version of QGIS
+ Warn when opening a project file saved with an older version of QGIS
- -
-
-
- Qt::Vertical
+
-
+
+
+ Default Map Appearance (overridden by project properties)
-
-
- 20
- 40
-
-
-
+
+ -
+
+
+ Selection color
+
+
+ pbnMeasureColour
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+
+ 100
+ 0
+
+
+
+
+
+
+
+ -
+
+
+ Background color
+
+
+ pbnCanvasColor
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+
+ 100
+ 0
+
+
+
+
+
+
+
+
+
-
-
-
-
- &Appearance
-
-
-
- 11
-
-
- 6
-
- -
+
-
- &Splash screen
+ &Application
-
- 11
-
-
- 6
-
-
-
-
-
- Hide splash screen at startup
-
-
-
-
-
-
- -
-
-
- &Icon Theme
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- <b>Note: </b>Theme changes take effect the next time QGIS is started
-
-
- Qt::AlignVCenter
-
-
-
-
-
- 0
- 0
+
0
0
- Theme
+ Icon theme
cmbTheme
@@ -173,140 +182,42 @@
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
- -
-
-
- Default Map Appearance (Overridden by project properties)
-
-
-
- 11
-
-
- 6
-
-
-
-
+
-
+
- Selection Color:
+ <b>Note: </b>Theme changes take effect the next time QGIS is started
-
- pbnMeasureColour
+
+ Qt::AlignVCenter
- -
-
-
-
- 100
- 0
-
-
-
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
- Background Color:
-
-
- pbnCanvasColor
-
-
-
- -
-
-
-
- 100
- 0
-
-
-
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
- -
-
-
- Appearance
-
-
-
- 11
-
-
- 6
-
-
-
+
-
- Capitalise layer name
+ Capitalise layer names in legend
+
+
+
+ -
+
+
+ Hide splash screen at startup
- -
+
-
Qt::Vertical
- 20
- 40
+ 547
+ 91
@@ -317,33 +228,31 @@
&Rendering
-
-
- 11
-
-
- 6
-
-
-
+
+
-
- &Update during drawing
+ Rendering behavior
-
- 11
-
-
- 6
-
-
-
-
+
-
+
- features
+ By default new la&yers added to the map should be displayed
- -
+
-
+
+
+ Number of features to draw before updating the display
+
+
+ spinBoxUpdateThreshold
+
+
+
+ -
Map display will be updated (drawn) after this many features have been read from the data source
@@ -356,59 +265,36 @@
- -
-
-
- Update display after reading
-
-
- spinBoxUpdateThreshold
-
-
-
- -
+
-
- (Set to 0 to not update the display until all features have been read)
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Use zero to prevent display updates until all features have been rendered</p></body></html>
- -
-
-
- Initial Visibility
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- By default new la&yers added to the map should be displayed
-
-
-
-
-
-
- -
+
-
- Rendering
+ Rendering quality
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -437,7 +323,7 @@
- -
+
-
Qt::Vertical
@@ -457,11 +343,17 @@
&Map tools
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -469,11 +361,17 @@
Panning and zooming
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -502,14 +400,14 @@
-
- Zoom factor:
+ Zoom factor
-
- Mouse wheel action:
+ Mouse wheel action
@@ -535,11 +433,17 @@
Measure tool
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -573,7 +477,7 @@
-
- Rubberband color:
+ Rubberband color
cmbEllipsoid
@@ -583,7 +487,7 @@
-
- Ellipsoid for distance calculations:
+ Ellipsoid for distance calculations
cmbEllipsoid
@@ -599,16 +503,25 @@
Search radius
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- (Specify the search radius as a percentage of the map width)
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Specify the search radius as a percentage of the map width</p></body></html>
true
@@ -618,7 +531,7 @@
-
- Search Radius for Identifying Features and displaying Map Tips
+ Search radius for identifying features and displaying map tips
spinBoxIdentifyValue
@@ -664,78 +577,54 @@
Digitizing
-
- 9
-
-
- 6
-
-
-
-
-
- Qt::Vertical
-
-
-
- 20
- 40
-
-
-
-
- -
-
+
-
+
- Vertex markers
+ Rubberband
-
- 9
-
-
- 6
-
-
-
-
- 0
+
+
+ Line width
-
- 6
+
+ mLineWidthSpinBox
-
-
-
-
- Marker style:
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 281
- 20
-
-
-
-
- -
-
-
-
- 7
- 0
- 0
- 0
-
-
-
-
-
+
+
+ -
+
+
+ Line width in pixels
+
+
+ 1
+
+
+
+ -
+
+
+ Line colour
+
+
+ mLineColourToolButton
+
+
+
+ -
+
+
+
+ 100
+ 0
+
+
+
+
+
+
@@ -746,218 +635,151 @@
Snapping
-
- 9
-
-
- 6
-
-
-
-
- 0
+
+
+ Default snap mode
-
- 6
-
-
-
-
-
- Default Snap Mode:
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 311
- 20
-
-
-
-
- -
-
-
-
- 7
- 0
- 0
- 0
-
-
-
-
-
+
- -
-
-
- 0
+
-
+
+
+ Qt::Horizontal
-
- 6
+
+
+ 311
+ 20
+
-
-
-
-
- Search radius for vertex edits (in layer units):
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 61
- 20
-
-
-
-
- -
-
-
- 5
-
-
- 9999.989999999999782
-
-
-
-
+
- -
-
-
- 0
+
-
+
+
+
+ 0
+ 0
+
-
- 6
+
+
+ -
+
+
+ Default snapping tolerance in layer units
-
-
-
-
- Default Snapping Tolerance (in layer units):
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 241
- 20
-
-
-
-
- -
-
-
- 5
-
-
- 9999.989999999999782
-
-
-
-
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 241
+ 20
+
+
+
+
+ -
+
+
+ 5
+
+
+ 9999.989999999999782
+
+
+
+ -
+
+
+ Search radius for vertex edits in layer units
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 61
+ 20
+
+
+
+
+ -
+
+
+ 5
+
+
+ 9999.989999999999782
+
+
- -
-
+
-
+
- Rubberband
+ Vertex markers
-
- 9
-
-
- 6
-
-
-
-
- 0
+
+
+ Marker style
-
- 6
+
+
+ -
+
+
+ Qt::Horizontal
-
-
-
-
- Line Width:
-
-
- mLineWidthSpinBox
-
-
-
- -
-
-
- Line width in pixels
-
-
- 1
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 271
- 20
-
-
-
-
- -
-
-
- Line Colour:
-
-
- mLineColourToolButton
-
-
-
- -
-
-
-
- 100
- 0
-
-
-
-
-
-
-
-
+
+
+ 281
+ 20
+
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 547
+ 71
+
+
+
+
@@ -965,11 +787,17 @@
Pro&jection
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1000,30 +828,36 @@
When layer is loaded that has no projection information
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Prompt for projection.
+ Prompt for projection
-
- Project wide default projection will be used.
+ Project wide default projection will be used
-
- Global default projection displa&yed below will be used.
+ Global default projection displa&yed below will be used
@@ -1037,27 +871,15 @@
Locale
-
- 9
-
-
- 6
-
-
- Force Override System Locale
+ Override system locale
true
-
- 9
-
-
- 6
-
-
@@ -1074,7 +896,10 @@
-
- Note: Enabling / changing overide on local requires an application restart.
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Enabling / changing overide on local requires an application restart</p></body></html>
true
@@ -1103,12 +928,6 @@
Additional Info
-
- 9
-
-
- 6
-
-
@@ -1144,20 +963,38 @@
- tabWidget
- cbxHideSplash
- cmbTheme
+ chbAskToSaveProjectChanges
+ chbWarnOldProjectVersion
pbnSelectionColour
pbnCanvasColor
- spinBoxUpdateThreshold
+ cmbTheme
+ capitaliseCheckBox
+ cbxHideSplash
chkAddedVisibility
+ spinBoxUpdateThreshold
chkAntiAliasing
+ chkUseQPixmap
+ cbxSplitterRedraw
+ spinBoxIdentifyValue
cmbEllipsoid
+ pbnMeasureColour
+ cmbWheelAction
+ spinZoomFactor
+ mLineWidthSpinBox
+ mLineColourToolButton
+ mDefaultSnapModeComboBox
+ mDefaultSnappingToleranceSpinBox
+ mSearchRadiusVertexEditSpinBox
+ mMarkerStyleComboBox
radPromptForProjection
radUseProjectProjection
radUseGlobalProjection
txtGlobalWKT
pbnSelectProjection
+ grpLocale
+ cboLocale
+ buttonBox
+ tabWidget
diff --git a/src/ui/qgspgquerybuilderbase.ui b/src/ui/qgspgquerybuilderbase.ui
index 557ddfc70bd..73c9c4f4727 100644
--- a/src/ui/qgspgquerybuilderbase.ui
+++ b/src/ui/qgspgquerybuilderbase.ui
@@ -12,9 +12,7 @@
-
- 0
- 0
+
0
0
@@ -29,23 +27,139 @@
true
-
- 11
-
-
- 6
-
+
-
+
+
+ Datasource
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Fields
+
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
-
+
+
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of fields in this vector file</p></body></html>
+
+
+
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Values
+
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
-
+
+
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of values for the current field.</p></body></html>
+
+
+ true
+
+
+ QAbstractItemView::SelectRows
+
+
+ true
+
+
+
+ -
+
+
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Take a <span style=" font-weight:600;">sample</span> of records in the vector file</p></body></html>
+
+
+ Sample
+
+
+
+ -
+
+
+ <html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Retrieve <span style=" font-weight:600;">all</span> the record in the vector file (<span style=" font-style:italic;">if the table is big, the operation can consume some time</span>)</p></body></html>
+
+
+ All
+
+
+
+
+
+
-
Operators
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -148,13 +262,49 @@
+ -
+
+
+
+ 32767
+ 116
+
+
+
+ SQL where clause
+
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
+ 11
+
+
-
+
+
+
+
+
-
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -227,138 +377,6 @@
- -
-
-
-
- 0
- 0
- 0
- 0
-
-
-
- Values
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
-p, li { white-space: pre-wrap; }
-</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Retrieve <span style=" font-weight:600;">all</span> the record in the vector file (<span style=" font-style:italic;">if the table is big, the operation can consume some time</span>)</p></body></html>
-
-
- All
-
-
-
- -
-
-
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
-p, li { white-space: pre-wrap; }
-</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Take a <span style=" font-weight:600;">sample</span> of records in the vector file</p></body></html>
-
-
- Sample
-
-
-
- -
-
-
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
-p, li { white-space: pre-wrap; }
-</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of values for the current field.</p></body></html>
-
-
- true
-
-
- QAbstractItemView::SelectRows
-
-
- true
-
-
-
-
-
-
- -
-
-
-
- 0
- 0
- 0
- 0
-
-
-
- Fields
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
-p, li { white-space: pre-wrap; }
-</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of fields in this vector file</p></body></html>
-
-
-
-
-
-
- -
-
-
- Datasource:
-
-
-
- -
-
-
-
- 32767
- 116
-
-
-
- SQL where clause
-
-
-
- 11
-
-
- 6
-
-
-
-
-
-
-
-
diff --git a/src/ui/qgsrasterlayerpropertiesbase.ui b/src/ui/qgsrasterlayerpropertiesbase.ui
index cb08a6d38a2..3f56c6e42ed 100644
--- a/src/ui/qgsrasterlayerpropertiesbase.ui
+++ b/src/ui/qgsrasterlayerpropertiesbase.ui
@@ -22,12 +22,6 @@
true
-
- 9
-
-
- 6
-
-
@@ -44,23 +38,17 @@
Render as
-
- 9
-
-
- 6
-
-
-
-
-
- Single Band Gray
-
-
-
-
- Three Band Color
+ Three band color
+
+
+
+ -
+
+
+ Single band gray
@@ -70,15 +58,9 @@
-
- Color Map
+ Color map
-
- 6
-
-
- 9
-
-
@@ -98,7 +80,7 @@
-
- Invert Color Map
+ Invert color map
@@ -115,15 +97,9 @@
-
- RGB Mode Band Selection
+ RGB mode band selection
-
- 9
-
-
- 6
-
-
@@ -239,10 +215,13 @@
-
- Grayscale Band Selection
+ Grayscale band selection
-
+
+ 6
+
+
6
-
@@ -280,15 +259,9 @@
-
- RGB Scaling
+ RGB scaling
-
- 9
-
-
- 6
-
-
@@ -299,14 +272,14 @@
-
- Std Deviation
+ Std. deviation
-
- Custom Min Max Values
+ Custom min / max values
@@ -596,15 +569,9 @@
-
- Grayscale Band Scaling
+ Grayscale band scaling
-
- 9
-
-
- 6
-
-
@@ -710,14 +677,14 @@
-
- Std Deviation
+ Std. deviation
-
- Custom Min Max Values:
+ Custom min / max values
@@ -773,7 +740,7 @@
-
- Load Min Max Values From Band
+ Load min / max values from band
-
@@ -829,10 +796,13 @@
-
- Contrast Enhancement
+ Contrast enhancement
-
+
+ -1
+
+
-1
-
@@ -910,7 +880,7 @@
-
- Global Transparency
+ Global transparency
-
@@ -991,7 +961,7 @@
-
- No Data Value
+ No data value
-
@@ -1000,7 +970,7 @@
-
- Reset No Data Value
+ Reset no data value
@@ -1010,20 +980,20 @@
-
- Custom Transparency Options
+ Custom transparency options
-
- Transparency Band:
+ Transparency band
-
- Transparency Layer;
+ Transparency layer;
@@ -1082,7 +1052,7 @@
-
- Transparent Pixel List
+ Transparent pixel list
@@ -1113,16 +1083,22 @@
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
- Add Values Manually
+ Add values manually
...
@@ -1138,7 +1114,7 @@
false
- Add Values From Display
+ Add Values from display
...
@@ -1151,7 +1127,7 @@
-
- Remove Selected Row
+ Remove selected row
...
@@ -1164,7 +1140,7 @@
-
- Default Values
+ Default values
...
@@ -1190,7 +1166,7 @@
-
- Import From File
+ Import from file
...
@@ -1203,7 +1179,7 @@
-
- Export To File
+ Export to file
...
@@ -1238,11 +1214,17 @@
Colormap
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1272,16 +1254,22 @@
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
- Number of entries:
+ Number of entries
@@ -1348,16 +1336,22 @@
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
- Color interpolation:
+ Color interpolation
@@ -1368,16 +1362,22 @@
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
- Classification mode:
+ Classification mode
@@ -1393,23 +1393,35 @@
General
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Spatial Reference System
+ Spatial reference system
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1431,17 +1443,23 @@
-
- Scale Dependent Visibility
+ Scale dependent visibility
true
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1459,7 +1477,7 @@
-
- Maximum 1:
+ Maximum
spinMaximumScale
@@ -1482,7 +1500,7 @@
-
- Minimum 1:
+ Minimum
spinMinimumScale
@@ -1495,16 +1513,22 @@
-
- DebugInfo
+ Show debug info
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
@@ -1533,7 +1557,7 @@
-
- Layer Source:
+ Layer source
leLayerSource
@@ -1553,7 +1577,7 @@
-
- Display Name:
+ Display name
leDisplayName
@@ -1562,10 +1586,16 @@
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
@@ -1574,11 +1604,17 @@
Thumbnail
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1621,11 +1657,17 @@
Legend:
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1668,11 +1710,17 @@
Palette:
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1718,11 +1766,17 @@
Metadata
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1734,12 +1788,6 @@
Pyramids
-
- 9
-
-
- 6
-
-
@@ -1751,15 +1799,15 @@
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
-</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
-<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html>
+</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html>
-
- Pyramid Resolutions
+ Pyramid resolutions
@@ -1784,10 +1832,16 @@ p, li { white-space: pre-wrap; }
-
-
- 6
+
+ 11
-
+
+ 11
+
+
+ 11
+
+
11
-
@@ -1809,7 +1863,7 @@ p, li { white-space: pre-wrap; }
-
- Resampling Method
+ Resampling method
cboResamplingMethod
@@ -1833,7 +1887,7 @@ p, li { white-space: pre-wrap; }
-
- Build Pyramids
+ Build pyramids
@@ -1846,11 +1900,17 @@ p, li { white-space: pre-wrap; }
Histogram
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -1889,16 +1949,22 @@ p, li { white-space: pre-wrap; }
Chart Type
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Line Graph
+ Line graph
true
@@ -1908,7 +1974,7 @@ p, li { white-space: pre-wrap; }
-
- Bar Chart
+ Bar chart
@@ -1928,30 +1994,36 @@ p, li { white-space: pre-wrap; }
Options
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Column Count:
+ Column count
-
- Out Of Range OK?
+ Out of range OK?
-
- Allow Approximation
+ Allow approximation
true
diff --git a/src/ui/qgsuniquevaluedialogbase.ui b/src/ui/qgsuniquevaluedialogbase.ui
index d09d4b88e6d..65aab11d078 100644
--- a/src/ui/qgsuniquevaluedialogbase.ui
+++ b/src/ui/qgsuniquevaluedialogbase.ui
@@ -6,27 +6,39 @@
0
0
505
- 300
+ 408
+
+
+ 0
+ 0
+
+
Form1
-
- 9
+
+ 0
-
- 6
+
+ 8
+
+
+ 0
+
+
+ 0
-
-
-
-
-
-
-
-
+
+
+ 0
+ 0
+
+
0
@@ -34,38 +46,21 @@
- Classification Field:
+ Classification field
mClassificationComboBox
- -
-
-
- Delete class
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Expanding
-
-
-
- 51
- 25
-
-
-
-
- -
+
-
+
+
+ 0
+ 0
+
+
0
@@ -74,19 +69,71 @@
- -
-
-
- Classify
+
-
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Minimum
+
+
+
+ 111
+ 20
+
+
+
+
+ -
+
+
-
+
+
+ Classify
+
+
+
+ -
+
+
+ Delete class
+
+
+
+
+
+ -
+
+
+
+ 0
+ 0
+
- -
-
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ mClassificationComboBox
+ mClassifyButton
+ mDeletePushButton
+ mClassListWidget
+
diff --git a/src/ui/qgsvectorlayerpropertiesbase.ui b/src/ui/qgsvectorlayerpropertiesbase.ui
index 6bad8412e08..b09c49078e7 100644
--- a/src/ui/qgsvectorlayerpropertiesbase.ui
+++ b/src/ui/qgsvectorlayerpropertiesbase.ui
@@ -5,7 +5,7 @@
0
0
- 508
+ 552
600
@@ -25,12 +25,6 @@
true
-
- 9
-
-
- 6
-
-
@@ -44,14 +38,74 @@
Symbology
-
- 9
-
-
- 6
-
-
-
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+ 32767
+ 22
+
+
+
+ Legend type
+
+
+ legendtypecombobox
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 26
+
+
+
+
+ 32767
+ 22
+
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Transparency
+
+
+ sliderTransparency
+
+
+
+ -
+
+
+ 0
+ 0
+
+
255
@@ -63,58 +117,20 @@
- -
-
-
- Transparency:
-
-
- sliderTransparency
-
-
-
- -
-
-
-
- 32767
- 22
-
-
-
- Legend type:
-
-
- legendtypecombobox
-
-
-
- -
-
-
-
- 270
- 24
-
-
-
-
- 32767
- 22
-
-
-
-
- -
+
-
-
- 7
- 7
+
0
0
+
+ QFrame::NoFrame
+
+
+ QFrame::Sunken
+
1
@@ -129,49 +145,73 @@
General
-
- 11
-
-
- 6
-
-
-
-
- Display name
-
-
- txtDisplayName
+
+
+ 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
+
+
+
+ -
+
+
+ Change SRS
+
+
+
+
- -
-
-
- 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.
-
-
-
- -
-
-
- -
+
-
Use scale dependent rendering
@@ -180,16 +220,22 @@
true
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
- Maximum 1:
+ Maximum
spinMaximumScale
@@ -199,7 +245,7 @@
-
- Minimum 1:
+ Minimum
spinMinimumScale
@@ -211,12 +257,12 @@
Minimum scale at which this layer will be displayed.
-
- 100000000
-
1
+
+ 100000000
+
-
@@ -224,105 +270,34 @@
Maximum scale at which this layer will be displayed.
-
- 100000000
-
1
-
-
-
-
-
- -
-
-
- Spatial Index
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- Create Spatial Index
-
-
- pbnIndex
-
-
-
- -
-
-
- Create
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Expanding
-
-
-
- 141
- 21
-
-
-
-
-
-
-
- -
-
-
- Spatial Reference System
-
-
-
- 11
-
-
- 6
-
-
-
-
-
- true
-
-
-
- -
-
-
- Change
+
+ 100000000
- -
+
-
Subset
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
@@ -370,17 +345,26 @@
Metadata
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
2
+
+ true
+
@@ -390,18 +374,10 @@
Labels
-
- 9
-
-
- 6
-
-
-
- 7
- 0
+
0
0
@@ -414,9 +390,7 @@
-
-
- 7
- 7
+
0
0
@@ -436,18 +410,22 @@
Actions
-
+
11
-
- 6
+
+ 11
+
+
+ 11
+
+
+ 11
-
-
- 0
- 0
+
0
0
@@ -466,12 +444,21 @@
-
-
- 1
-
3
+
+ 1
+
+
+ 1
+
+
+ 1
+
+
+ 1
+
-
@@ -516,18 +503,26 @@
- tabWidget
legendtypecombobox
sliderTransparency
txtDisplayName
displayFieldComboBox
+ leSpatialRefSys
+ pbnIndex
+ pbnChangeSpatialRefSys
+ chkUseScaleDependentRendering
spinMinimumScale
spinMaximumScale
- pbnIndex
- leSpatialRefSys
- pbnChangeSpatialRefSys
+ txtSubsetSQL
pbnQueryBuilder
+ teMetadata
labelCheckBox
+ pbnLoadDefaultStyle
+ pbnSaveDefaultStyle
+ pbnLoadStyle
+ pbnSaveStyleAs
+ buttonBox
+ tabWidget
|