Skip to content

Commit 4e006d8

Browse files
author
timlinux
committedNov 7, 2009
Reinstate ui to prevent compile issues
git-svn-id: http://svn.osgeo.org/qgis/trunk@11945 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent fd4082c commit 4e006d8

File tree

2 files changed

+82
-0
lines changed

2 files changed

+82
-0
lines changed
 

‎src/plugins/coordinate_capture/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ SET (coordinatecapture_SRCS
88
coordinatecapturemaptool.cpp
99
)
1010

11+
SET (coordinatecapture_UIS coordinatecaptureguibase.ui)
12+
1113
SET (coordinatecapture_MOC_HDRS
1214
coordinatecapture.h
1315
coordinatecapturegui.h
@@ -19,6 +21,8 @@ SET (coordinatecapture_RCCS coordinatecapture.qrc)
1921
########################################################
2022
# Build
2123

24+
QT4_WRAP_UI (coordinatecapture_UIS_H ${coordinatecapture_UIS})
25+
2226
QT4_WRAP_CPP (coordinatecapture_MOC_SRCS ${coordinatecapture_MOC_HDRS})
2327

2428
QT4_ADD_RESOURCES(coordinatecapture_RCC_SRCS ${coordinatecapture_RCCS})
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<ui version="4.0" >
2+
<class>CoordinateCaptureGuiBase</class>
3+
<widget class="QDialog" name="CoordinateCaptureGuiBase" >
4+
<property name="geometry" >
5+
<rect>
6+
<x>0</x>
7+
<y>0</y>
8+
<width>584</width>
9+
<height>435</height>
10+
</rect>
11+
</property>
12+
<property name="windowTitle" >
13+
<string>QGIS Plugin Template</string>
14+
</property>
15+
<property name="windowIcon" >
16+
<iconset>
17+
<normaloff/>
18+
</iconset>
19+
</property>
20+
<layout class="QGridLayout" >
21+
<property name="margin" >
22+
<number>9</number>
23+
</property>
24+
<property name="spacing" >
25+
<number>6</number>
26+
</property>
27+
<item row="0" column="0" >
28+
<widget class="QLabel" name="txtHeading" >
29+
<property name="sizePolicy" >
30+
<sizepolicy>
31+
<hsizetype>5</hsizetype>
32+
<vsizetype>1</vsizetype>
33+
<horstretch>0</horstretch>
34+
<verstretch>0</verstretch>
35+
</sizepolicy>
36+
</property>
37+
<property name="font" >
38+
<font>
39+
<family>Sans Serif</family>
40+
<pointsize>24</pointsize>
41+
<weight>75</weight>
42+
<italic>false</italic>
43+
<bold>true</bold>
44+
<underline>false</underline>
45+
<strikeout>false</strikeout>
46+
</font>
47+
</property>
48+
<property name="text" >
49+
<string>Plugin Template</string>
50+
</property>
51+
<property name="alignment" >
52+
<set>Qt::AlignCenter</set>
53+
</property>
54+
</widget>
55+
</item>
56+
<item row="1" column="0" >
57+
<widget class="QTextBrowser" name="textBrowser" >
58+
<property name="openExternalLinks" >
59+
<bool>true</bool>
60+
</property>
61+
</widget>
62+
</item>
63+
<item row="2" column="0" >
64+
<widget class="QDialogButtonBox" name="buttonBox" >
65+
<property name="orientation" >
66+
<enum>Qt::Horizontal</enum>
67+
</property>
68+
<property name="standardButtons" >
69+
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::NoButton|QDialogButtonBox::Ok|QDialogButtonBox::SaveAll</set>
70+
</property>
71+
</widget>
72+
</item>
73+
</layout>
74+
</widget>
75+
<layoutdefault spacing="6" margin="11" />
76+
<resources/>
77+
<connections/>
78+
</ui>

0 commit comments

Comments
 (0)
Please sign in to comment.