将文本添加到文本缓冲区时,GTK TextView会自动滚动

时间:2016-06-15 01:57:08

标签: gtk gtk3 vala

我正在尝试创建一个非常简单的类似日志的GUI应用程序,它只是动态地和异步地显示来自日志文件的文本。问题是,当日志文件更新时,GUI中的文本视图会向上滚动到第1行。每次修复此操作的尝试都失败了,我想知道我是否偶然发现了GTK中的错误。以下是我的代码摘要:

using Cairo;
using Gtk;

namespace ServerManager {
    public class ServerManager : Window {
        public TextView text_view;
        public TextIter myIter;
        public TextMark myMark;

        public async void read_something_async (File file) {
            var text = new StringBuilder ();
            var dis = new DataInputStream (file.read ());
            string line;

            while ((line = yield dis.read_line_async (Priority.DEFAULT)) != null) {
                text.append (line);
                text.append_c('\n');
            }
            this.text_view.buffer.text = text.str;
            text_view.buffer.get_end_iter(out myIter);
            text_view.scroll_to_iter(myIter, 0, false, 0, 0);
        }

        public static int main (string[] args) {
        Gtk.init (ref args);


        var window = new ServerManager ();

        // The read-only TextView
        window.text_view = new TextView ();
        window.text_view.editable = false;
        window.text_view.cursor_visible = false;
        window.text_view.wrap_mode = Gtk.WrapMode.WORD;

        // Add scrolling functionality to the TextView
        var scroll = new ScrolledWindow (null, null);
        scroll.set_policy (PolicyType.AUTOMATIC, PolicyType.AUTOMATIC);
        scroll.add (window.text_view);

        // Vbox so that our TextView has someplace to live
        var vbox = new Box (Orientation.VERTICAL, 0);
        vbox.pack_start (scroll, true, true, 0);
        window.add (vbox);

        window.set_border_width (12);
        window.set_position (Gtk.WindowPosition.CENTER);
        window.set_default_size (800, 600);
        window.destroy.connect (Gtk.main_quit);
        window.show_all ();

        File file = File.new_for_path ("/home/user/temp.log");
        FileMonitor monitor = file.monitor (FileMonitorFlags.NONE, null);
        stdout.printf ("Monitoring: %s\n", file.get_path ());

        monitor.changed.connect (() => {
            window.read_something_async(file);
        });

        Gtk.main ();
        return 0;
        }
    }
}

我也尝试使用TextMarks代替Iters,但这没有任何影响。

1 个答案:

答案 0 :(得分:2)

滚动到第一行是因为read_something_async()删除缓冲区的当前内容然后写入新的内容(这是设置text属性的内容)。也许这就是你想要的,但除非你跟踪滚动位置,否则你将失去它。

你的scroll_to_iter()没有按预期工作的原因可能就是:

  

请注意,此函数使用文本缓冲区中当前计算的行高。线高在空闲处理程序中计算;因此,如果在高度计算之前调用此函数,则此函数可能无法获得所需的效果。为了避免奇怪,请考虑使用gtk_text_view_scroll_to_mark(),它会在行验证后保存要滚动的点。

使用"右引力"调用TextView.ScrollToMark() TextMark应该适合你。