PNG  IHDR  8] PLTE S =tRNS   PNG  IHDR  8] PLTE S =tRNS   REDROOM
PHP 7.4.33
Preview: undo.py Size: 10.79 KB
/opt/alt/python37/lib64/python3.7/idlelib/undo.py

import string

from idlelib.delegator import Delegator

# tkinter import not needed because module does not create widgets,
# although many methods operate on text widget arguments.

#$ event <<redo>>
#$ win <Control-y>
#$ unix <Alt-z>

#$ event <<undo>>
#$ win <Control-z>
#$ unix <Control-z>

#$ event <<dump-undo-state>>
#$ win <Control-backslash>
#$ unix <Control-backslash>


class UndoDelegator(Delegator):

    max_undo = 1000

    def __init__(self):
        Delegator.__init__(self)
        self.reset_undo()

    def setdelegate(self, delegate):
        if self.delegate is not None:
            self.unbind("<<undo>>")
            self.unbind("<<redo>>")
            self.unbind("<<dump-undo-state>>")
        Delegator.setdelegate(self, delegate)
        if delegate is not None:
            self.bind("<<undo>>", self.undo_event)
            self.bind("<<redo>>", self.redo_event)
            self.bind("<<dump-undo-state>>", self.dump_event)

    def dump_event(self, event):
        from pprint import pprint
        pprint(self.undolist[:self.pointer])
        print("pointer:", self.pointer, end=' ')
        print("saved:", self.saved, end=' ')
        print("can_merge:", self.can_merge, end=' ')
        print("get_saved():", self.get_saved())
        pprint(self.undolist[self.pointer:])
        return "break"

    def reset_undo(self):
        self.was_saved = -1
        self.pointer = 0
        self.undolist = []
        self.undoblock = 0  # or a CommandSequence instance
        self.set_saved(1)

    def set_saved(self, flag):
        if flag:
            self.saved = self.pointer
        else:
            self.saved = -1
        self.can_merge = False
        self.check_saved()

    def get_saved(self):
        return self.saved == self.pointer

    saved_change_hook = None

    def set_saved_change_hook(self, hook):
        self.saved_change_hook = hook

    was_saved = -1

    def check_saved(self):
        is_saved = self.get_saved()
        if is_saved != self.was_saved:
            self.was_saved = is_saved
            if self.saved_change_hook:
                self.saved_change_hook()

    def insert(self, index, chars, tags=None):
        self.addcmd(InsertCommand(index, chars, tags))

    def delete(self, index1, index2=None):
        self.addcmd(DeleteCommand(index1, index2))

    # Clients should call undo_block_start() and undo_block_stop()
    # around a sequence of editing cmds to be treated as a unit by
    # undo & redo.  Nested matching calls are OK, and the inner calls
    # then act like nops.  OK too if no editing cmds, or only one
    # editing cmd, is issued in between:  if no cmds, the whole
    # sequence has no effect; and if only one cmd, that cmd is entered
    # directly into the undo list, as if undo_block_xxx hadn't been
    # called.  The intent of all that is to make this scheme easy
    # to use:  all the client has to worry about is making sure each
    # _start() call is matched by a _stop() call.

    def undo_block_start(self):
        if self.undoblock == 0:
            self.undoblock = CommandSequence()
        self.undoblock.bump_depth()

    def undo_block_stop(self):
        if self.undoblock.bump_depth(-1) == 0:
            cmd = self.undoblock
            self.undoblock = 0
            if len(cmd) > 0:
                if len(cmd) == 1:
                    # no need to wrap a single cmd
                    cmd = cmd.getcmd(0)
                # this blk of cmds, or single cmd, has already
                # been done, so don't execute it again
                self.addcmd(cmd, 0)

    def addcmd(self, cmd, execute=True):
        if execute:
            cmd.do(self.delegate)
        if self.undoblock != 0:
            self.undoblock.append(cmd)
            return
        if self.can_merge and self.pointer > 0:
            lastcmd = self.undolist[self.pointer-1]
            if lastcmd.merge(cmd):
                return
        self.undolist[self.pointer:] = [cmd]
        if self.saved > self.pointer:
            self.saved = -1
        self.pointer = self.pointer + 1
        if len(self.undolist) > self.max_undo:
            ##print "truncating undo list"
            del self.undolist[0]
            self.pointer = self.pointer - 1
            if self.saved >= 0:
                self.saved = self.saved - 1
        self.can_merge = True
        self.check_saved()

    def undo_event(self, event):
        if self.pointer == 0:
            self.bell()
            return "break"
        cmd = self.undolist[self.pointer - 1]
        cmd.undo(self.delegate)
        self.pointer = self.pointer - 1
        self.can_merge = False
        self.check_saved()
        return "break"

    def redo_event(self, event):
        if self.pointer >= len(self.undolist):
            self.bell()
            return "break"
        cmd = self.undolist[self.pointer]
        cmd.redo(self.delegate)
        self.pointer = self.pointer + 1
        self.can_merge = False
        self.check_saved()
        return "break"


