-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheyepieceview.ui
85 lines (77 loc) · 1.56 KB
/
eyepieceview.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>eyepieceViewDialog</class>
<widget class="QDialog" name="eyepieceViewDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1206</width>
<height>742</height>
</rect>
</property>
<property name="windowTitle">
<string>Eyepiece View</string>
</property>
<property name="styleSheet">
<string notr="true">QObject {
background-color:black;
color:white;
}
/* Adapted from https://github.com/Alexhuszagh/BreezeStyleSheets/blob/master/dark.qss (MIT License) */
QWidget
{
selection-background-color:#990000;
}
QWidget:item:hover
{
background-color: #330000;
}
QWidget:item:selected
{
background-color: #990000;
}
QWidget:disabled
{
color: #444444;
}
QWidget:focus
{
border: 0.2ex solid #ff0000;
}
QPushButton
{
border: 0.1ex solid #770000;
}
QPushButton:hover
{
border: 0.1ex solid #990000;
}
QPushButton:focus:pressed,
QPushButton:pressed
{
background-color: qlineargradient(x1: 0.5, y1: 0.5 x2: 0.5, y2: 1, stop: 0 #ffdddd, stop: 0.5 #eedddd);
color: #31363B;
}
</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="EyepieceImageViewer" name="eyepieceView"/>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>EyepieceImageViewer</class>
<extends>QGraphicsView</extends>
<header>eyepieceimageviewer</header>
<slots>
<slot>fitInView()</slot>
<slot>setFovCircle(double)</slot>
</slots>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>