def __init__(self, pixmap, title="", parent=None): QGraphicsWidget.__init__(self, parent) self._title = None self._size = QSizeF() layout = QGraphicsLinearLayout(Qt.Vertical, self) layout.setSpacing(2) layout.setContentsMargins(5, 5, 5, 5) self.setContentsMargins(0, 0, 0, 0) self.pixmapWidget = GraphicsPixmapWidget(pixmap, self) self.labelWidget = GraphicsTextWidget(title, self) layout.addItem(self.pixmapWidget) layout.addItem(self.labelWidget) layout.setAlignment(self.pixmapWidget, Qt.AlignCenter) layout.setAlignment(self.labelWidget, Qt.AlignHCenter | Qt.AlignBottom) self.setLayout(layout) self.setSizePolicy(QSizePolicy.MinimumExpanding, QSizePolicy.MinimumExpanding) self.setFlag(QGraphicsItem.ItemIsSelectable, True) self.setTitle(title) self.setTitleWidth(100)
class TurnOffScreen(plasmascript.Applet): def __init__(self, parent, args = None): plasmascript.Applet.__init__(self, parent) def init(self): #TODO: have a configuration interface to set keybroad shortcut #self.setHasConfigurationInterface(True) self.setAspectRatioMode(Plasma.ConstrainedSquare) self.setBackgroundHints(self.NoBackground) self.sessionBus = dbus.SessionBus() self.powerdevil = self.sessionBus.get_object('org.freedesktop.PowerManagement', '/modules/powerdevil') self.icon= Plasma.IconWidget(KIcon('preferences-desktop-screensaver'), '', self.applet) if KGlobalSettings.singleClick(): self.connect(self.icon, SIGNAL('clicked()'), self.turn_off_screen) else: self.connect(self.icon, SIGNAL('doubleClicked()'), self.turn_off_screen) self.connect(self, SIGNAL('active()'), self.turn_off_screen) self.layout = QGraphicsLinearLayout(self.applet) self.layout.setContentsMargins(0, 0, 0, 0) self.layout.setSpacing(0) self.layout.addItem(self.icon) self.setLayout(self.layout) self.resize(25, 25) #def showConfigurationInterface(self): # self.con_short = KShortcutWidget(None) # self.con_short.show() def turn_off_screen(self): self.powerdevil.turnOffScreen(dbus_interface='org.kde.PowerDevil')
def __init__(self, pixmap, title="", parentItem=None, **kwargs): super().__init__(parentItem, **kwargs) self.setFocusPolicy(Qt.StrongFocus) self._title = None self._size = QSizeF() layout = QGraphicsLinearLayout(Qt.Vertical, self) layout.setSpacing(2) layout.setContentsMargins(5, 5, 5, 5) self.setContentsMargins(0, 0, 0, 0) self.pixmapWidget = GraphicsPixmapWidget(pixmap, self) self.labelWidget = GraphicsTextWidget(title, self) layout.addItem(self.pixmapWidget) layout.addItem(self.labelWidget) layout.addStretch() layout.setAlignment(self.pixmapWidget, Qt.AlignCenter) layout.setAlignment(self.labelWidget, Qt.AlignHCenter | Qt.AlignBottom) self.setLayout(layout) self.setSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum) self.setFlag(QGraphicsItem.ItemIsSelectable, True) self.setTitle(title) self.setTitleWidth(100)
def __init__(self, labels=[], orientation=Qt.Vertical, alignment=Qt.AlignCenter, parent=None): QGraphicsWidget.__init__(self, parent) layout = QGraphicsLinearLayout(orientation) layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) self.setLayout(layout) self.orientation = orientation self.alignment = alignment self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) self.label_items = [] self.set_labels(labels)
def __init__(self, labels=[], orientation=Qt.Vertical, parent=None): QGraphicsWidget.__init__(self, parent) layout = QGraphicsLinearLayout(orientation) layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) self.setLayout(layout) self.orientation = orientation self.alignment = Qt.AlignCenter self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) self.label_items = [] self.set_labels(labels)
class XMonadLogPlasmoid(plasmascript.Applet): def __init__(self, parent, args=None): plasmascript.Applet.__init__(self, parent) @staticmethod def getToolButton(): x = Plasma.ToolButton() x.setContentsMargins(0, 0, 0, 0) x.nativeWidget().setToolButtonStyle(Qt.ToolButtonTextBesideIcon) return x @staticmethod def setToolButtonStyle(x, text, icon, color="#383838", font_weight="normal", text_decoration="none"): x.setIcon(KIcon(icon)) x.setText(text) style_sheet = "QToolButton { color: %s; font-weight: %s; text-decoration: %s; font-size: 11px; max-height: 18px; padding-top: 0; padding-bottom: 0; }" % (color, font_weight, text_decoration) x.nativeWidget().setStyleSheet(style_sheet) @staticmethod def getLabel(text, color="#383838", font_weight="normal", text_decoration="none"): x = Plasma.Label() x.setText(text) x.setContentsMargins(0, 0, 0, 0) x.setSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum) x.setWordWrap(False) style_sheet = "QLabel { color: %s; font-weight: %s; text-decoration: %s; font-size: 11px; max-height: 20px; padding-left: 6px }" % (color, font_weight, text_decoration) x.nativeWidget().setStyleSheet(style_sheet) return x def setup_dbus(self): self.log = Log(self.layout) def init(self): global label self.setHasConfigurationInterface(False) self.setAspectRatioMode(Plasma.IgnoreAspectRatio) self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Fixed)) self.layout = QGraphicsLinearLayout(Qt.Horizontal) self.layout.setContentsMargins(0, 0, 0, 0) self.setContentsMargins(0, 0, 0, 0) self.applet.setLayout(self.layout) self.setMinimumHeight(30) self.setMaximumHeight(100) self.setMaximumWidth(900) self.layout.setMaximumHeight(100) self.setup_dbus()
class TurnOffScreen(plasmascript.Applet): def __init__(self, parent, args=None): plasmascript.Applet.__init__(self, parent) def init(self): #TODO: have a configuration interface to set keybroad shortcut #self.setHasConfigurationInterface(True) self.setAspectRatioMode(Plasma.ConstrainedSquare) self.setBackgroundHints(self.NoBackground) self.sessionBus = dbus.SessionBus() self.powerdevil = self.sessionBus.get_object( 'org.freedesktop.PowerManagement', '/modules/powerdevil') self.icon = Plasma.IconWidget(KIcon('preferences-desktop-screensaver'), '', self.applet) if KGlobalSettings.singleClick(): self.connect(self.icon, SIGNAL('clicked()'), self.turn_off_screen) else: self.connect(self.icon, SIGNAL('doubleClicked()'), self.turn_off_screen) self.connect(self, SIGNAL('active()'), self.turn_off_screen) self.layout = QGraphicsLinearLayout(self.applet) self.layout.setContentsMargins(0, 0, 0, 0) self.layout.setSpacing(0) self.layout.addItem(self.icon) self.setLayout(self.layout) self.resize(25, 25) #def showConfigurationInterface(self): # self.con_short = KShortcutWidget(None) # self.con_short.show() def turn_off_screen(self): self.powerdevil.turnOffScreen(dbus_interface='org.kde.PowerDevil')
def init(self): # Fill space if in a horizontal panel. self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Preferred)) layout = QGraphicsLinearLayout(Qt.Horizontal, self.applet) layout.setContentsMargins(0, 0, 0, 0) self.applet.setLayout(layout) self.icon = Plasma.IconWidget(self.applet) self.label = Plasma.Label(self.applet) # TODO: Improve handling of very long window titles. self.label.setWordWrap(False) layout.addItem(self.icon) layout.addItem(self.label) layout.setStretchFactor(self.label, 1) # Reasonable default size -- can be resized later by user. self.resize(500, 30) self.refreshTimer = QTimer() self.refreshTimer.setInterval(I3STATUS_REFRESH_INTERVAL) self.refreshTimer.timeout.connect(self.reloadI3statusText) self.statusIterator = execute(["i3status"]) self.refreshTimer.start() self.windowChangeTimer = QTimer() self.windowChangeTimer.setSingleShot(True) self.windowChangeTimer.setInterval(TITLE_DISPLAY_TIMEOUT) self.windowChangeTimer.timeout.connect(self.hideTitleText) KWindowSystem.self().windowRemoved.connect(self.windowRemoved) KWindowSystem.self().windowChanged.connect(self.windowChanged) KWindowSystem.self().activeWindowChanged.connect( self.activeWindowChanged)
class Channel(QGraphicsWidget): def __init__(self , parent): QGraphicsWidget.__init__(self) self.veromix = parent self.index = -1 self.pa = parent.getPulseAudio() self.set_name("") self.deleted = True self.pa_sink = None self.extended_panel_shown = False self.extended_panel= None self.show_meter = True self.expander = None self.popup_menu = None self.card_settings = None self.menus = None self.port_actions = None self.double_click_filter = ChannelEventFilter(self) self.installEventFilter(self.double_click_filter) self.init() self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Fixed,True)) def init(self): self.layout = QGraphicsLinearLayout(Qt.Vertical) self.layout.setContentsMargins(2,2,2,0) self.setLayout(self.layout) self.initArrangement() self.composeArrangement() self.setAcceptDrops(True) self._on_upate_expander_enabled() def initArrangement(self): self.create_frame() self.create_panel() self.createMute() self.createMiddle() self.create_expander() def composeArrangement(self): self.layout.addItem(self.frame) self.frame_layout.addItem(self.panel) self.panel_layout.addItem(self.mute) self.panel_layout.addItem(self.middle) def create_frame(self): self.frame = Plasma.Frame() self.frame_layout = QGraphicsLinearLayout(Qt.Vertical) self.frame.setEnabledBorders (Plasma.FrameSvg.NoBorder) self.frame.setFrameShadow(Plasma.Frame.Plain) self.frame_layout.setContentsMargins(0,0,0,0) self.frame.setLayout(self.frame_layout) def create_panel(self): self.panel = QGraphicsWidget() self.panel_layout = QGraphicsLinearLayout(Qt.Horizontal) self.panel_layout.setContentsMargins(6,8,10,6) self.panel.setLayout(self.panel_layout) def createMute(self): self.mute = MuteButton(self) self.connect(self.mute, SIGNAL("clicked()"), self.on_mute_cb) def createMiddle(self): self.middle = QGraphicsWidget() self.middle_layout = QGraphicsLinearLayout(Qt.Vertical) #self.middle_layout.setContentsMargins(6,8,6,0) self.middle_layout.setContentsMargins(0,0,0,0) self.middle.setLayout(self.middle_layout) self.middle.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Minimum)) self.createSlider() self.middle_layout.addItem(self.slider) def createSlider(self): self.slider = MeterSlider(None, self.veromix.is_slider_unit_value_visible()) self.slider.installEventFilter(self.double_click_filter) self.slider.set_meter_visible(self.veromix.is_meter_visible()) self.slider.setOrientation(Qt.Horizontal) self.slider.setMaximum(self.veromix.get_max_volume_value()) self.slider.setMinimum(0) self.slider.volumeChanged.connect( self.on_slider_cb) def create_expander(self): self.expander = Plasma.IconWidget(self.panel) self.expander.setZValue(10) self.connect(self, SIGNAL("geometryChanged()"), self._resize_widgets) self.expander.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Fixed)) self.expander.clicked.connect(self.on_expander_clicked) self.expander.setSvg("widgets/arrows", "left-arrow") def create_context_menu(self, event): self.popup_menu = QMenu() self.popup_menu.triggered.connect(self.on_contextmenu_clicked) self.context_menu_create_custom() self.context_menu_create_mute() self.context_menu_create_meter() self.context_menu_create_unlock_channels() self.context_menu_create_effects() self.create_menu_kill_sink() self.context_menu_create_settings() if event: self.popup_menu.exec_(event.screenPos()) else: self.popup_menu.exec_(QCursor.pos()) def context_menu_create_mute(self): action_mute = QAction(i18n("Muted"), self.popup_menu) self.popup_menu.addAction(action_mute) action_mute.setCheckable(True) action_mute.setChecked(self.isMuted()) action_mute.triggered.connect(self.on_mute_cb) def context_menu_create_meter(self): action_meter = QAction(i18n("Volume meter"), self.popup_menu) self.popup_menu.addAction(action_meter) action_meter.setCheckable(True) action_meter.setChecked(self.pa_sink.has_monitor()) action_meter.triggered.connect(self.on_meter_cb) def context_menu_create_unlock_channels(self): action_unlock = QAction(i18n("Unlock channels"), self.popup_menu) self.popup_menu.addAction(action_unlock) action_unlock.setCheckable(True) action_unlock.setChecked(self.extended_panel_shown) action_unlock.triggered.connect(self.toggle_channel_lock) def context_menu_create_ports(self): self.port_actions = {} if len(self.pa_sink.ports.keys()) > 1: ports_menu = QMenu(i18n("Ports"), self.popup_menu) ports = self.pa_sink.ports for port in ports.keys(): action = QAction(in_unicode(ports[port]), self.popup_menu) self.port_actions[action]=port if port == self.pa_sink.active_port: action.setCheckable(True) action.setChecked(True) else: action.setChecked(False) action.setCheckable(False) ports_menu.addAction(action) self.popup_menu.addMenu(ports_menu) def create_menu_kill_sink(self): pass def context_menu_create_sounddevices(self): self.card_settings = {} self.menus = [] for card in self.veromix.card_infos.values(): current = self.veromix.get_card_info_for(self) if current != None and current.get_description() == card.get_description(): card_menu = QMenu(i18n("Profile"), self.popup_menu) self.popup_menu.addMenu(card_menu) else: card_menu = QMenu(card.get_description(), self.popup_menu) self.menus.append(card_menu) active_profile_name = card.get_active_profile_name() self.profiles = card.get_profiles() for profile in self.profiles: action = QAction(in_unicode(profile.description), card_menu) self.card_settings[action] = card if profile.name == active_profile_name: action.setCheckable(True) action.setChecked(True) card_menu.addAction(action) def context_menu_create_sounddevices_other(self): if len(self.menus) > 0: self.popup_menu.addSeparator() for each in self.menus: self.popup_menu.addMenu(each) def context_menu_create_custom(self): pass def context_menu_create_effects(self): pass def context_menu_create_settings(self): self.popup_menu.addSeparator() action_settings = QAction(i18n("Veromix Settings"), self.popup_menu) self.popup_menu.addAction(action_settings) action_settings.triggered.connect(self.veromix.applet.showConfigurationInterface) def _resize_widgets(self): self.expander.setPos(int(self.panel.size().width() - self.expander.size().width()) ,0) def on_double_clicked(self): self.slider.toggle_meter() self.pa_sink.toggle_monitor() self.slider.set_meter_value(0) def on_step_volume(self, up): vol = self.pa_sink.get_volume() STEP = 5 if up: vol = vol + STEP else: vol = vol - STEP if vol < 0: vol = 0 if vol > self.veromix.get_max_volume_value(): vol = self.veromix.get_max_volume_value() self.setVolume(vol) def setVolume(self, value): vol = self.pa_sink.volumeDiffFor(value) if self.veromix.get_auto_mute(): for c in vol: if c <= 0: ## FIXME HACK for MurzNN this should be conditional self.pa.set_sink_mute(self.index, True) self.automatically_muted = True return if self.automatically_muted : self.automatically_muted = False self.pa.set_sink_mute(self.index, False) self.set_channel_volumes(vol) def get_volume(self): if self.pa_sink: return self.pa_sink.get_volume() return [0] def on_expander_clicked(self): self.contextMenuEvent(None) def toggle_channel_lock(self): self.middle_layout.removeItem(self.slider) self.slider = None if (self.extended_panel_shown): self.extended_panel_shown = False self.expander.setSvg("widgets/arrows", "left-arrow") self.createSlider() self.middle_layout.addItem(self.slider) else: self.extended_panel_shown = True self.expander.setSvg("widgets/arrows", "down-arrow") self.slider = SinkChannelWidget(self.veromix, self) self.slider.installEventFilter(self.double_click_filter) self.middle_layout.addItem(self.slider) self.middle_layout.setContentsMargins(0,0,0,0) self.middle.setContentsMargins(0,0,0,0) self.update_with_info(self.pa_sink) self.veromix.check_geometries() def on_update_configuration(self): self.slider.set_meter_visible(self.veromix.is_meter_visible()) self.slider.setMaximum(self.veromix.get_max_volume_value()) self.slider.set_unit_value_visible(self.veromix.is_slider_unit_value_visible()) self._on_upate_expander_enabled() def _on_upate_expander_enabled(self): if self.veromix.is_expander_enabled(): self.expander.show() else: self.expander.hide() def on_contextmenu_clicked(self, action): if action in self.card_settings.keys(): card = self.card_settings[action] for profile in card.get_profiles(): if action.text() == profile.description: self.veromix.pa.set_card_profile(card.index, profile.name) if action in self.port_actions.keys(): self.pa_sink.set_port(self.port_actions[action]) def contextMenuEvent(self,event): self.create_context_menu(event) def on_mute_cb(self): self.pa_sink.toggle_mute() def on_meter_cb(self): self.on_double_clicked() def sink_input_kill(self): self.pa_sink.kill() def set_channel_volumes(self, values): self.pa_sink.set_volume(values) def on_update_meter(self, index, value, number_of_sinks): if self.index == index: self.slider.set_meter_value(int(value)) def update_with_info(self,info): self.pa_sink = info self.index = info.index self.update_label() self.updateIcon() if self.slider: self.slider.update_with_info(info) if self.extended_panel: self.extended_panel.update_with_info(info) self.update() def update_label(self): if self.pa_sink: self.set_name(self.pa_sink.name) def getOutputIndex(self): return self.index def sinkIndexFor( self, index): return (index * 100000) + 100000 def updateIcon(self): pass def on_slider_cb(self, value): self.setVolume(value) def isDefaultSink(self): if self.pa_sink and "isdefault" in self.pa_sink.props: return self.pa_sink.props["isdefault"] == "True" return False def startDrag(self,event): pass def removeSlider(self): # if a slider is not visible, plasmoidviewer crashes if the slider is not removed.. (dont ask me) if self.slider: self.middle_layout.removeItem(self.slider) self.slider = None def isMuted(self): if self.pa_sink: return self.pa_sink.isMuted() return False def isSinkOutput(self): if self.pa_sink: return self.pa_sink.is_sinkoutput() return False def isSinkInput(self): if self.pa_sink: return self.pa_sink.is_sinkinput() return False def isSink(self): if self.pa_sink: return self.pa_sink.is_sink() return False def isNowplaying(self): return False def isSourceOutput(self): if self.pa_sink: return self.pa_sink.is_sourceoutput() return False def wheelEvent(self, event): if self.slider: self.slider.wheelEvent(event) def set_name(self, string): self._name = in_unicode(string) def name(self): return self._name def update_module_info(self, index, name, argument, n_used, auto_unload): pass def get_ladspa_type(self): return str(type(self)) def get_pasink_name(self): return self.pa_sink.name ## LADSPA helpers def populate_presets_menu(self, target_menu, checked_item, add_actions): effect_menu = QMenu(i18n("Presets"), target_menu) if add_actions: self.action_save_preset = QAction(i18n("Save"),effect_menu) effect_menu.addAction(self.action_save_preset) if not self.is_preset(): self.action_save_preset.setEnabled(False) self.action_save_as_preset = QAction(i18n("Save As..."),effect_menu) effect_menu.addAction(self.action_save_as_preset) effect_menu.addSeparator() for preset in LADSPAPresetLoader().presets(): action = QAction(preset["preset_name"],effect_menu) effect_menu.addAction(action) if checked_item == preset["preset_name"]: action.setCheckable(True) action.setChecked(True) action.setEnabled(False) target_menu.addMenu(effect_menu) def populate_switch_effect_menu(self, target_menu, checked_item): effect_menu = QMenu(i18n("Effect"), target_menu) for preset in LADSPAEffects().effects(): action = QAction(preset["preset_name"],effect_menu) effect_menu.addAction(action) if checked_item == preset["label"]: action.setCheckable(True) action.setChecked(True) action.setEnabled(False) target_menu.addMenu(effect_menu) def on_set_ladspa_effect(self, value, master): parameters = "" preset = None for p in LADSPAEffects().effects(): if p["preset_name"] == value: parameters = "sink_name=" + urllib.quote(p["name"]) preset = p for p in LADSPAPresetLoader().presets(): if p["preset_name"] == value: parameters = "sink_name=" + urllib.quote(p["preset_name"]) preset = p parameters = parameters + " master=" + master + " " parameters = parameters + " plugin=" + preset["plugin"] parameters = parameters + " label=" + preset["label"] parameters = parameters + " control=" + preset["control"] self.pa_sink.set_ladspa_sink(parameters) def next_focus(self, forward=True): channels = self.veromix.get_visible_channels() if len(channels) > 0: index = 0 if self in channels: index = channels.index(self) if forward: index = index + 1 if index >= len(channels): index = 0 else: index = index - 1 if index < 0: index = len(channels) - 1 channels[index].set_focus() def set_focus(self): self.slider.set_focus() def pa_sink_proxy(self): return self.pa_sink
class MeterSlider(QGraphicsWidget): volumeChanged = pyqtSignal(int) def __init__(self, show_unit_value = False, unit_symbol="%"): QGraphicsWidget.__init__(self) self.meter = None self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Fixed,True)) self.slider = LabelSlider(show_unit_value, unit_symbol) self.slider.setParent(self) self.slider.volumeChanged.connect(self.on_volume_changed) self.layout = QGraphicsLinearLayout(Qt.Vertical) self.layout.setContentsMargins(2,2,2,0) self.setLayout(self.layout) self.layout.addItem(self.slider) self.connect(self, SIGNAL("geometryChanged()"), self._resize_widgets) def create_meter(self): self.meter = Plasma.Meter(self) self.meter.setMeterType(Plasma.Meter.BarMeterHorizontal) self.meter.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Fixed, True)) self.meter.setZValue(0) if self.event_filter: self.meter.installEventFilter(self.event_filter) def on_volume_changed(self,val): self.volumeChanged.emit(val) def setOrientation(self, orient): self.slider.setOrientation(orient) def setMaximum(self, orient): self.slider.setMaximum(orient) def setMinimum(self, orient): self.slider.setMinimum(orient) def setText(self, text): self.slider.setText(text) def setBoldText(self,text): self.slider.setBoldText(text) def setValueFromPlasma(self, value): self.slider.setValueFromPlasma(value) def update_with_info(self, info): self.slider.update_with_info(info) def setValueFromPulse(self, value): self.slider.setValueFromPulse(value) def nativeWidget(self): return self.slider.nativeWidget() def set_unit_value_visible(self, boolean): self.slider.set_unit_value_visible(boolean) def _resize_widgets(self): if not self.meter: return meter_width = self.size().width() self.meter.setMinimumWidth(meter_width) self.meter.setMaximumWidth(meter_width) meter_height = Plasma.Theme.defaultTheme().fontMetrics().height() self.meter.setMinimumHeight(meter_height) self.meter.setMaximumHeight(meter_height) self.meter.setPos(0, int(self.size().height()/2)) self.slider.setZValue(800) self.slider.label.setZValue(100) def toggle_meter(self): self.set_meter_visible((self.meter == None)) def set_meter_value(self, value): if self.meter: self.meter.setValue(int(value)) def set_meter_visible(self, aboolean): if aboolean: self.create_meter() else: if self.meter: self.meter.setParent(None) del self.meter self.meter = None self._resize_widgets() # filt instead of filter (a python built-in assignment) def installEventFilter(self, filt): self.event_filter = filt self.slider.installEventFilter(filt) self.slider.label.installEventFilter(filt) if self.meter: self.meter.installEventFilter(filt) QGraphicsWidget.installEventFilter(self, filt) def set_focus(self): self.slider.set_focus()
class VeroMix(QGraphicsWidget): sinkOutputChanged = pyqtSignal() def __init__(self,parent): QGraphicsWidget.__init__(self) self.applet = parent self.pa = None self.last_resize_running = datetime.datetime.now() self.last_resize_running_timer_running = False self.card_infos = {} self.ladspa_index = 1 self.setFocusPolicy(Qt.TabFocus) def init(self): self.setAcceptsHoverEvents (True) self.layout = QGraphicsLinearLayout(Qt.Vertical, self) self.layout.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum)) self.scroller = LockableScrollWidget(self) self.scroller.setMinimumSize(120,90) self.layout.addItem(self.scroller) if self.applet.formFactor() != Plasma.Planar : self.scroller.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOff) self.source_panel = QGraphicsWidget() self.sink_panel = QGraphicsWidget() self.scrolled_panel_layout = QGraphicsLinearLayout(Qt.Vertical) self.scrolled_panel_widget = QGraphicsWidget() self.scrolled_panel_widget.setLayout(self.scrolled_panel_layout) self.scrolled_panel_layout.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) self.scrolled_panel_layout.setContentsMargins(0,0,0,6) self.showsTabs = not self.applet.useTabs() self.switchView(True) self.source_panel_layout = SortedLayout(Qt.Vertical, False) self.source_panel_layout.setSpacing(0) self.source_panel.setLayout(self.source_panel_layout) self.source_panel_layout.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) if self.showsTabs: self.source_panel_layout.addStretch() self.sink_panel_layout = SortedLayout(Qt.Vertical, False) self.sink_panel_layout.setSpacing(0) self.sink_panel.setLayout(self.sink_panel_layout) self.sink_panel_layout.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) self.layout.setContentsMargins(0,0,0,0) self.source_panel_layout.setContentsMargins(0,0,0,0) self.sink_panel_layout.setContentsMargins(0,0,0,0) #QTimer.singleShot(4000, self.start_pa) self.start_pa() self.connect_mediaplayers() def switchView(self, startup=False): if self.showsTabs: self.scrolled_panel_layout = QGraphicsLinearLayout(Qt.Vertical) scrolled_panel = QGraphicsWidget() scrolled_panel.setLayout(self.scrolled_panel_layout) self.scrolled_panel_layout.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) self.scrolled_panel_layout.addItem(self.source_panel) self.scrolled_panel_layout.addItem(self.sink_panel) else: scrolled_panel = Plasma.TabBar() scrolled_panel.addTab(i18n("Playback"), self.sink_panel) scrolled_panel.addTab(i18n("Record"), self.source_panel) self.source_panel.show() self.scrolled_panel = scrolled_panel self.showsTabs = not self.showsTabs self.scroller.setWidget(self.scrolled_panel) if not startup: self.check_geometries() def on_update_configuration(self): for source in self.source_panel_layout.getChannels().values(): source.on_update_configuration() for sink in self.sink_panel_layout.getChannels().values(): sink.on_update_configuration() self.pa.set_autostart_meters(bool(self.applet.is_meter_visible())) # connect to pulseaudio(dbus) callbacks def start_pa(self): try: self.pa = PulseAudio(self) self.pa.connect_veromix_service() except Exception, e: self.showMessage(KIcon("script-error"), i18n("There is a problem with the backgroud-service. \ <ul> \ <li>If you just upgraded try killing the process named: VeromixServiceMain.py and relaunch this plasmoid</li> \ <li>If you don't know how to do that consider rebooting</li></ul><br/>\ <a href=\"http://code.google.com/p/veromix-plasmoid/wiki/Debugging\">See wiki for more details</a> <span style=\"font-size: small;\">(right click and copy url)</span>.")) print "\nError connecting to veromix-service:\n" , e, "\n" return self.connect(self.pa, SIGNAL("on_sink_input_info(PyQt_PyObject)"), self.on_sink_input_info) self.connect(self.pa, SIGNAL("on_sink_info(PyQt_PyObject)"), self.on_sink_info) self.connect(self.pa, SIGNAL("on_source_output_info(PyQt_PyObject)"), self.on_source_output_info) self.connect(self.pa, SIGNAL("on_source_info(PyQt_PyObject)"), self.on_source_info) self.connect(self.pa, SIGNAL("on_sink_remove(int)"), self.on_remove_sink) self.connect(self.pa, SIGNAL("on_sink_input_remove(int)"), self.on_remove_sink_input) self.connect(self.pa, SIGNAL("on_source_remove(int)"), self.on_remove_source) self.connect(self.pa, SIGNAL("on_source_output_remove(int)"), self.on_remove_source_output) self.connect(self.pa, SIGNAL("on_volume_meter_sink(int, float)"), self.on_volume_meter_sink) self.connect(self.pa, SIGNAL("on_volume_meter_sink_input(int, float)"), self.on_volume_meter_sink_input) self.connect(self.pa, SIGNAL("on_volume_meter_source(int, float)"), self.on_volume_meter_source) self.connect(self.pa, SIGNAL("on_card_info(PyQt_PyObject)"), self.on_card_info) self.connect(self.pa, SIGNAL("on_card_remove(int)"), self.on_remove_card) self.connect(self.pa, SIGNAL("on_module_info(int,PyQt_PyObject,PyQt_PyObject,PyQt_PyObject,PyQt_PyObject)"), self.on_module_info) self.pa.requestInfo()
class MediaPlayerUI(Channel): def __init__(self,name, veromix, controller): self.controller = controller Channel.__init__(self, veromix) self.controller.data_updated.connect(self.controller_data_updated) self.index = -1 self._state= None self._position = 0 self._artwork = "" self.last_playing_icon = KIcon(self.get_pauseIcon()) self.layout.setContentsMargins(6,0,6,2) self.controller.init_connection() def initArrangement(self): self.svg_path = self.veromix.applet.package().filePath('images', 'buttons.svgz') self.createMiddle() self.createSlider() self.create_prev_panel() self.create_frame() self.create_panel() self.create_prev_button() self.create_play_pause_button() self.create_next_button() self.create_next_panel() self.createPositionLabel() self.createLengthLabel() self.create_expander() def composeArrangement(self): self.layout.addItem(self.frame) self.frame_layout.addItem(self.panel) self.prev_panel_layout.addStretch() self.prev_panel_layout.addItem(self.prev) self.next_panel_layout.addStretch() self.next_panel_layout.addItem(self.next) self.prev_panel.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) self.next_panel.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) self.play.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Minimum)) self.middle_layout.addStretch() self.middle_layout.addItem(self.play) self.panel.setContentsMargins(0,0,0,0) self.panel_layout.setContentsMargins(6,0,10,6) self.panel_layout.addStretch() self.panel_layout.addItem(self.prev_panel) self.panel_layout.addItem(self.middle) self.panel_layout.addItem(self.next_panel) self.panel_layout.addStretch() def on_expander_clicked(self): self.middle_layout.removeItem(self.slider) if (self.extended_panel_shown): self.extended_panel_shown = False #self.frame_layout.removeItem(self.extended_panel) self.extended_panel.setParent(None) self.panel_layout.setContentsMargins(6,0,10,6) self.extended_panel = None self.slider= None self.expander.setSvg("widgets/arrows", "left-arrow") else: self.extended_panel_shown = True self.create_settings_widget() #self.frame_layout.addItem(self.extended_panel) self.panel_layout.setContentsMargins(6,0,10,20) self.extended_panel.setPos(0, int(self.frame.size().height() - 15)) #self.expander.setSvg("widgets/arrows", "up-arrow") self.expander.setSvg("widgets/arrows", "down-arrow") self.controller.set_fetch_extended_info(self.extended_panel_shown) self.veromix.check_geometries() def _resize_widgets(self): #self.expander.setPos(int(self.panel.size().width() - self.expander.size().width()) ,self.panel.size().height() - self.expander.size().height()) self.expander.setPos(int(self.panel.size().width() - self.expander.size().width()) ,0) if self.extended_panel: self.extended_panel.resize(QSizeF(int(self.frame.size().width()), -1)) #self.extended_panel.setPos(0, int(self.frame.size().height() - 12)) def create_settings_widget(self): self.createLengthLabel() self.createPositionLabel() self.createSlider() self.extended_panel = QGraphicsWidget(self.frame) self.extended_panel_layout = QGraphicsLinearLayout(Qt.Horizontal) self.extended_panel.setLayout(self.extended_panel_layout) self.extended_panel.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Minimum)) self.position_label.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum)) self.length_label.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum)) self.extended_panel_layout.addItem(self.position_label) self.extended_panel_layout.addItem(self.slider) self.extended_panel_layout.addItem(self.length_label) def controller_data_updated(self): self.update_state() self.update_cover() if self.extended_panel_shown: self.update_position() self.update_slider() def on_update_configuration(self): self.set_middle_size() if self.veromix.is_albumart_enabled(): self.middle.setIcon(KIcon()) self._on_upate_expander_enabled() def update_with_info(self, info): pass ## update ui def update_state(self): state = self.controller.state() if self._state != state: self._state = state if state == MediaPlayer.Playing: #self.play.setSvg(self.svg_path, "pause-normal") self.play.setIcon(KIcon("media-playback-pause")) if self.veromix.is_albumart_enabled(): self.middle.setIcon(self.last_playing_icon) else: #self.play.setSvg(self.svg_path, "play-normal") self.play.setIcon(KIcon("media-playback-start")) if self.veromix.is_albumart_enabled(): self.middle.setIcon(KIcon(self.get_pauseIcon())) def update_cover(self): if not self.veromix.is_albumart_enabled(): self.middle.setIcon(KIcon()) return True # FIXME val = self.controller._cover_string if self._artwork != val: self._artwork = val if val == None: self.last_playing_icon = KIcon(self.get_pauseIcon()) else: self.last_playing_icon = QIcon(QPixmap(self.controller.artwork())) self.middle.setIcon(self.last_playing_icon) def update_position(self): v = self.controller.position() if v != self._position: self._position = v pos_str = ( '%d:%02d' % (v / 60, v % 60)) self.position_label.setBoldText(pos_str) v = self.controller.length() if v : pos_str = ( '%d:%02d' % (v / 60, v % 60)) self.length_label.setBoldText(pos_str) def update_slider(self): if self.slider and self.extended_panel_shown: if self.controller.state() == MediaPlayer.Stopped: self.slider.setValueFromPulse(0) else: if self.controller.length() > 0 : v = self.controller.position() * 100 / self.controller.length() # if self.slider.check_pulse_timestamp(): self.slider.setValueFromPulse(v) def on_slider_action_triggered(self, action): value = self.slider.nativeWidget().sliderPosition() if value > -1 and (action == 7 or action == 3): self.controller.seek(value) ## initialize ui def context_menu_create_mute(self): pass def on_contextmenu_clicked(self, action): pass def context_menu_create_unlock_channels(self): action_unlock = QAction(i18n("Show position"), self.popup_menu) self.popup_menu.addAction(action_unlock) action_unlock.setCheckable(True) action_unlock.setChecked(self.extended_panel_shown) action_unlock.triggered.connect(self.on_expander_clicked) def create_next_panel(self): self.next_panel = QGraphicsWidget() self.next_panel_layout = QGraphicsLinearLayout(Qt.Vertical) self.next_panel_layout.setContentsMargins(0,0,0,0) self.next_panel.setLayout(self.next_panel_layout) def createPositionLabel(self): self.position_label = Label() self.position_label.setContentsMargins(0,0,0,0) self.position_label.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding, True)) self.position_label.setAlignment(Qt.AlignRight) def createLengthLabel(self): self.length_label = Label() self.length_label.setContentsMargins(0,0,0,0) self.length_label.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding, True)) self.length_label.setAlignment(Qt.AlignLeft) def create_prev_panel(self): self.prev_panel = Plasma.IconWidget() self.prev_panel_layout = QGraphicsLinearLayout(Qt.Vertical) self.prev_panel_layout.setContentsMargins(0,0,0,0) self.prev_panel.setLayout(self.prev_panel_layout) self.prev_panel.setSizePolicy(QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum)) def createMiddle(self): self.middle = Plasma.IconWidget() self.middle_layout = QGraphicsLinearLayout(Qt.Vertical) self.middle_layout.setContentsMargins(0,0,0,0) self.middle.setLayout(self.middle_layout) self.set_middle_size() self.middle.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)) if self.veromix.is_albumart_enabled(): self.middle.setIcon(KIcon(self.get_pauseIcon())) def set_middle_size(self): if self.veromix.is_albumart_enabled(): self.CONTROLSBAR_SIZE = 80 else: self.CONTROLSBAR_SIZE = 30 self.middle.setMinimumHeight(self.CONTROLSBAR_SIZE) self.middle.setPreferredHeight(self.CONTROLSBAR_SIZE) self.middle.setMaximumHeight(self.CONTROLSBAR_SIZE) def create_next_button(self): self.next = MuteButton(self) self.next.setAbsSize(20) #self.next.setSvg(self.svg_path , "next-normal") self.next.setIcon(KIcon("media-skip-forward")) self.connect(self.next, SIGNAL("clicked()"), self.on_next_cb ) def create_prev_button(self): self.prev = MuteButton(self) self.prev.setAbsSize(20) #self.prev.setSvg(self.svg_path, "prev-normal") self.prev.setIcon(KIcon("media-skip-backward")) self.connect(self.prev, SIGNAL("clicked()"), self.on_prev_cb ) def create_play_pause_button(self): self.play = MuteButton(self) self.play.setAbsSize(-1) #self.play.setSvg(self.svg_path, "stop-normal") self.play.setIcon(KIcon("media-playback-stop")) self.connect(self.play, SIGNAL("clicked()"), self.on_play_cb ) def createMute(self): pass # callbacks def on_mute_cb(self): pass def on_next_cb(self): self.controller.next_track() def on_prev_cb(self): self.controller.prev_track() def on_play_cb(self): if self.controller.state() == MediaPlayer.Playing: self.controller.pause() else: self.controller.play() # helpers def name(self): return self.controller_name() def controller_name(self): return self.controller.name() def get_pauseIcon(self): name = self.get_application_name() app = self.veromix.query_application(str(name)) if app == None: return name return app def get_application_name(self): return self.controller.get_application_name() def matches(self, sink): sink = self.get_assotiated_sink_input() if sink == None: return False return True def get_assotiated_sink_input(self): name = str(self.get_application_name()).lower() for sink in self.veromix.get_sinkinput_widgets(): if str(name).lower().find(sink.name()) >= 0: return sink for sink in self.veromix.get_sinkinput_widgets(): if str(sink.name()).lower().find(name) >= 0 : return sink return None ## overrides def isNowplaying(self): return True def isSinkOutput(self): return False def isSinkInput(self): return False def createSlider(self): Channel.createSlider(self) self.slider.setMaximum(100) self.slider.volumeChanged.disconnect(self.on_slider_cb) self.slider.nativeWidget ().actionTriggered.connect(self.on_slider_action_triggered) ## testing def is_nowplaying_player(self): return self.controller.is_mpris2_player() def is_mpris2_player(self): return self.controller.is_mpris2_player()