textpad.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. """Simple textbox editing widget with Emacs-like keybindings."""
  2. import curses
  3. import curses.ascii
  4. def rectangle(win, uly, ulx, lry, lrx):
  5. """Draw a rectangle with corners at the provided upper-left
  6. and lower-right coordinates.
  7. """
  8. win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)
  9. win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
  10. win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
  11. win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)
  12. win.addch(uly, ulx, curses.ACS_ULCORNER)
  13. win.addch(uly, lrx, curses.ACS_URCORNER)
  14. win.addch(lry, lrx, curses.ACS_LRCORNER)
  15. win.addch(lry, ulx, curses.ACS_LLCORNER)
  16. class Textbox:
  17. """Editing widget using the interior of a window object.
  18. Supports the following Emacs-like key bindings:
  19. Ctrl-A Go to left edge of window.
  20. Ctrl-B Cursor left, wrapping to previous line if appropriate.
  21. Ctrl-D Delete character under cursor.
  22. Ctrl-E Go to right edge (stripspaces off) or end of line (stripspaces on).
  23. Ctrl-F Cursor right, wrapping to next line when appropriate.
  24. Ctrl-G Terminate, returning the window contents.
  25. Ctrl-H Delete character backward.
  26. Ctrl-J Terminate if the window is 1 line, otherwise insert newline.
  27. Ctrl-K If line is blank, delete it, otherwise clear to end of line.
  28. Ctrl-L Refresh screen.
  29. Ctrl-N Cursor down; move down one line.
  30. Ctrl-O Insert a blank line at cursor location.
  31. Ctrl-P Cursor up; move up one line.
  32. Move operations do nothing if the cursor is at an edge where the movement
  33. is not possible. The following synonyms are supported where possible:
  34. KEY_LEFT = Ctrl-B, KEY_RIGHT = Ctrl-F, KEY_UP = Ctrl-P, KEY_DOWN = Ctrl-N
  35. KEY_BACKSPACE = Ctrl-h
  36. """
  37. def __init__(self, win, insert_mode=False):
  38. self.win = win
  39. self.insert_mode = insert_mode
  40. (self.maxy, self.maxx) = win.getmaxyx()
  41. self.maxy = self.maxy - 1
  42. self.maxx = self.maxx - 1
  43. self.stripspaces = 1
  44. self.lastcmd = None
  45. win.keypad(1)
  46. def _end_of_line(self, y):
  47. """Go to the location of the first blank on the given line,
  48. returning the index of the last non-blank character."""
  49. last = self.maxx
  50. while True:
  51. if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
  52. last = min(self.maxx, last+1)
  53. break
  54. elif last == 0:
  55. break
  56. last = last - 1
  57. return last
  58. def _insert_printable_char(self, ch):
  59. (y, x) = self.win.getyx()
  60. if y < self.maxy or x < self.maxx:
  61. if self.insert_mode:
  62. oldch = self.win.inch()
  63. # The try-catch ignores the error we trigger from some curses
  64. # versions by trying to write into the lowest-rightmost spot
  65. # in the window.
  66. try:
  67. self.win.addch(ch)
  68. except curses.error:
  69. pass
  70. if self.insert_mode:
  71. (backy, backx) = self.win.getyx()
  72. if curses.ascii.isprint(oldch):
  73. self._insert_printable_char(oldch)
  74. self.win.move(backy, backx)
  75. def do_command(self, ch):
  76. "Process a single editing command."
  77. (y, x) = self.win.getyx()
  78. self.lastcmd = ch
  79. if curses.ascii.isprint(ch):
  80. if y < self.maxy or x < self.maxx:
  81. self._insert_printable_char(ch)
  82. elif ch == curses.ascii.SOH: # ^a
  83. self.win.move(y, 0)
  84. elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
  85. if x > 0:
  86. self.win.move(y, x-1)
  87. elif y == 0:
  88. pass
  89. elif self.stripspaces:
  90. self.win.move(y-1, self._end_of_line(y-1))
  91. else:
  92. self.win.move(y-1, self.maxx)
  93. if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
  94. self.win.delch()
  95. elif ch == curses.ascii.EOT: # ^d
  96. self.win.delch()
  97. elif ch == curses.ascii.ENQ: # ^e
  98. if self.stripspaces:
  99. self.win.move(y, self._end_of_line(y))
  100. else:
  101. self.win.move(y, self.maxx)
  102. elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f
  103. if x < self.maxx:
  104. self.win.move(y, x+1)
  105. elif y == self.maxy:
  106. pass
  107. else:
  108. self.win.move(y+1, 0)
  109. elif ch == curses.ascii.BEL: # ^g
  110. return 0
  111. elif ch == curses.ascii.NL: # ^j
  112. if self.maxy == 0:
  113. return 0
  114. elif y < self.maxy:
  115. self.win.move(y+1, 0)
  116. elif ch == curses.ascii.VT: # ^k
  117. if x == 0 and self._end_of_line(y) == 0:
  118. self.win.deleteln()
  119. else:
  120. # first undo the effect of self._end_of_line
  121. self.win.move(y, x)
  122. self.win.clrtoeol()
  123. elif ch == curses.ascii.FF: # ^l
  124. self.win.refresh()
  125. elif ch in (curses.ascii.SO, curses.KEY_DOWN): # ^n
  126. if y < self.maxy:
  127. self.win.move(y+1, x)
  128. if x > self._end_of_line(y+1):
  129. self.win.move(y+1, self._end_of_line(y+1))
  130. elif ch == curses.ascii.SI: # ^o
  131. self.win.insertln()
  132. elif ch in (curses.ascii.DLE, curses.KEY_UP): # ^p
  133. if y > 0:
  134. self.win.move(y-1, x)
  135. if x > self._end_of_line(y-1):
  136. self.win.move(y-1, self._end_of_line(y-1))
  137. return 1
  138. def gather(self):
  139. "Collect and return the contents of the window."
  140. result = ""
  141. for y in range(self.maxy+1):
  142. self.win.move(y, 0)
  143. stop = self._end_of_line(y)
  144. if stop == 0 and self.stripspaces:
  145. continue
  146. for x in range(self.maxx+1):
  147. if self.stripspaces and x > stop:
  148. break
  149. result = result + chr(curses.ascii.ascii(self.win.inch(y, x)))
  150. if self.maxy > 0:
  151. result = result + "\n"
  152. return result
  153. def edit(self, validate=None):
  154. "Edit in the widget window and collect the results."
  155. while 1:
  156. ch = self.win.getch()
  157. if validate:
  158. ch = validate(ch)
  159. if not ch:
  160. continue
  161. if not self.do_command(ch):
  162. break
  163. self.win.refresh()
  164. return self.gather()
  165. if __name__ == '__main__':
  166. def test_editbox(stdscr):
  167. ncols, nlines = 9, 4
  168. uly, ulx = 15, 20
  169. stdscr.addstr(uly-2, ulx, "Use Ctrl-G to end editing.")
  170. win = curses.newwin(nlines, ncols, uly, ulx)
  171. rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
  172. stdscr.refresh()
  173. return Textbox(win).edit()
  174. str = curses.wrapper(test_editbox)
  175. print 'Contents of text box:', repr(str)