По какой-то причине следующий код работает нормально, но если компьютер не используется в течение примерно 10 минут (без взаимодействия с мышью / клавиатурой), текст ToolButton перестает отображаться на панели и остается пустым.Странная вещь, если с помощью ПК он будет работать дольше, есть идеи, почему или что может привести к такому отказу?
Подумайте, что моим следующим шагом может быть установка новой виртуальной машины Linux для тестирования кода и исключение моей установки из-за отсутствия идей, которые можно попробовать.
также будет предпринята другая попыткаполучить код для запуска из терминала вместо команд «добавить на панель» или команд mate-panel-test-applets, так как я уверен, что есть другие ошибки / предупреждения, которые не выводятся через операторы print из-за того, что они являются апплетом панели.
#Example panel applet output text: "/ = 6G"
I'm Using:
Linux katerina 4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Ubuntu 18.04.1 LTS
GTK 3.22.30
python sys.version = '3.6.6 (default, Sep 12 2018, 18:26:19) \n[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
- Знать элементы управления, работающие как можно получить события щелчка
- Проверенная заставка, Опции управления питанием
- Пробное принудительное перерисовывание событий на ToolButton
- провереноToolButton lable.text все еще обновляется
- Проверено, что мой свободный код на диске все еще работает, поэтому знайте, что планировщик работает
- проверено изменение текста дискового пространства dd if = / dev / zero of = test bs = 1024 count = 1000000
Пробная настройка box.set_above_child (False)
import sys
import logging
import logging.handlers
import os
import shutil
import gi
gi.require_version('MatePanelApplet', '4.0')
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import MatePanelApplet
from datetime import datetime
from apscheduler.schedulers.background import BackgroundScheduler
from hurry.filesize import size
def configure_logger():
#Create a new logger and connect to syslog as invokes as script
my_logger = logging.getLogger("TestPythonApplet")
my_logger.setLevel(logging.DEBUG)
logging.getLogger('apscheduler').setLevel(logging.DEBUG)
formatter = logging.Formatter('%(name)s[%(process)d]: %(levelname)s: %(message)s')
handler = logging.handlers.SysLogHandler(address = '/dev/log')
handler.setFormatter(formatter)
my_logger.addHandler(handler)
return my_logger
<code><pre>
# create the applet. Basicly all your applet code for buttons, etc here
def applet_fill(applet):
#todo: maybe create a applet class like dock_applet.py example
my_logger.debug('Applet started')
#NOTE: Click events not always registered when click using ToolButton
#Think because it dont own its own X-window for preformance reasons as mostly decrotive
#As such dont normaly have to handle x events
#see: https://developer.gnome.org/gtkmm-tutorial/3.0/chapter-widgets-without-xwindows.html.en
#So we wrap in an Gtk.EventBox()
button = Gtk.ToolButton()
box = Gtk.EventBox() #Used to capture mouse events
box.set_above_child(True) #Fixes left clicks not being detected 100%
box.add(button)
box.connect("button_press_event", button_click, applet)
applet.add(box)
# show_image = False
# if show_image:
# #Follow works for showing image
# theme = Gtk.IconTheme().get_default()
# if theme.has_icon("mate"): #Keep things simple and look for known icon installed
# my_logger.debug('Mate icon found')
#
# image = Gtk.Image()
# #<class 'gi.repository.GdkPixbuf.Pixbuf
# i = theme.load_icon("happy", 32, Gtk.IconLookupFlags.NO_SVG)
# s= image.new_from_pixbuf(i) #<class 'gi.repository.Gtk.Image'>
# button.set_icon_widget(s)
# else: #Use text mode
# button.set_label(get_disk_free())
<pre>
button.set_label(get_disk_free())
#Now finnished creating applet start disk
scheduler.start()
scheduler.add_job(set_disk_free, 'interval', args=[applet], seconds=1, id='set_disk_free_id', replace_existing=True) #Args to pass to function set_disk_free
applet.show_all()
return True
def set_disk_free(applet):
#TODO: Is there a way to applet.get_child_by_name("GtkToolButton") type function
#Find toolButton widget and set text
for items in applet.get_children(): # Get list of child objects under applet
#my_logger.debug(items.get_name()) # should be a 'gi.repository.Gtk.EventBox'
if items.get_name() == "GtkEventBox":
for items in items.get_children():
if items.get_name() == "GtkToolButton": #Found main tool button
items.set_label(get_disk_free())
items.queue_draw() #lets try forceing a redraw of widget for some reason
#if dont touch pc for 10 min cant see text in pannel
#yet the debug line below shows text is still set and updating
my_logger.debug('Label: \"' + items.get_label() + '\"')
<code>def get_disk_free():
usage_string = '/ = '+ size(shutil.disk_usage('/').free)
my_logger.debug('Updateing:' + str(datetime.now().strftime('%d-%m-%Y %H:%M:%S')) + usage_string )
return usage_string
def button_click(widget, event, applet):
if event.type == Gdk.EventType.BUTTON_PRESS and event.button == 1:
my_logger.debug('Left Button clicked')
my_logger.debug('Updating free space text')
set_disk_free(applet)
if event.type == Gdk.EventType.BUTTON_PRESS and event.button == 3:
my_logger.debug('Right Button clicked')
def applet_factory(applet, iid, data):
# return False to tell mate we did not create a applet
if iid != "TestPythonApplet":
return False
applet_fill(applet)
return True
#Code starts here
my_logger = configure_logger()
scheduler = BackgroundScheduler()
MatePanelApplet.Applet.factory_main("TestPythonAppletFactory", True,
MatePanelApplet.Applet.__gtype__,
applet_factory, None)
my_logger.debug('Exiting')
scheduler.shutdown()
<pre>
#
#To test:
##########
##Create File: org.mate.panel.applet.TestPythonApplet.service
#[D-BUS Service]
#Name=org.mate.panel.applet.TestPythonAppletFactory
#Exec=/usr/bin/env python3 /home/chiptoxic/Downloads/mate-panel-applet/test_python_applet/test_python_applet.py
#
##Create File: org.mate.panel.TestPythonApplet.mate-panel-applet
#[Applet Factory]
#Id=TestPythonAppletFactory
#InProcess=false
#Location=/home/chiptoxic/Downloads/mate-panel-applet/test_python_applet/test_python_applet.py
#Name=Test Applet Factory
#Description=A MATE Python Applet example factory
#
#[TestPythonApplet]
#Name=Test Python Applet
#Description=A MATE Python Applet example
#Icon=happy
#MateComponentId=OAFIID:MATE_TestPythonApplet
#Simplified path to save space
#sudo ln -s org.mate.panel.TestPythonApplet.mate-panel-applet /usr/share/mate-panel/applets/org.mate.panel.TestPythonApplet.mate-panel-applet
#sudo ln -s org.mate.panel.applet.TestPythonApplet.service /usr/share/dbus-1/services/org.mate.panel.applet.TestPythonApplet.service
#chmod 755 org.mate.panel.TestPythonApplet.mate-panel-applet
#chmod 644 org.mate.panel.TestPythonApplet.service
#tail -f /var/log/syslog
#
#Following will kill process id of applet (have as bash script binded to key for easy testing / reload
#kill $(ps -aux | grep python3 | grep test_python_applet.py | tr -s ' ' | cut -d ' ' -f 2)
#
################################################################################