1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>ShaderSelector</class>
4 <widget class="QDialog" name="ShaderSelector">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>386</width>
10    <height>350</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Shaders</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <layout class="QHBoxLayout" name="horizontalLayout">
19     <item>
20      <widget class="QLabel" name="label">
21       <property name="font">
22        <font>
23         <weight>75</weight>
24         <bold>true</bold>
25        </font>
26       </property>
27       <property name="text">
28        <string>Active Shader:</string>
29       </property>
30      </widget>
31     </item>
32     <item>
33      <widget class="QLabel" name="shaderName">
34       <property name="text">
35        <string>Name</string>
36       </property>
37       <property name="alignment">
38        <set>Qt::AlignCenter</set>
39       </property>
40      </widget>
41     </item>
42     <item>
43      <widget class="QLabel" name="author">
44       <property name="text">
45        <string>Author</string>
46       </property>
47       <property name="alignment">
48        <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
49       </property>
50      </widget>
51     </item>
52    </layout>
53   </item>
54   <item>
55    <widget class="QLabel" name="description">
56     <property name="font">
57      <font>
58       <italic>true</italic>
59      </font>
60     </property>
61     <property name="text">
62      <string>Description</string>
63     </property>
64     <property name="wordWrap">
65      <bool>true</bool>
66     </property>
67    </widget>
68   </item>
69   <item>
70    <widget class="Line" name="line">
71     <property name="orientation">
72      <enum>Qt::Horizontal</enum>
73     </property>
74    </widget>
75   </item>
76   <item>
77    <widget class="QTabWidget" name="passes">
78     <property name="currentIndex">
79      <number>-1</number>
80     </property>
81    </widget>
82   </item>
83   <item>
84    <layout class="QGridLayout" name="gridLayout">
85     <item row="0" column="0">
86      <widget class="QPushButton" name="unload">
87       <property name="text">
88        <string>Unload Shader</string>
89       </property>
90      </widget>
91     </item>
92     <item row="0" column="1">
93      <widget class="QPushButton" name="load">
94       <property name="text">
95        <string>Load New Shader</string>
96       </property>
97      </widget>
98     </item>
99     <item row="1" column="0" colspan="2">
100      <widget class="QDialogButtonBox" name="buttonBox">
101       <property name="orientation">
102        <enum>Qt::Horizontal</enum>
103       </property>
104       <property name="standardButtons">
105        <set>QDialogButtonBox::Reset|QDialogButtonBox::RestoreDefaults</set>
106       </property>
107       <property name="centerButtons">
108        <bool>true</bool>
109       </property>
110      </widget>
111     </item>
112    </layout>
113   </item>
114  </layout>
115 </widget>
116 <resources/>
117 <connections/>
118</ui>
119