~ubuntu-branches/ubuntu/trusty/grantlee/trusty

« back to all changes in this revision

Viewing changes to examples/dbus-chat/chatmainwindow.ui

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-07 09:19:01 UTC
  • Revision ID: james.westby@ubuntu.com-20101207091901-hsfsvnkxdshv4k8g
Tags: 0.1.7-0ubuntu3
Revert previous upload and try again with the correct patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<ui version="4.0" >
2
 
 <author></author>
3
 
 <comment></comment>
4
 
 <exportmacro></exportmacro>
5
 
 <class>ChatMainWindow</class>
6
 
 <widget class="QMainWindow" name="ChatMainWindow" >
7
 
  <property name="geometry" >
8
 
   <rect>
9
 
    <x>0</x>
10
 
    <y>0</y>
11
 
    <width>800</width>
12
 
    <height>600</height>
13
 
   </rect>
14
 
  </property>
15
 
  <property name="windowTitle" >
16
 
   <string>QtDBus Chat</string>
17
 
  </property>
18
 
  <widget class="QWidget" name="centralwidget" >
19
 
   <layout class="QHBoxLayout" >
20
 
    <property name="margin" >
21
 
     <number>9</number>
22
 
    </property>
23
 
    <property name="spacing" >
24
 
     <number>6</number>
25
 
    </property>
26
 
    <item>
27
 
     <layout class="QVBoxLayout" >
28
 
      <property name="margin" >
29
 
       <number>0</number>
30
 
      </property>
31
 
      <property name="spacing" >
32
 
       <number>6</number>
33
 
      </property>
34
 
      <item>
35
 
       <widget class="QComboBox" name="themeChooser" >
36
 
        <property name="enabled" >
37
 
         <bool>true</bool>
38
 
        </property>
39
 
       </widget>
40
 
      </item>
41
 
      <item>
42
 
       <widget class="QTextBrowser" name="chatHistory" >
43
 
        <property name="acceptDrops" >
44
 
         <bool>false</bool>
45
 
        </property>
46
 
        <property name="toolTip" >
47
 
         <string>Messages sent and received from other users</string>
48
 
        </property>
49
 
        <property name="acceptRichText" >
50
 
         <bool>true</bool>
51
 
        </property>
52
 
       </widget>
53
 
      </item>
54
 
      <item>
55
 
       <layout class="QHBoxLayout" >
56
 
        <property name="margin" >
57
 
         <number>0</number>
58
 
        </property>
59
 
        <property name="spacing" >
60
 
         <number>6</number>
61
 
        </property>
62
 
        <item>
63
 
         <widget class="QLabel" name="label" >
64
 
          <property name="text" >
65
 
           <string>Message:</string>
66
 
          </property>
67
 
          <property name="buddy" >
68
 
           <cstring>messageLineEdit</cstring>
69
 
          </property>
70
 
         </widget>
71
 
        </item>
72
 
        <item>
73
 
         <widget class="QLineEdit" name="messageLineEdit" />
74
 
        </item>
75
 
        <item>
76
 
         <widget class="QPushButton" name="sendButton" >
77
 
          <property name="sizePolicy" >
78
 
           <sizepolicy>
79
 
            <hsizetype>1</hsizetype>
80
 
            <vsizetype>0</vsizetype>
81
 
            <horstretch>0</horstretch>
82
 
            <verstretch>0</verstretch>
83
 
           </sizepolicy>
84
 
          </property>
85
 
          <property name="toolTip" >
86
 
           <string>Sends a message to other people</string>
87
 
          </property>
88
 
          <property name="whatsThis" >
89
 
           <string/>
90
 
          </property>
91
 
          <property name="text" >
92
 
           <string>Send</string>
93
 
          </property>
94
 
         </widget>
95
 
        </item>
96
 
       </layout>
97
 
      </item>
98
 
     </layout>
99
 
    </item>
100
 
   </layout>
101
 
  </widget>
102
 
  <widget class="QMenuBar" name="menubar" >
103
 
   <property name="geometry" >
104
 
    <rect>
105
 
     <x>0</x>
106
 
     <y>0</y>
107
 
     <width>800</width>
108
 
     <height>31</height>
109
 
    </rect>
110
 
   </property>
111
 
   <widget class="QMenu" name="menuQuit" >
112
 
    <property name="title" >
113
 
     <string>Help</string>
114
 
    </property>
115
 
    <addaction name="actionAboutQt" />
116
 
   </widget>
117
 
   <widget class="QMenu" name="menuFile" >
118
 
    <property name="title" >
119
 
     <string>File</string>
120
 
    </property>
121
 
    <addaction name="actionChangeNickname" />
122
 
    <addaction name="separator" />
123
 
    <addaction name="actionQuit" />
124
 
   </widget>
125
 
   <addaction name="menuFile" />
126
 
   <addaction name="menuQuit" />
127
 
  </widget>
128
 
  <widget class="QStatusBar" name="statusbar" />
129
 
  <action name="actionQuit" >
130
 
   <property name="text" >
131
 
    <string>Quit</string>
132
 
   </property>
133
 
   <property name="shortcut" >
134
 
    <string>Ctrl+Q</string>
135
 
   </property>
136
 
  </action>
137
 
  <action name="actionAboutQt" >
138
 
   <property name="text" >
139
 
    <string>About Qt...</string>
140
 
   </property>
141
 
  </action>
142
 
  <action name="actionChangeNickname" >
143
 
   <property name="text" >
144
 
    <string>Change nickname...</string>
145
 
   </property>
146
 
   <property name="shortcut" >
147
 
    <string>Ctrl+N</string>
148
 
   </property>
149
 
  </action>
150
 
 </widget>
151
 
 <pixmapfunction></pixmapfunction>
152
 
 <tabstops>
153
 
  <tabstop>chatHistory</tabstop>
154
 
  <tabstop>messageLineEdit</tabstop>
155
 
  <tabstop>sendButton</tabstop>
156
 
 </tabstops>
157
 
 <resources/>
158
 
 <connections>
159
 
  <connection>
160
 
   <sender>messageLineEdit</sender>
161
 
   <signal>returnPressed()</signal>
162
 
   <receiver>sendButton</receiver>
163
 
   <slot>animateClick()</slot>
164
 
   <hints>
165
 
    <hint type="sourcelabel" >
166
 
     <x>299</x>
167
 
     <y>554</y>
168
 
    </hint>
169
 
    <hint type="destinationlabel" >
170
 
     <x>744</x>
171
 
     <y>551</y>
172
 
    </hint>
173
 
   </hints>
174
 
  </connection>
175
 
  <connection>
176
 
   <sender>actionQuit</sender>
177
 
   <signal>triggered(bool)</signal>
178
 
   <receiver>ChatMainWindow</receiver>
179
 
   <slot>close()</slot>
180
 
   <hints>
181
 
    <hint type="sourcelabel" >
182
 
     <x>-1</x>
183
 
     <y>-1</y>
184
 
    </hint>
185
 
    <hint type="destinationlabel" >
186
 
     <x>399</x>
187
 
     <y>299</y>
188
 
    </hint>
189
 
   </hints>
190
 
  </connection>
191
 
 </connections>
192
 
</ui>