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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>NoDevicesForm_base</class>
<widget class="QDialog">
<property name="name">
<cstring>NoDevicesForm_base</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>768</width>
<height>273</height>
</rect>
</property>
<property name="caption">
<string>HP Device Manager - No Installed HP Devices Found</string>
</property>
<grid>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QPushButton" row="3" column="2">
<property name="name">
<cstring>setupPushButton</cstring>
</property>
<property name="text">
<string>Setup Device...</string>
</property>
</widget>
<widget class="QPushButton" row="3" column="3">
<property name="name">
<cstring>CUPSButton</cstring>
</property>
<property name="text">
<string>CUPS Web Interface</string>
</property>
</widget>
<widget class="QPushButton" row="3" column="4">
<property name="name">
<cstring>ExitButton</cstring>
</property>
<property name="text">
<string>Close</string>
</property>
<property name="default">
<bool>true</bool>
</property>
</widget>
<spacer row="3" column="0" rowspan="1" colspan="2">
<property name="name">
<cstring>spacer43</cstring>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>400</width>
<height>20</height>
</size>
</property>
</spacer>
<widget class="QLabel" row="0" column="0">
<property name="name">
<cstring>Icon</cstring>
</property>
<property name="sizePolicy">
<sizepolicy>
<hsizetype>0</hsizetype>
<vsizetype>0</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="frameShape">
<enum>NoFrame</enum>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget>
<spacer row="1" column="0" rowspan="2" colspan="1">
<property name="name">
<cstring>spacer3</cstring>
</property>
<property name="orientation">
<enum>Vertical</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>20</width>
<height>280</height>
</size>
</property>
</spacer>
<spacer row="2" column="2">
<property name="name">
<cstring>spacer2</cstring>
</property>
<property name="orientation">
<enum>Vertical</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>20</width>
<height>16</height>
</size>
</property>
</spacer>
<widget class="QLabel" row="0" column="1" rowspan="2" colspan="4">
<property name="name">
<cstring>textLabel7</cstring>
</property>
<property name="text">
<string><b><font size="+2">No Installed HP Devices Found.</font></b><p>To install a device, use one of the following methods:<p>
1.Run <b>hp-setup</b> (in a shell/terminal or click <tt>Setup Device...</tt> below).<p>
2. <b>CUPS web interface</b> (open a browser to: <u>http://localhost:631</u> or press the button below),<p>
3. The <b>printer installation utility</b> that came with your operating system (YaST, PrinterDrake, etc).
<p><p>After setting up a printer, you may have to press <tt>F6</tt> or chose <tt>Device | Refresh All</tt> for the printer to appear in the HP Device Manager.<p>
<i><b>Note: Only devices installed with the <tt>hp:</tt> CUPS backend will appear in the HP Device Manager.</b></i><p></string>
</property>
<property name="alignment">
<set>WordBreak|AlignVCenter</set>
</property>
</widget>
</grid>
</widget>
<connections>
<connection>
<sender>CUPSButton</sender>
<signal>clicked()</signal>
<receiver>NoDevicesForm_base</receiver>
<slot>CUPSButton_clicked()</slot>
</connection>
<connection>
<sender>ExitButton</sender>
<signal>clicked()</signal>
<receiver>NoDevicesForm_base</receiver>
<slot>ExitButton_clicked()</slot>
</connection>
<connection>
<sender>setupPushButton</sender>
<signal>clicked()</signal>
<receiver>NoDevicesForm_base</receiver>
<slot>setupPushButton_clicked()</slot>
</connection>
</connections>
<includes>
<include location="local" impldecl="in implementation">nodevicesform_base.ui.h</include>
</includes>
<slots>
<slot>CUPSButton_clicked()</slot>
<slot>ExitButton_clicked()</slot>
<slot>setupPushButton_clicked()</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
</UI>
|