class Command:
    # Base class for Undoable commands

    tags = None

    def __init__(self, index1, index2, chars, tags=None):
        self.marks_before = {}
        self.marks_after = {}
        self.index1 = index1
        self.index2 = index2
        self.chars = chars
        if tags:
            self.tags = tags

    def __repr__(self):
        s = self.__class__.__name__
        t = (self.index1, self.index2, self.chars, self.tags)
        if self.tags is None:
            t = t[:-1]
        return s + repr(t)

    def do(self, text):
        pass

    def redo(self, text):
        pass

    def undo(self, text):
        pass

    def merge(self, cmd):
        return 0

    def save_marks(self, text):
        marks = {}
        for name in text.mark_names():
            if name != "insert" and name != "current":
                marks[name] = text.index(name)
        return marks

    def set_marks(self, text, marks):
        for name, index in marks.items():
            text.mark_set(name, index)


class InsertCommand(Command):
    # Undoable insert command

    def __init__(self, index1, chars, tags=None):
        Command.__init__(self, index1, None, chars, tags)

    def do(self, text):
        self.marks_before = self.save_marks(text)
        self.index1 = text.index(self.index1)
        if text.compare(self.index1, ">", "end-1c"):
            # Insert before the final newline
            self.index1 = text.index("end-1c")
        text.insert(self.index1, self.chars, self.tags)
        self.index2 = text.index("%s+%dc" % (self.index1, len(self.chars)))
        self.marks_after = self.save_marks(text)
        ##sys.__stderr__.write("do: %s\n" % self)

    def redo(self, text):
        text.mark_set('insert', self.index1)
        text.insert(self.index1, self.chars, self.tags)
        self.set_marks(text, self.marks_after)
        text.see('insert')
        ##sys.__stderr__.write("redo: %s\n" % self)

    def undo(self, text):
        text.mark_set('insert', self.index1)
        text.delete(self.index1, self.index2)
        self.set_marks(text, self.marks_before)
        text.see('insert')
        ##sys.__stderr__.write("undo: %s\n" % self)

    def merge(self, cmd):
        if self.__class__ is not cmd.__class__:
            return False
        if self.index2 != cmd.index1:
            return False
        if self.tags != cmd.tags:
            return False
        if len(cmd.chars) != 1:
            return False
        if self.chars and \
           self.classify(self.chars[-1]) != self.classify(cmd.chars):
            return False
        self.index2 = cmd.index2
        self.chars = self.chars + cmd.chars
        return True

    alphanumeric = string.ascii_letters + string.digits + "_"

    def classify(self, c):
        if c in self.alphanumeric:
            return "alphanumeric"
        if c == "\n":
            return "newline"
        return "punctuation"


