sonist-gtk/about_app.py

34 lines
990 B
Python

#!/usr/bin/env python3
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
class AboutWindow(Gtk.AboutDialog):
def __init__(self):
super().__init__(self)
self.set_keep_above(True)
self.set_program_name('Sonist Gtk')
self.set_logo_icon_name('google-chrome')
self.set_license_type(Gtk.License.MIT_X11)
self.set_version('0.1.0')
self.set_website('https://github.com/app-cat/sonist-gtk')
self.set_website_label('官网')
self.set_authors([
'Yutent <yutent.io@gmail.com> (Sonist)',
'Mic92 <https://github.com/Mic92/python-mpd2> (python-mpd2)',
'quodlibet <https://github.com/quodlibet/mutagen> (python-mutagen)'
])
self.set_copyright('© 2023 Yutent <yutent.io@gmail.com>')
self.set_comments('Sonist-Gtk 是一个界面美观, 基于MPD后端的音乐播放器, 使用python + gtk3开发。')
self.connect("response", self.on_close)
def on_close(self, dialog, res):
self.hide()
python + gtk3开发的基于mpd后端的音乐播放器
Python 99.1%
Shell 0.9%