e567eba26
김태훈
터치 테스트 윈도우 구현
|
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>TouchTestWindow</class>
<widget class="QMainWindow" name="TouchTestWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
9
10
|
<width>1080</width>
<height>1920</height>
|
e567eba26
김태훈
터치 테스트 윈도우 구현
|
11
12
13
14
15
16
17
18
19
|
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="Canvas" name="canvas">
<widget class="QPushButton" name="closeButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
20
|
<x>1020</x>
|
e567eba26
김태훈
터치 테스트 윈도우 구현
|
21
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
22
23
|
<width>60</width>
<height>60</height>
|
e567eba26
김태훈
터치 테스트 윈도우 구현
|
24
25
26
27
28
29
30
31
32
33
34
35
36
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border: 1px solid black; }
QPushButton:pressed { background-color: red; }</string>
</property>
<property name="text">
<string>X</string>
</property>
</widget>
<widget class="QPushButton" name="clearButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
37
|
<x>960</x>
|
e567eba26
김태훈
터치 테스트 윈도우 구현
|
38
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
39
40
|
<width>60</width>
<height>60</height>
|
e567eba26
김태훈
터치 테스트 윈도우 구현
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border: 1px solid black; }
QPushButton:pressed { background-color: red; }</string>
</property>
<property name="text">
<string>C</string>
</property>
</widget>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>Canvas</class>
<extends>QWidget</extends>
<header>canvas.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
|