This file is indexed.

/usr/share/hplip/ui4/systrayframe.py is in hplip-data 3.16.3+repack0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# -*- coding: utf-8 -*-
#
# (c) Copyright 2001-2015 HP Development Company, L.P.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
# Author: Don Welch
#

# Local
from base.g import *
from base.codes import *
from .ui_utils import *

# Qt
from PyQt4.QtCore import *
from PyQt4.QtGui import *


class SystrayFrame(QFrame):
    def __init__(self, parent):
        QFrame.__init__(self, parent)


    def initUi(self, systray_visible, polling, polling_interval, device_list, systray_messages,upgrade_notify,
                                        upgrade_postpone_time, upgrade_msg):
                                    
        self.systray_visible = systray_visible
        self.polling = polling
        self.polling_interval = polling_interval
        self.device_list = device_list
        self.systray_messages = systray_messages
        self.upgrade_notify = upgrade_notify
        self.upgrade_postpone_time =upgrade_postpone_time
        self.upgrade_msg = upgrade_msg

        self.gridlayout = QGridLayout(self)

        self.frame = QFrame(self)
        self.frame.setFrameShape(QFrame.StyledPanel)
        self.frame.setFrameShadow(QFrame.Raised)

        self.gridlayout1 = QGridLayout(self.frame)

        self.groupBox_2 = QGroupBox(self.frame)

        self.gridlayout2 = QGridLayout(self.groupBox_2)

        self.ShowAlwaysRadioButton = QRadioButton(self.groupBox_2)
        self.gridlayout2.addWidget(self.ShowAlwaysRadioButton,0,0,1,1)

        self.HideWhenInactiveRadioButton = QRadioButton(self.groupBox_2)
        self.gridlayout2.addWidget(self.HideWhenInactiveRadioButton,1,0,1,1)

        self.HideAlwaysRadioButton = QRadioButton(self.groupBox_2)
        self.gridlayout2.addWidget(self.HideAlwaysRadioButton,2,0,1,1)

        self.gridlayout1.addWidget(self.groupBox_2,0,0,1,1)

        self.groupBox_3 = QGroupBox(self.frame)

        self.gridlayout3 = QGridLayout(self.groupBox_3)

        self.label_2 = QLabel(self.groupBox_3)
        self.gridlayout3.addWidget(self.label_2,0,0,1,1)

        self.MessageShowComboBox = QComboBox(self.groupBox_3)
        self.gridlayout3.addWidget(self.MessageShowComboBox,1,0,1,1)

        self.MessageShowComboBox.addItem(self.__tr("All"), SYSTRAY_MESSAGES_SHOW_ALL)
        self.MessageShowComboBox.addItem(self.__tr("Errors and Warnings"), SYSTRAY_MESSAGES_SHOW_ERRORS_AND_WARNINGS)
        self.MessageShowComboBox.addItem(self.__tr("Errors Only"), SYSTRAY_MESSAGES_SHOW_ERRORS_ONLY)
        self.MessageShowComboBox.addItem(self.__tr("None"), SYSTRAY_MESSAGES_SHOW_NONE)

        spacerItem = QSpacerItem(20,40,QSizePolicy.Minimum,QSizePolicy.Minimum)
        self.gridlayout3.addItem(spacerItem,2,0,1,1)
        self.gridlayout1.addWidget(self.groupBox_3,0,1,1,1)

        self.MonitorGroupBox = QGroupBox(self.frame)
        self.MonitorGroupBox.setCheckable(True)

        self.MonitorGroupBox.setEnabled(False)

        self.gridlayout4 = QGridLayout(self.MonitorGroupBox)

        self.label = QLabel(self.MonitorGroupBox)
        self.gridlayout4.addWidget(self.label,0,0,1,1)

        self.listWidget = QListWidget(self.MonitorGroupBox)
        self.gridlayout4.addWidget(self.listWidget,1,0,1,1)
        self.gridlayout1.addWidget(self.MonitorGroupBox,1,0,1,2)
        
        
        #UpdategroupBox  is same as "gridlayout5"
        self.groupBox_4 = QGroupBox(self.frame)
        self.UpdategroupBox = QGridLayout(self.groupBox_4)
        self.UpdategroupBox.setObjectName("UpdategroupBox")
        self.UpdatecheckBox = QCheckBox(self.groupBox_4)
        self.UpdatecheckBox.setObjectName("UpdatecheckBox")
        self.UpdategroupBox.addWidget(self.UpdatecheckBox,0,0,1,4)
        self.label_5 = QLabel(self.groupBox_4)
        self.label_5.setObjectName("label_5")
        self.UpdategroupBox.addWidget(self.label_5, 1, 0, 1, 4)
        self.textEdit = QTextEdit(self.groupBox_4)
        self.textEdit.setObjectName("textEdit")
        self.textEdit.setReadOnly(True)
        self.UpdategroupBox.addWidget(self.textEdit, 2, 0, 1, 4)
        self.gridlayout1.addWidget(self.groupBox_4,2,0,1,2)

        self.gridlayout.addWidget(self.frame,0,0,1,1)
        
        

        self.setWindowTitle(QApplication.translate("self", "self", None, QApplication.UnicodeUTF8))
        self.groupBox_2.setTitle(QApplication.translate("self", "System tray icon visibility", None, QApplication.UnicodeUTF8))
        self.ShowAlwaysRadioButton.setText(QApplication.translate("self", "Always show", None, QApplication.UnicodeUTF8))
        self.HideWhenInactiveRadioButton.setText(QApplication.translate("self", "Hide when inactive", None, QApplication.UnicodeUTF8))
        self.HideAlwaysRadioButton.setText(QApplication.translate("self", "Always hide", None, QApplication.UnicodeUTF8))
        self.groupBox_3.setTitle(QApplication.translate("self", "System tray icon messages", None, QApplication.UnicodeUTF8))
        self.label_2.setText(QApplication.translate("self", "Messages to show:", None, QApplication.UnicodeUTF8))
        self.MonitorGroupBox.setTitle(QApplication.translate("self", "Monitor button presses on devices", None, QApplication.UnicodeUTF8))
        self.label.setText(QApplication.translate("self", "Devices to monitor:", None, QApplication.UnicodeUTF8))
        
        
        self.groupBox_4.setTitle(QApplication.translate("Dialog", "Update Settings", None, QApplication.UnicodeUTF8))
        self.UpdatecheckBox.setText(QApplication.translate("Dialog", "Check and notify HPLIP updates", None, QApplication.UnicodeUTF8))
        self.label_5.setText(QApplication.translate("Dialog", "Status:", None, QApplication.UnicodeUTF8))
        self.textEdit.setPlainText(self.upgrade_msg)
        

        self.connect(self.ShowAlwaysRadioButton, SIGNAL("clicked(bool)"), self.ShowAlwaysRadioButton_clicked)
        self.connect(self.HideWhenInactiveRadioButton, SIGNAL("clicked(bool)"), self.HideWhenInactiveRadioButton_clicked)
        self.connect(self.HideAlwaysRadioButton, SIGNAL("clicked(bool)"), self.HideAlwaysRadioButton_clicked)
        self.connect(self.MessageShowComboBox, SIGNAL("activated(int)"), self.MessageShowComboBox_activated)
        self.connect(self.UpdatecheckBox, SIGNAL("clicked(bool)"), self.UpdatecheckBox_clicked)
        



    def UpdatecheckBox_clicked(self, b):
        log.debug("Update HPLIP val =%d "%b)
        if b is False:
            self.upgrade_notify = False
        else:
            self.upgrade_notify = True

    def updateUi(self):
        self.updateVisibility()
        self.updateMessages()
        self.updateDeviceList()
        self.updateUpgradeSettings()


    def updateVisibility(self):
        if self.systray_visible == SYSTRAY_VISIBLE_SHOW_ALWAYS:
            self.ShowAlwaysRadioButton.setChecked(True)

        elif self.systray_visible == SYSTRAY_VISIBLE_HIDE_WHEN_INACTIVE:
            self.HideWhenInactiveRadioButton.setChecked(True)

        else: # SYSTRAY_VISIBLE_HIDE_ALWAYS
            self.HideAlwaysRadioButton.setChecked(True)


    def ShowAlwaysRadioButton_clicked(self, b):
        if b: self.systray_visible = SYSTRAY_VISIBLE_SHOW_ALWAYS


    def HideWhenInactiveRadioButton_clicked(self, b):
        if b: self.systray_visible = SYSTRAY_VISIBLE_HIDE_WHEN_INACTIVE


    def HideAlwaysRadioButton_clicked(self, b):
        if b: self.systray_visible = SYSTRAY_VISIBLE_HIDE_ALWAYS


    def updateMessages(self):
        #i = self.MessageShowComboBox.findData(QVariant(self.systray_messages))
        i = self.MessageShowComboBox.findData(self.systray_messages)
        if i != -1:
            self.MessageShowComboBox.setCurrentIndex(i)


    def MessageShowComboBox_activated(self, i):
        sender = self.sender()
        mode, ok = value_int(sender.itemData(i))

        if ok:
            self.systray_messages = mode


    def updateDeviceList(self):
        pass

    def updateUpgradeSettings(self):
        if self.upgrade_notify is True:
            self.UpdatecheckBox.setChecked(True)
        else:
            self.UpdatecheckBox.setChecked(False)




    def __tr(self, s, c=None):
        return QApplication.translate("SystrayFrame", s, c, QApplication.UnicodeUTF8)