class DeleteCommand(Command):
    # Undoable delete command

    def __init__(self, index1, index2=None):
        Command.__init__(self, index1, index2, None, None)

    def do(self, text):
        self.marks_before = self.save_marks(text)
        self.index1 = text.index(self.index1)
        if self.index2:
            self.index2 = text.index(self.index2)
        else:
            self.index2 = text.index(self.index1 + " +1c")
        if text.compare(self.index2, ">", "end-1c"):
            # Don't delete the final newline
            self.index2 = text.index("end-1c")
        self.chars = text.get(self.index1, self.index2)
        text.delete(self.index1, self.index2)
        self.marks_after = self.save_marks(text)
        ##sys.__stderr__.write("do: %s\n" % self)

    def redo(self, text):
        text.mark_set('insert', self.index1)
        text.delete(self.index1, self.index2)
        self.set_marks(text, self.marks_after)
        text.see('insert')
        ##sys.__stderr__.write("redo: %s\n" % self)

    def undo(self, text):
        text.mark_set('insert', self.index1)
        text.insert(self.index1, self.chars)
        self.set_marks(text, self.marks_before)
        text.see('insert')
        ##sys.__stderr__.write("undo: %s\n" % self)


class CommandSequence(Command):
    # Wrapper for a sequence of undoable cmds to be undone/redone
    # as a unit

    def __init__(self):
        self.cmds = []
        self.depth = 0

    def __repr__(self):
        s = self.__class__.__name__
        strs = []
        for cmd in self.cmds:
            strs.append("    %r" % (cmd,))
        return s + "(\n" + ",\n".join(strs) + "\n)"

    def __len__(self):
        return len(self.cmds)

    def append(self, cmd):
        self.cmds.append(cmd)

    def getcmd(self, i):
        return self.cmds[i]

    def redo(self, text):
        for cmd in self.cmds:
            cmd.redo(text)

    def undo(self, text):
        cmds = self.cmds[:]
        cmds.reverse()
        for cmd in cmds:
            cmd.undo(text)

    def bump_depth(self, incr=1):
        self.depth = self.depth + incr
        return self.depth


def _undo_delegator(parent):  # htest #
    from tkinter import Toplevel, Text, Button
    from idlelib.percolator import Percolator
    undowin = Toplevel(parent)
    undowin.title("Test UndoDelegator")
    x, y = map(int, parent.geometry().split('+')[1:])
    undowin.geometry("+%d+%d" % (x, y + 175))

    text = Text(undowin, height=10)
    text.pack()
    text.focus_set()
    p = Percolator(text)
    d = UndoDelegator()
    p.insertfilter(d)

    undo = Button(undowin, text="Undo", command=lambda:d.undo_event(None))
    undo.pack(side='left')
    redo = Button(undowin, text="Redo", command=lambda:d.redo_event(None))
    redo.pack(side='left')
    dump = Button(undowin, text="Dump", command=lambda:d.dump_event(None))
    dump.pack(side='left')

if __name__ == "__main__":
    from unittest import main
    main('idlelib.idle_test.test_undo', verbosity=2, exit=False)

    from idlelib.idle_test.htest import run
    run(_undo_delegator)

Directory Contents

Dirs: 3 × Files: 73

