wiki:PyGTK

Version 2 (modified by atzm, 18 years ago) (diff)

--

PyGTK

適当メモ.主に日記からの転載.

TextView

textField  = gtk.TextView()
textBuffer = textField.get_buffer()

[startIter, endIter] = textBuffer.get_bounds()
# [最初の位置, 最後の位置]

print textBuffer.get_text(startIter, endIter)
  • 最初の位置と最後の位置を取得し,中の文字列を得る

ある処理を x 秒後に裏で実行

def __init__(self):
    self.id = gtk.timeout_add(1000, self.run)

def run(self):
    ... # process
    return True

def stop(self):
    if self.id:
        gtk.timeout_remove(self.id)
  • run が True を返し続ける限りは繰り返し実行される.False が返ると止まる.