1

我正在尝试使用 Gtk::TextBuffer-s 使用 Glib::Regex 和 Gtk::TextView,并且尝试使用 Gtk::TextTag-s 进行语法突出显示。

我用于更新语法的代码(它在行首和行尾接收迭代器)

void MainWindow::update_syntax(const Gtk::TextBuffer::iterator& start, const Gtk::TextBuffer::iterator& end)    {
  std::vector<Glib::ustring> keywords;
  keywords.push_back("class");
  keywords.push_back("struct");
  Glib::MatchInfo info;
  auto regex = Glib::Regex::create(R"((\w+))");
  auto ok = regex->match(start.get_visible_text(end), info);
  std::map<Glib::ustring, std::pair<Glib::RefPtr<Gtk::TextMark>, Glib::RefPtr<Gtk::TextMark>>> marks;
  do {
    std::cout << "word: " << info.fetch(1) << std::endl;
    for (auto kw : keywords) {
      if (info.fetch(1) == kw) {
        int start_offset, end_offset;
        info.fetch_pos(1, start_offset, end_offset);
        std::cout << info.fetch(1) << " (at: [" << start_offset << ";" << end_offset << "])" << std::endl;
        marks["keyword"] = std::make_pair(
          this->m_buffer->create_mark(
            this->m_buffer->get_iter_at_offset(start.get_offset() + start_offset)
          ),
          this->m_buffer->create_mark(
            this->m_buffer->get_iter_at_offset(start.get_offset() + end_offset)
          )
        );
      }
    }
  } while(info.next());

  for (auto mark : marks) {
    this->m_buffer->apply_tag_by_name(mark.first, 
      mark.second.first->get_iter(), mark.second.second->get_iter());
  }
}

所以流程是我创建一个简单的正则表达式,它应该匹配该行中的每个单词,然后创建一个标记映射,稍后将给出要设置标签的范围。我在这里使用 Gtk::Mark,因为每次修改缓冲区都会使迭代器失效。

为了说明这里出了什么问题,我将发布这个函数的一些调试输出,以及on_insert之前的一个插槽;

void MainWindow::on_insert(const Gtk::TextBuffer::iterator& pos,
  const Glib::ustring& text, int bytes)
{
  std::cout << text << " (added at[" << pos.get_offset() <<
  "]; with [" << bytes << "]bytes)" << std::endl << std::endl;

因此,写入class classTextView 的输出导致第一个被突出显示,而第二个没有被选中,记录:

c (added at[1]; with [1]bytes)

word: c
l (added at[2]; with [1]bytes)

word: cl
a (added at[3]; with [1]bytes)

word: cla
s (added at[4]; with [1]bytes)

word: clas
s (added at[5]; with [1]bytes)

word: class
class (keyword at: [0;5])
  (added at[6]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: r
c (added at[7]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: rd
l (added at[8]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: rd
a (added at[9]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: rd
word: a
s (added at[10]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: rd
word: as
s (added at[11]; with [1]bytes)

word: class
class (keyword at: [0;5])
word: rd
word: ass

很容易注意到最后一行显示它移动了两个偏移量。可能是应用了标签。另外,这里不清楚的是:word: rd. 我keyword用作标签的名称。当这段代码仍然使用迭代器时,info.fetch(1)返回的"keyword",那么正则表达式是否也匹配标签?

我希望有 Glib 和 Gtk 经验的人知道答案,谢谢。

4

1 回答 1

2

我还没有使用过这个特定的 API 1,但我认为你对对象的生命周期有疑问。 iter->get_visible_text()正在返回一个字符串对象,该对象在调用 . 后被销毁regex->match()。这是一个问题,因为Glib::MatchInfo::next()期望该字符串仍然存在2。这可能就是你在第二场比赛中得到垃圾的原因。我认为你会安全地做这样的事情:

....
auto visbuf = start.get_visible_text(end); 
auto ok = regex->match(visbuf, info);  // existing line
...
  1. 所以我可能满脑子都是废话。
  2. 来自 Glib::MatchInfo::next() 文档:匹配是在传递给 match 函数的字符串上完成的,因此在调用此函数之前不能释放它。
于 2012-08-17T23:11:29.617 回答