Name Size Perms Modified Actions
Icons DIR
- drwxr-xr-x 2024-10-10 12:27:02
Edit Download
idle_test DIR
- drwxr-xr-x 2024-10-10 12:27:02
Edit Download
- drwxr-xr-x 2024-10-10 12:27:02
Edit Download
8.74 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
19.64 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.14 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.12 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
6.17 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
6.99 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
55.04 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
11.06 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
12.69 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.21 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
2.80 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
10.65 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
3.09 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
37.28 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
102.07 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
14.13 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.82 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
18.66 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
11.86 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.96 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.06 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.02 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.97 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
64.08 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.56 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
3.80 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
15.41 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.30 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
60.76 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
11.46 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.77 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.95 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
10.07 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
12.58 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
454 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
570 B lrw-r--r-- 2023-06-05 20:45:13
Edit Download
20.15 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
9.44 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.83 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
18.21 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
47.65 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
26.54 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
5.65 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.04 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.12 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.06 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
19.48 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
55.91 KB lrwxr-xr-x 2024-04-17 17:55:26
Edit Download
14.55 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
9.37 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
6.71 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
9.66 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
20.64 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
19.82 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.58 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.36 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.44 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.36 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.30 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
13.27 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
12.54 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.35 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.41 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
6.65 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.28 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
6.41 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
15.97 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
10.79 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.55 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.10 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
961 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
396 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
159 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
 !"#$%&'(()*+,-./00123456789 t\ wIDATx ]ys  47Y ƒ -  "  Rv  < f{Ɛ $k l L > L  ~h^ 1  [  r G t& h  l F z3O Y ! p A(_g̷ E8 )S 8 c  Kb"z ~ 5 J xAL WU <  *  5 m;W a pB h ~P J 2 3 6 ҙ .Ƹ P i  4g F R L P ΪK/D  M v (a3 k J Œ4N5* SH ` SdJ z  O J Xՠ V>u ߱ BE&L b2 ?2` tX+  c CB A$ i b C ĀMB E : /  # Dx &l =q Ty  0 \p I ( L Ǎ { e 4k ;`u^ヲ eP!( d {  )T A 8 O;Ě n >;s6 !  :Nx `[S D HU ~ q›J F} a g*D 49 / pn k h (t 8NxƐF _!r չ7 ZR R׷ q/5") Ӎ NY 0 x sZ!   o  fu  ,  K"$ ? pg  㕣=  1» {h " fh7    y  } € +7  $ y " X —ą - G P u 4 m >J 5 L =V ' ^@I p ?MS xЌ XV P ! h "C NS9B8̢ ]!K  e   zA , ӏkbY  !< XQ ٿyS| *" f { w  4@[S <  # 0 ! js [m  =,~ o "ݎ DHf Wo $ g ! Vԅ t mB /y Wf V4񺍸 c+@x?  B ~u " xUN e 0 BĂ) ~J pz! 7y6]l Ԥ@ P a< O /DHC `≻  N m"$  0ObB }{ x AO FCG D R ^ "B  { WDH  UR l@ T #  +"d T ; 0 i  D}. 7 ` ' ] w rE &S i ƕiTD EL P _ u h $ Ա FG wVD G L R Zf ' .!] J /ZR oGЍs Mr Ĥ ʬ 3 Q [3 cL ` ^ p + ( F;# B 5 '  2Y f [  ϶R0e }  E 7 6M aۮ H <& n % L] E}Up x紉, Uw' Q  Ǯշo k ވۙ 0N94 VX5 xEDE l D #֤ } C o )W :  ^ s 9  bRf iX5u ཱི 4 :[  T 1. | [E 2ؽ Iy\ : o x K G 5 ylP ' uK E ftb/i[3 .g _  [3M n G, #NwQ5~  ؚ) | n =Ц"x qg gB ` 듘 ~ x w ? ? R~  _ u. &VQ K˻   H C ( TN˄+ `C dA nB׭ D 3"Z G ê ^k H_ /- ~ " R_  .8 Z_ 6@ o  xg  uP ? 3լ @7AM!  E7^ - =V L  x  g-D0  CtmW 7  O  G _ WD0 g C  w1 r d w : a | \  *" f nֳ ^ H# f L ` Z ۽hV  }S F r0Ù Bć5r] @! NL iQ]{s^=4 d  WD  "  "   M; t" 8 5 e dL| "-*st" ) SWD ?R[S e ooF  20.D ? bo =) A i o d ģ ZҰaO @E =) i D a &ܟa CϞ y6 ,<%{^x%{f8? `iw^ ?/ M * IEND B`