Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
← Previous Change
Wiki History
Next Change
→
Changes between
Initial Version
and
Version 1
of
PyGTK
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
06/16/06 08:38:46 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
PyGTK
v1
v1
1
= PyGTK =
2
適当メモ.主に日記からの転載.
3
4
== TextView ==
5
{{{
6
#!python
7
textField = gtk.TextView()
8
textBuffer = textField.get_buffer()
9
10
[startIter, endIter] = textBuffer.get_bounds()
11
# [最初の位置, 最後の位置]
12
13
print textBuffer.get_text(startIter, endIter)
14
}}}