如何编写动态更新的面板应用程序/指标?


12

我正在尝试为ubuntu Mate编写一些面板应用程序。我非常了解C / C ++和SDL。我已经看到了Mate-University面板应用程序的github页面,但是我无法使其正常运行/我有一些时间。

我只是在想,是否有一些简便的方法可以编写面板应用程序?我不是在谈论使用自定义应用程序启动器,而是想向面板添加新功能,但是我不确定如何使用。有关编写面板应用程序的教程或说明可能会很有帮助。

Answers:


16

因为什么似乎是问这个问题已经际有一个答案,我在回答这个问题上是怎么做的扩展解释(中python

基本静态指标

由于Ubuntu Mate从15,10开始支持指标,因此为Mate编写指标和面板应用程序之间没有太大区别。因此,此链接python使用AppIndicator3API中的基本指标的良好起点。该链接是一个不错的开始,但没有提供有关如何在指示器上显示文本的任何信息,更不用说如何更新文本(或图标)了。不过,通过添加一些内容,可以得出如下所示的指标的基本“框架”。它将显示一个图标,一个文本标签和一个菜单:

在此处输入图片说明

#!/usr/bin/env python3
import signal
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('AppIndicator3', '0.1')
from gi.repository import Gtk, AppIndicator3

class Indicator():
    def __init__(self):
        self.app = 'test123'
        iconpath = "/opt/abouttime/icon/indicator_icon.png"
        self.indicator = AppIndicator3.Indicator.new(
            self.app, iconpath,
            AppIndicator3.IndicatorCategory.OTHER)
        self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)       
        self.indicator.set_menu(self.create_menu())
        self.indicator.set_label("1 Monkey", self.app)

    def create_menu(self):
        menu = Gtk.Menu()
        # menu item 1
        item_1 = Gtk.MenuItem('Menu item')
        # item_about.connect('activate', self.about)
        menu.append(item_1)
        # separator
        menu_sep = Gtk.SeparatorMenuItem()
        menu.append(menu_sep)
        # quit
        item_quit = Gtk.MenuItem('Quit')
        item_quit.connect('activate', self.stop)
        menu.append(item_quit)

        menu.show_all()
        return menu

    def stop(self, source):
        Gtk.main_quit()

Indicator()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()

在该行中AppIndicator3.IndicatorCategory.OTHER,定义了类别,如在此(部分过时)链接中所说明的。设置正确的类别很重要,以便将指示器放置在面板中的适当位置。

主要挑战;如何更新指标文字和/或图标

真正的挑战不是如何编写基本指标,而是如何定期更新指标的文本和/或图标,因为您希望它显示(文本)时间。为了使指示器正常工作,我们不能简单地使用threading启动第二个过程来定期更新接口。好吧,实际上我们可以,但是从长远来看,它将导致冲突,正如我发现的那样。

这里是哪里GObject来的,来,因为它是把这个(也过时)链接

调用gobject.threads_init()应用程序初始化。然后,您可以正常启动线程,但要确保线程永远不要直接执行任何GUI任务。相反,您可以gobject.idle_add用来安排GUI任务在主线程中执行

当我们更换gobject.threads_init()GObject.threads_init()gobject.idle_add通过GObject.idle_add(),我们非常有如何在运行的线程的更新版本Gtk的应用程序。一个简化的示例,显示了越来越多的猴子:

在此处输入图片说明

#!/usr/bin/env python3
import signal
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('AppIndicator3', '0.1')
from gi.repository import Gtk, AppIndicator3, GObject
import time
from threading import Thread

class Indicator():
    def __init__(self):
        self.app = 'test123'
        iconpath = "/opt/abouttime/icon/indicator_icon.png"
        self.indicator = AppIndicator3.Indicator.new(
            self.app, iconpath,
            AppIndicator3.IndicatorCategory.OTHER)
        self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)       
        self.indicator.set_menu(self.create_menu())
        self.indicator.set_label("1 Monkey", self.app)
        # the thread:
        self.update = Thread(target=self.show_seconds)
        # daemonize the thread to make the indicator stopable
        self.update.setDaemon(True)
        self.update.start()

    def create_menu(self):
        menu = Gtk.Menu()
        # menu item 1
        item_1 = Gtk.MenuItem('Menu item')
        # item_about.connect('activate', self.about)
        menu.append(item_1)
        # separator
        menu_sep = Gtk.SeparatorMenuItem()
        menu.append(menu_sep)
        # quit
        item_quit = Gtk.MenuItem('Quit')
        item_quit.connect('activate', self.stop)
        menu.append(item_quit)

        menu.show_all()
        return menu

    def show_seconds(self):
        t = 2
        while True:
            time.sleep(1)
            mention = str(t)+" Monkeys"
            # apply the interface update using  GObject.idle_add()
            GObject.idle_add(
                self.indicator.set_label,
                mention, self.app,
                priority=GObject.PRIORITY_DEFAULT
                )
            t += 1

    def stop(self, source):
        Gtk.main_quit()

Indicator()
# this is where we call GObject.threads_init()
GObject.threads_init()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()

这就是原则。在此答案的实际指标中,循环时间和指标文本均由导入到脚本中的辅助模块确定,但主要思想是相同的。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.