/usr/share/pyshared/PyRoom/basic_edit.py is in pyroom 0.4.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 | # -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# PyRoom - A clone of WriteRoom
# Copyright (c) 2007 Nicolas P. Rougier & NoWhereMan
# Copyright (c) 2008 The Pyroom Team - See AUTHORS file for more information
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
# -----------------------------------------------------------------------------
"""
provide basic editor functionality
contains basic functions needed for pyroom - any core functionality is included
within this file
"""
import gtk
import gtk.glade
import os
import urllib
from pyroom_error import PyroomError
from gui import GUI
from preferences import Preferences
import autosave
FILE_UNNAMED = _('* Unnamed *')
KEY_BINDINGS = '\n'.join([
_('Control-H: Show help in a new buffer'),
_('Control-I: Show buffer information'),
_('Control-P: Shows Preferences dialog'),
_('Control-N: Create a new buffer'),
_('Control-O: Open a file in a new buffer'),
_('Control-Q: Quit'),
_('Control-S: Save current buffer'),
_('Control-Shift-S: Save current buffer as'),
_('Control-W: Close buffer and exit if it was the last buffer'),
_('Control-Y: Redo last typing'),
_('Control-Z: Undo last typing'),
_('Control-Page Up: Switch to previous buffer'),
_('Control-Page Down: Switch to next buffer'), ])
HELP = \
_("""PyRoom - distraction free writing
Copyright (c) 2007 Nicolas Rougier, NoWhereMan
Copyright (c) 2008 Bruno Bord and the PyRoom team
Welcome to PyRoom and distraction-free writing.
To hide this help window, press Control-W.
PyRoom stays out of your way with formatting options and buttons,
it is largely keyboard controlled, via shortcuts. You can find a list
of available keyboard shortcuts later.
If enabled in preferences, pyroom will save your files automatically every
few minutes or when you press the keyboard shortcut.
Commands:
---------
%s
""") % KEY_BINDINGS
def dispatch(*args, **kwargs):
"""call the method passed as args[1] without passing other arguments"""
def eat(accel_group, acceleratable, keyval, modifier):
"""eat all the extra arguments
this is ugly, but it works with the code we already had
before we changed to AccelGroup et al"""
args[0]()
pass
return eat
def make_accel_group(edit_instance):
keybindings = {
'h': edit_instance.show_help,
'i': edit_instance.show_info,
'n': edit_instance.new_buffer,
'o': edit_instance.open_file,
'p': edit_instance.preferences.show,
'q': edit_instance.dialog_quit,
's': edit_instance.save_file,
'w': edit_instance.close_dialog,
'y': edit_instance.redo,
'z': edit_instance.undo,
}
ag = gtk.AccelGroup()
for key, value in keybindings.items():
ag.connect_group(
ord(key),
gtk.gdk.CONTROL_MASK,
gtk.ACCEL_VISIBLE,
dispatch(value)
)
ag.connect_group(
ord('s'),
gtk.gdk.CONTROL_MASK|gtk.gdk.SHIFT_MASK,
gtk.ACCEL_VISIBLE,
dispatch(edit_instance.save_file_as)
)
return ag
def define_keybindings(edit_instance):
"""define keybindings, respectively to keyboard layout"""
keymap = gtk.gdk.keymap_get_default()
basic_bindings = {
gtk.keysyms.Page_Up: edit_instance.prev_buffer,
gtk.keysyms.Page_Down: edit_instance.next_buffer,
}
translated_bindings = {}
for key, value in basic_bindings.items():
hardware_keycode = keymap.get_entries_for_keyval(key)[0][0]
translated_bindings[hardware_keycode] = value
return translated_bindings
class UndoableInsert(object):
"""something that has been inserted into our textbuffer"""
def __init__(self, text_iter, text, length):
self.offset = text_iter.get_offset()
self.text = text
self.length = length
if self.length > 1 or self.text in ("\r", "\n", " "):
self.mergeable = False
else:
self.mergeable = True
class UndoableDelete(object):
"""something that has ben deleted from our textbuffer"""
def __init__(self, text_buffer, start_iter, end_iter):
self.deleted_text = text_buffer.get_text(start_iter, end_iter)
self.start = start_iter.get_offset()
self.end = end_iter.get_offset()
# need to find out if backspace or delete key has been used
# so we don't mess up during redo
insert_iter = text_buffer.get_iter_at_mark(text_buffer.get_insert())
if insert_iter.get_offset() <= self.start:
self.delete_key_used = True
else:
self.delete_key_used = False
if self.end - self.start > 1 or self.deleted_text in ("\r", "\n", " "):
self.mergeable = False
else:
self.mergeable = True
class UndoableBuffer(gtk.TextBuffer):
"""text buffer with added undo capabilities
designed as a drop-in replacement for gtksourceview,
at least as far as undo is concerned"""
def __init__(self):
"""
we'll need empty stacks for undo/redo and some state keeping
"""
gtk.TextBuffer.__init__(self)
self.undo_stack = []
self.redo_stack = []
self.modified = False
self.not_undoable_action = False
self.undo_in_progress = False
self.connect('insert-text', self.on_insert_text)
self.connect('delete-range', self.on_delete_range)
self.connect('begin_user_action', self.on_begin_user_action)
@property
def can_undo(self):
return bool(self.undo_stack)
@property
def can_redo(self):
return bool(self.redo_stack)
def on_insert_text(self, textbuffer, text_iter, text, length):
def can_be_merged(prev, cur):
"""see if we can merge multiple inserts here
will try to merge words or whitespace
can't merge if prev and cur are not mergeable in the first place
can't merge when user set the input bar somewhere else
can't merge across word boundaries"""
WHITESPACE = (' ', '\t')
if not cur.mergeable or not prev.mergeable:
return False
if cur.offset != (prev.offset + prev.length):
return False
if cur.text in WHITESPACE and not prev.text in WHITESPACE:
return False
elif prev.text in WHITESPACE and not cur.text in WHITESPACE:
return False
return True
if not self.undo_in_progress:
self.redo_stack = []
if self.not_undoable_action:
return
undo_action = UndoableInsert(text_iter, text, length)
try:
prev_insert = self.undo_stack.pop()
except IndexError:
self.undo_stack.append(undo_action)
return
if not isinstance(prev_insert, UndoableInsert):
self.undo_stack.append(prev_insert)
self.undo_stack.append(undo_action)
return
if can_be_merged(prev_insert, undo_action):
prev_insert.length += undo_action.length
prev_insert.text += undo_action.text
self.undo_stack.append(prev_insert)
else:
self.undo_stack.append(prev_insert)
self.undo_stack.append(undo_action)
self.modified = True
def on_delete_range(self, text_buffer, start_iter, end_iter):
def can_be_merged(prev, cur):
"""see if we can merge multiple deletions here
will try to merge words or whitespace
can't merge if delete and backspace key were both used
can't merge across word boundaries"""
WHITESPACE = (' ', '\t')
if prev.delete_key_used != cur.delete_key_used:
return False
if prev.start != cur.start and prev.start != cur.end:
return False
if cur.deleted_text not in WHITESPACE and \
prev.deleted_text in WHITESPACE:
return False
elif cur.deleted_text in WHITESPACE and \
prev.deleted_text not in WHITESPACE:
return False
return True
if not self.undo_in_progress:
self.redo_stack = []
if self.not_undoable_action:
return
undo_action = UndoableDelete(text_buffer, start_iter, end_iter)
try:
prev_delete = self.undo_stack.pop()
except IndexError:
self.undo_stack.append(undo_action)
return
if not isinstance(prev_delete, UndoableDelete):
self.undo_stack.append(prev_delete)
self.undo_stack.append(undo_action)
return
if can_be_merged(prev_delete, undo_action):
if prev_delete.start == undo_action.start: # delete key used
prev_delete.deleted_text += undo_action.deleted_text
prev_delete.end += (undo_action.end - undo_action.start)
else: # Backspace used
prev_delete.deleted_text = "%s%s" % (undo_action.deleted_text,
prev_delete.deleted_text)
prev_delete.start = undo_action.start
self.undo_stack.append(prev_delete)
else:
self.undo_stack.append(prev_delete)
self.undo_stack.append(undo_action)
self.modified = True
def on_begin_user_action(self, *args, **kwargs):
pass
def begin_not_undoable_action(self):
"""don't record the next actions
toggles self.not_undoable_action"""
self.not_undoable_action = True
def end_not_undoable_action(self):
"""record next actions
toggles self.not_undoable_action"""
self.not_undoable_action = False
def undo(self):
"""undo inserts or deletions
undone actions are being moved to redo stack"""
if not self.undo_stack:
return
self.begin_not_undoable_action()
self.undo_in_progress = True
undo_action = self.undo_stack.pop()
self.redo_stack.append(undo_action)
if isinstance(undo_action, UndoableInsert):
start = self.get_iter_at_offset(undo_action.offset)
stop = self.get_iter_at_offset(
undo_action.offset + undo_action.length
)
self.delete(start, stop)
self.place_cursor(start)
else:
start = self.get_iter_at_offset(undo_action.start)
stop = self.get_iter_at_offset(undo_action.end)
self.insert(start, undo_action.deleted_text)
if undo_action.delete_key_used:
self.place_cursor(start)
else:
self.place_cursor(stop)
self.end_not_undoable_action()
self.undo_in_progress = False
self.modified = True
def redo(self):
"""redo inserts or deletions
redone actions are moved to undo stack"""
if not self.redo_stack:
return
self.begin_not_undoable_action()
self.undo_in_progress = True
redo_action = self.redo_stack.pop()
self.undo_stack.append(redo_action)
if isinstance(redo_action, UndoableInsert):
start = self.get_iter_at_offset(redo_action.offset)
self.insert(start, redo_action.text)
new_cursor_pos = self.get_iter_at_offset(
redo_action.offset + redo_action.length
)
self.place_cursor(new_cursor_pos)
else:
start = self.get_iter_at_offset(redo_action.start)
stop = self.get_iter_at_offset(redo_action.end)
self.delete(start, stop)
self.place_cursor(start)
self.end_not_undoable_action()
self.undo_in_progress = False
self.modified = True
class BasicEdit(object):
"""editing logic that gets passed around"""
def __init__(self, pyroom_config):
self.current = 0
self.buffers = []
self.config = pyroom_config.config
self.gui = GUI(pyroom_config, self)
self.preferences = Preferences(
gui=self.gui,
pyroom_config=pyroom_config
)
try:
self.recent_manager = gtk.recent_manager_get_default()
except AttributeError:
self.recent_manager = None
self.status = self.gui.status
self.window = self.gui.window
self.window.add_accel_group(make_accel_group(self))
self.textbox = self.gui.textbox
self.UNNAMED_FILENAME = FILE_UNNAMED
self.autosave_timeout_id = ''
self.autosave_elapsed = ''
self.new_buffer()
self.textbox.connect('key-press-event', self.key_press_event)
self.textbox.set_pixels_below_lines(
int(self.config.get("visual", "linespacing"))
)
self.textbox.set_pixels_above_lines(
int(self.config.get("visual", "linespacing"))
)
self.textbox.set_pixels_inside_wrap(
int(self.config.get("visual", "linespacing"))
)
# Autosave timer object
autosave.start_autosave(self)
self.window.show_all()
self.window.fullscreen()
# Handle multiple monitors
screen = gtk.gdk.screen_get_default()
root_window = screen.get_root_window()
mouse_x, mouse_y, mouse_mods = root_window.get_pointer()
current_monitor_number = screen.get_monitor_at_point(mouse_x, mouse_y)
monitor_geometry = screen.get_monitor_geometry(current_monitor_number)
self.window.move(monitor_geometry.x, monitor_geometry.y)
self.window.set_geometry_hints(None, min_width=monitor_geometry.width,
min_height=monitor_geometry.height, max_width=monitor_geometry.width,
max_height=monitor_geometry.height
)
# Defines the glade file functions for use on closing a buffer
self.wTree = gtk.glade.XML(os.path.join(
pyroom_config.pyroom_absolute_path, "interface.glade"),
"SaveBuffer")
self.dialog = self.wTree.get_widget("SaveBuffer")
self.dialog.set_transient_for(self.window)
dic = {
"on_button-close_clicked": self.unsave_dialog,
"on_button-cancel_clicked": self.cancel_dialog,
"on_button-save_clicked": self.save_dialog,
}
self.wTree.signal_autoconnect(dic)
#Defines the glade file functions for use on exit
self.aTree = gtk.glade.XML(os.path.join(
pyroom_config.pyroom_absolute_path, "interface.glade"),
"QuitSave")
self.quitdialog = self.aTree.get_widget("QuitSave")
self.quitdialog.set_transient_for(self.window)
dic = {
"on_button-close2_clicked": self.quit_quit,
"on_button-cancel2_clicked": self.cancel_quit,
"on_button-save2_clicked": self.save_quit,
}
self.aTree.signal_autoconnect(dic)
self.keybindings = define_keybindings(self)
# this sucks, shouldn't have to call this here, textbox should
# have its background and padding color from GUI().__init__() already
self.gui.apply_theme()
def key_press_event(self, widget, event):
""" key press event dispatcher """
if event.state & gtk.gdk.CONTROL_MASK:
if event.hardware_keycode in self.keybindings:
# FIXME: streamline this again
self.keybindings[event.hardware_keycode]()
return True
return False
def show_info(self):
""" Display buffer information on status label for 5 seconds """
buf = self.buffers[self.current]
if buf.modified:
status = _(' (modified)')
else:
status = ''
self.status.set_text(_('Buffer %(buffer_id)d: %(buffer_name)s\
%(status)s, %(char_count)d character(s), %(word_count)d word(s)\
, %(lines)d line(s)') % {
'buffer_id': self.current + 1,
'buffer_name': buf.filename,
'status': status,
'char_count': buf.get_char_count(),
'word_count': self.word_count(buf),
'lines': buf.get_line_count(),
}, 5000)
def undo(self):
""" Undo last typing """
buf = self.textbox.get_buffer()
if buf.can_undo:
buf.undo()
else:
self.status.set_text(_('Nothing more to undo!'))
def redo(self):
""" Redo last typing """
buf = self.textbox.get_buffer()
if buf.can_redo:
buf.redo()
else:
self.status.set_text(_('Nothing more to redo!'))
def ask_restore(self):
"""ask if backups should be restored
returns True if proposal is accepted
returns False in any other case (declined/dialog closed)"""
restore_dialog = gtk.Dialog(
title=_('Restore backup?'),
parent=self.window,
flags=gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
buttons=(
gtk.STOCK_DISCARD, gtk.RESPONSE_REJECT,
gtk.STOCK_OPEN, gtk.RESPONSE_ACCEPT
)
)
question_asked = gtk.Label(
_('''Backup information for this file has been found.
Open those instead of the original file?''')
)
question_asked.set_line_wrap(True)
question_sign = gtk.image_new_from_stock(
stock_id=gtk.STOCK_DIALOG_QUESTION,
size=gtk.ICON_SIZE_DIALOG
)
question_sign.show()
hbox = gtk.HBox()
hbox.pack_start(question_sign, True, True, 0)
hbox.pack_start(question_asked, True, True, 0)
hbox.show()
restore_dialog.vbox.pack_start(
hbox, True, True, 0
)
restore_dialog.set_default_response(gtk.RESPONSE_ACCEPT)
restore_dialog.show_all()
resp = restore_dialog.run()
restore_dialog.destroy()
return resp == -3
def open_file(self):
""" Open file """
chooser = gtk.FileChooserDialog('PyRoom', self.window,
gtk.FILE_CHOOSER_ACTION_OPEN,
buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
chooser.set_default_response(gtk.RESPONSE_OK)
res = chooser.run()
if res == gtk.RESPONSE_OK:
self.open_file_no_chooser(chooser.get_filename())
else:
self.status.set_text(_('Closed, no files selected'))
chooser.destroy()
def open_file_no_chooser(self, filename):
""" Open specified file """
def check_backup(filename):
"""check if restore from backup is an option
returns backup filename if there's a backup file and
user wants to restore from it, else original filename
"""
fname = autosave.get_autosave_filename(filename)
if os.path.isfile(fname):
if self.ask_restore():
return fname
return filename
buf = self.new_buffer()
buf.filename = filename
filename_to_open = check_backup(filename)
try:
buffer_file = open(filename_to_open, 'r')
buf = self.buffers[self.current]
buf.begin_not_undoable_action()
utf8 = unicode(buffer_file.read(), 'utf-8')
buf.set_text(utf8)
buf.end_not_undoable_action()
buffer_file.close()
except IOError, (errno, strerror):
errortext = _('Unable to open %(filename)s.') % {
'filename': filename_to_open
}
if errno == 13:
errortext += _(' You do not have permission to open \
the file.')
if not errno == 2:
raise PyroomError(errortext)
except:
raise PyroomError(_('Unable to open %s\n') % filename_to_open)
else:
self.status.set_text(_('File %s open') % filename_to_open)
def save_file(self):
""" Save file """
try:
buf = self.buffers[self.current]
if buf.filename != FILE_UNNAMED:
buffer_file = open(buf.filename, 'w')
txt = buf.get_text(buf.get_start_iter(),
buf.get_end_iter())
buffer_file.write(txt)
if self.recent_manager:
self.recent_manager.add_full(
"file://" + urllib.quote(buf.filename),
{
'mime_type':'text/plain',
'app_name':'pyroom',
'app_exec':'%F',
'is_private':False,
'display_name':os.path.basename(buf.filename),
}
)
buffer_file.close()
buf.begin_not_undoable_action()
buf.end_not_undoable_action()
self.status.set_text(_('File %s saved') % buf.filename)
else:
self.save_file_as()
except IOError, (errno, strerror):
errortext = _('Unable to save %(filename)s.') % {
'filename': buf.filename}
if errno == 13:
errortext += _(' You do not have permission to write to \
the file.')
raise PyroomError(errortext)
except:
raise PyroomError(_('Unable to save %s\n') % buf.filename)
buf.modified = False
def save_file_as(self):
""" Save file as """
buf = self.buffers[self.current]
chooser = gtk.FileChooserDialog('PyRoom', self.window,
gtk.FILE_CHOOSER_ACTION_SAVE,
buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
gtk.STOCK_SAVE, gtk.RESPONSE_OK))
chooser.set_default_response(gtk.RESPONSE_OK)
if buf.filename != FILE_UNNAMED:
chooser.set_filename(buf.filename)
res = chooser.run()
if res == gtk.RESPONSE_OK:
buf.filename = chooser.get_filename()
self.save_file()
else:
self.status.set_text(_('Closed, no files selected'))
chooser.destroy()
def word_count(self, buf):
""" Word count in a text buffer """
iter1 = buf.get_start_iter()
iter2 = iter1.copy()
iter2.forward_word_end()
count = 0
while iter2.get_offset() != iter1.get_offset():
count += 1
iter1 = iter2.copy()
iter2.forward_word_end()
return count
def show_help(self):
""" Create a new buffer and inserts help """
buf = self.new_buffer()
buf.begin_not_undoable_action()
buf.set_text(HELP)
buf.end_not_undoable_action()
self.status.set_text("Displaying help. Press control W to exit and \
continue editing your document.")
def new_buffer(self):
""" Create a new buffer """
buf = UndoableBuffer()
buf.filename = FILE_UNNAMED
self.buffers.insert(self.current + 1, buf)
buf.place_cursor(buf.get_end_iter())
self.next_buffer()
return buf
def close_dialog(self):
"""ask for confirmation if there are unsaved contents"""
buf = self.buffers[self.current]
if buf.modified:
self.dialog.show()
else:
self.close_buffer()
def cancel_dialog(self, widget, data=None):
"""dialog has been canceled"""
self.dialog.hide()
def unsave_dialog(self, widget, data =None):
"""don't save before closing"""
self.dialog.hide()
self.close_buffer()
def save_dialog(self, widget, data=None):
"""save when closing"""
self.dialog.hide()
self.save_file()
self.close_buffer()
def close_buffer(self):
""" Close current buffer """
autosave_fname = autosave.get_autosave_filename(
self.buffers[self.current].filename
)
if os.path.isfile(autosave_fname):
try:
os.remove(autosave_fname)
except OSError:
raise PyroomError(_('Could not delete autosave file.'))
if len(self.buffers) > 1:
self.buffers.pop(self.current)
self.current = min(len(self.buffers) - 1, self.current)
self.set_buffer(self.current)
else:
quit()
def set_buffer(self, index):
""" Set current buffer """
if index >= 0 and index < len(self.buffers):
self.current = index
buf = self.buffers[index]
self.textbox.set_buffer(buf)
if hasattr(self, 'status'):
self.status.set_text(
_('Switching to buffer %(buffer_id)d (%(buffer_name)s)')
% {'buffer_id': self.current + 1,
'buffer_name': buf.filename}
)
def next_buffer(self):
""" Switch to next buffer """
if self.current < len(self.buffers) - 1:
self.current += 1
else:
self.current = 0
self.set_buffer(self.current)
self.gui.textbox.scroll_to_mark(
self.buffers[self.current].get_insert(),
0.0,
)
def prev_buffer(self):
""" Switch to prev buffer """
if self.current > 0:
self.current -= 1
else:
self.current = len(self.buffers) - 1
self.set_buffer(self.current)
self.gui.textbox.scroll_to_mark(
self.buffers[self.current].get_insert(),
0.0,
)
def dialog_quit(self):
"""the quit dialog"""
count = 0
ret = False
for buf in self.buffers:
if buf.modified:
count = count + 1
if count > 0:
self.quitdialog.show()
else:
self.quit()
def cancel_quit(self, widget, data=None):
"""don't quit"""
self.quitdialog.hide()
def save_quit(self, widget, data=None):
"""save before quitting"""
self.quitdialog.hide()
for buf in self.buffers:
if buf.modified:
if buf.filename == FILE_UNNAMED:
self.save_file_as()
else:
self.save_file()
self.quit()
def quit_quit(self, widget, data=None):
"""really quit"""
self.quitdialog.hide()
self.quit()
def quit(self):
"""cleanup before quitting"""
autosave.stop_autosave(self)
self.gui.quit()
|