当我将selection_changed连接到a时,我遇到了一种奇怪的行为 FileChooserButton中的函数。在...的帮助下 SO 用户我现在理解selection_changed语法。但奇怪的是 当我在同一个程序中第二次使用它时发生。
我的目标是创建一个包含两个FileChooserButtons和一个Entry文本的窗口 在窗口的最后位置。第一个FileChooserButton帮助 用户选择目录并导致第二个FileChooserButton打开 用户在第一个目录中选择的目录。直到这一点为止 工作得很好。该条目也正确绘制并说“这里去 文件名“。预期的行为是更改条目的文本 检查后在第二个FileChooserButton中选择文件名 文件是否可写。
我使用的策略是将selection_changed连接到一个函数 负责检查文件是否可写和更改 条目的文本。
问题是永远不会调用该函数。我添加了一个调试哑巴 代码如:
stdout.printf("Checking whether this function is actually called")
永远不会打印,因此我认为函数永远不会被调用。有问题的函数是下面的file_changed。
[indent=4]
uses
Gtk
class TestWindow:Window
_file_chooser:FileChooserButton
_entry:Gtk.Entry
construct()
title = "File chooser"
window_position = WindowPosition.CENTER
destroy.connect( Gtk.main_quit )
var folder_chooser = new FileChooserButton("Choose a Folder",FileChooserAction.SELECT_FOLDER)
folder_chooser.set_current_folder( Environment.get_home_dir() )
folder_chooser.selection_changed.connect( folder_changed )
_file_chooser = new FileChooserButton("Choose a File",FileChooserAction.OPEN)
_file_chooser.set_current_folder( Environment.get_home_dir() )
_file_chooser.selection_changed.connect( file_changed )
var _entry = new Gtk.Entry()
_entry.set_text("Here the file name")
var box = new Box( Orientation.VERTICAL, 0 )
box.pack_start( folder_chooser, true, true, 0 )
box.pack_start( _file_chooser, true, true, 0 )
box.pack_start( _entry, true, true, 0 )
add( box )
def folder_changed( folder_chooser_widget:FileChooser )
folder:string = folder_chooser_widget.get_uri()
_file_chooser.set_current_folder_uri( folder )
def file_changed ( file_chooser_widget: FileChooser )
stdout.printf(file_chooser_widget.get_filename())
stdout.printf("Checking whether this function is actually called")
file:File = File.new_for_uri(file_chooser_widget.get_filename())
stdout.printf(file_chooser_widget.get_filename())
info:FileInfo = file.query_info (FileAttribute.ACCESS_CAN_WRITE, FileQueryInfoFlags.NONE, null)
writable:bool = info.get_attribute_boolean (FileAttribute.ACCESS_CAN_WRITE)
stdout.printf(writable.to_string())
if writable is true
_entry.set_sensitive(false)
init
Gtk.init( ref args )
var test = new TestWindow()
test.show_all()
Gtk.main()
答案 0 :(得分:1)
默认情况下,stdout是行缓冲的。
输出,你可以这样做:
var that = "message"
print that
message (that)
stdout.printf ("%s\n", that) // add a newline
stdout.printf (that) // no newline, but
stdout.flush () // flush if no newline in that
这里有一个问题:
var _entry = ... // this one unvisiable in file_changed
_entry = ... // remove var, it will visiable in file_changed
但我的代码仍有问题(在我的机器中):
操作不受支持
try
info:FileInfo = file.query_info (FileAttribute.ACCESS_CAN_WRITE, FileQueryInfoFlags.NONE, null)
writable: bool = info.get_attribute_boolean (FileAttribute.ACCESS_CAN_WRITE)
if writable is true
_entry.set_sensitive (false)
except e: Error
print e.message // opration not supported
我试图找到问题所在。但一无所获。
答案 1 :(得分:0)
谢谢Zee和andlabs。答案包括两个建议。
首先,正确的信号是文件设置,而不是选择更改。其次,get_filename正在捕获错误的uri格式。我应该使用get_uri代替。这就是操作不支持错误的原因。
另外,感谢您告诉我有关message()函数的信息,非常有用。
最后,该函数应该类似于:
{{1}}