Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added separate option to BuildVRT tool, to fix #3180
git-svn-id: http://svn.osgeo.org/qgis/trunk@14939 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
brushtyler committed Dec 20, 2010
1 parent 8ab9d1d commit 4a4fea3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion python/plugins/GdalTools/tools/doBuildVRT.py
Expand Up @@ -23,7 +23,8 @@ def __init__(self, iface):
(self.inputFilesEdit, SIGNAL("textChanged(const QString &)")),
(self.outputFileEdit, SIGNAL("textChanged(const QString &)")),
(self.resolutionComboBox, SIGNAL("currentIndexChanged(int)"), self.resolutionCheck),
(self.srcNoDataSpin, SIGNAL("valueChanged(int)"), self.srcNoDataCheck, "1.7.0")
(self.srcNoDataSpin, SIGNAL("valueChanged(int)"), self.srcNoDataCheck, "1.7.0"),
(self.separateCheck, SIGNAL("stateChanged(int)"), None, "1.7.0")
]
)

Expand Down Expand Up @@ -51,6 +52,8 @@ def getArguments(self):
if self.resolutionCheck.isChecked() and self.resolutionComboBox.currentIndex() >= 0:
arguments << "-resolution"
arguments << self.resolutions[self.resolutionComboBox.currentIndex()]
if self.separateCheck.isChecked():
arguments << "-separate"
if self.srcNoDataCheck.isChecked():
arguments << "-srcnodata"
arguments << str(self.srcNoDataSpin.value())
Expand Down
9 changes: 8 additions & 1 deletion python/plugins/GdalTools/tools/widgetBuildVRT.ui
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>352</width>
<height>153</height>
<height>182</height>
</rect>
</property>
<property name="sizePolicy">
Expand Down Expand Up @@ -136,6 +136,13 @@
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QCheckBox" name="separateCheck">
<property name="text">
<string>Se&amp;parate</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
Expand Down

0 comments on commit 4a4fea3

Please sign in to comment.