Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reinstate ui to prevent compile issues
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11945 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Nov 7, 2009
1 parent 9ef1814 commit 53fd482
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/plugins/coordinate_capture/CMakeLists.txt
Expand Up @@ -8,6 +8,8 @@ SET (coordinatecapture_SRCS
coordinatecapturemaptool.cpp
)

SET (coordinatecapture_UIS coordinatecaptureguibase.ui)

SET (coordinatecapture_MOC_HDRS
coordinatecapture.h
coordinatecapturegui.h
Expand All @@ -19,6 +21,8 @@ SET (coordinatecapture_RCCS coordinatecapture.qrc)
########################################################
# Build

QT4_WRAP_UI (coordinatecapture_UIS_H ${coordinatecapture_UIS})

QT4_WRAP_CPP (coordinatecapture_MOC_SRCS ${coordinatecapture_MOC_HDRS})

QT4_ADD_RESOURCES(coordinatecapture_RCC_SRCS ${coordinatecapture_RCCS})
Expand Down
78 changes: 78 additions & 0 deletions src/plugins/coordinate_capture/coordinatecaptureguibase.ui
@@ -0,0 +1,78 @@
<ui version="4.0" >
<class>CoordinateCaptureGuiBase</class>
<widget class="QDialog" name="CoordinateCaptureGuiBase" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>584</width>
<height>435</height>
</rect>
</property>
<property name="windowTitle" >
<string>QGIS Plugin Template</string>
</property>
<property name="windowIcon" >
<iconset>
<normaloff/>
</iconset>
</property>
<layout class="QGridLayout" >
<property name="margin" >
<number>9</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
<item row="0" column="0" >
<widget class="QLabel" name="txtHeading" >
<property name="sizePolicy" >
<sizepolicy>
<hsizetype>5</hsizetype>
<vsizetype>1</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font" >
<font>
<family>Sans Serif</family>
<pointsize>24</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<underline>false</underline>
<strikeout>false</strikeout>
</font>
</property>
<property name="text" >
<string>Plugin Template</string>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="1" column="0" >
<widget class="QTextBrowser" name="textBrowser" >
<property name="openExternalLinks" >
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0" >
<widget class="QDialogButtonBox" name="buttonBox" >
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons" >
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::NoButton|QDialogButtonBox::Ok|QDialogButtonBox::SaveAll</set>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11" />
<resources/>
<connections/>
</ui>

0 comments on commit 53fd482

Please sign in to comment.