/usr/share/pyshared/blueman/plugins/ServicePlugin.py is in blueman 1.23-0ubuntu2.
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 | # Copyright (C) 2008 Valmantas Paliksa <walmis at balticum-tv dot lt>
# Copyright (C) 2008 Tadas Dailyda <tadas at dailyda dot com>
#
# Licensed under the GNU General Public License Version 3
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
#
class ServicePlugin(object):
instances = []
__plugin_info__ = None
def __init__(self, services_inst):
ServicePlugin.instances.append(self)
self._options = []
self._orig_state = {}
self.__services_inst = services_inst
self.__is_exposed = False
self._is_loaded = False
def _on_enter(self):
if not self.__is_exposed:
self.on_enter()
self.__is_exposed = True
def _on_leave(self):
if self.__is_exposed:
self.on_leave()
self.__is_exposed = False
#call when option has changed.
def option_changed_notify(self, option_id, state=True):
if not option_id in self._options:
self._options.append(option_id)
else:
if state:
self._options.remove(option_id)
self.__services_inst.option_changed()
def get_options(self):
return self._options
def clear_options(self):
self._options = []
#virtual functions
#in: container hbox
#out: (menu entry name, menu icon name)
def on_load(self, container):
pass
def on_unload(self):
pass
#return true if apply button should be sensitive or false if not. -1 to force disabled
def on_query_apply_state(self):
pass
def on_apply(self):
pass
#called when current plugin's page is selected. The plugin's widget should be shown
def on_enter(self):
pass
#called when current plugin's page is changed to another. The plugin's widget should be hidden.
def on_leave(self):
pass
|