我正在尝试使用 Gjs 编写一个 GNOME GTK3 应用程序,该应用程序处理作为命令行参数传递的文件。为此,我连接了Gtk.Application
的open
信号并设置Gio.ApplicationFlags.HANDLES_OPEN
标志:
#!/usr/bin/gjs
const Gio = imports.gi.Gio
const Gtk = imports.gi.Gtk
const Lang = imports.lang
const MyApplication = new Lang.Class({
Name: 'MyApplication',
_init: function() {
this.application = new Gtk.Application({
application_id: 'com.example.my-application',
flags: Gio.ApplicationFlags.HANDLES_OPEN
})
this.application.connect('startup', this._onStartup.bind(this))
this.application.connect('open', this._onOpen.bind(this))
this.application.connect('activate', this._onActivate.bind(this))
},
_onStartup: function() {
log('starting application')
},
_onOpen: function(application, files) {
log('opening ' + files.length + ' files')
this._onStartup()
},
_onActivate: function() {
log('activating application')
}
})
let app = new MyApplication()
app.application.run(ARGV)
当我使用文件参数运行程序时,我希望_onOpen
传入GFile
一起调用。但相反,调用_onActivate
,就像我在没有任何文件参数的情况下运行它一样:
$ ./open-files.js open-files.js
Gjs-Message: JS LOG: starting application
Gjs-Message: JS LOG: activating application
我正在运行gjs@1.44。
相对于其他语言的约定,GJS 的ARGV
定义方式存在差异。例如,在 C 中,argv[0]
是程序的名称,第一个参数从 argv[1]
开始。在GJS中,程序的名称是System.programInvocationName
,第一个参数是ARGV[0]
。
不幸的是,作为 C 库的一部分,Gtk.Application
希望您根据 C 约定传递参数。您可以这样做:
ARGV.unshift(System.programInvocationName);
正在发生的事情是,./open-files.js open-files.js
['open-files.js']
ARGV
,Gtk.Application
将其解释为程序的名称,没有其他参数。如果您使用两个文件参数运行程序,您将看到它只"打开"了第二个文件。
不幸的是,GJS 1.44中似乎有一个错误,阻止open
信号正常工作。现在,我建议通过子类化Gtk.Application
而不是代理来解决这个问题。您的程序将如下所示:
const Gio = imports.gi.Gio
const Gtk = imports.gi.Gtk
const Lang = imports.lang
const System = imports.system
const MyApplication = new Lang.Class({
Name: 'MyApplication',
Extends: Gtk.Application,
_init: function(props={}) {
this.parent(props)
},
vfunc_startup: function() {
log('starting application')
this.parent()
},
vfunc_open: function(files, hint) {
log('opening ' + files.length + ' files')
},
vfunc_activate: function() {
log('activating application')
this.parent()
}
})
let app = new MyApplication({
application_id: 'com.example.my-application',
flags: Gio.ApplicationFlags.HANDLES_OPEN
})
ARGV.unshift(System.programInvocationName)
app.run(ARGV)