Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
idapro / opt / ida90 / libexec / idapro / python / ida_undo.py
Size: Mime:
from sys import version_info as _swig_python_version_info
if __package__ or '.' in __name__:
    from . import _ida_undo
else:
    import _ida_undo
try:
    import builtins as __builtin__
except ImportError:
    import __builtin__


def _swig_repr(self):
    try:
        strthis = 'proxy of ' + self.this.__repr__()
    except __builtin__.Exception:
        strthis = ''
    return '<%s.%s; %s >' % (self.__class__.__module__, self.__class__.
        __name__, strthis)


def _swig_setattr_nondynamic_instance_variable(set):

    def set_instance_attr(self, name, value):
        if name == 'this':
            set(self, name, value)
        elif name == 'thisown':
            self.this.own(value)
        elif hasattr(self, name) and isinstance(getattr(type(self), name),
            property):
            set(self, name, value)
        else:
            raise AttributeError('You cannot add instance attributes to %s' %
                self)
    return set_instance_attr


def _swig_setattr_nondynamic_class_variable(set):

    def set_class_attr(cls, name, value):
        if hasattr(cls, name) and not isinstance(getattr(cls, name), property):
            set(cls, name, value)
        else:
            raise AttributeError('You cannot add class attributes to %s' % cls)
    return set_class_attr


def _swig_add_metaclass(metaclass):
    """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass"""

    def wrapper(cls):
        return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy())
    return wrapper


class _SwigNonDynamicMeta(type):
    """Meta class to enforce nondynamic attributes (no new attributes) for a class"""
    __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__)


import weakref
SWIG_PYTHON_LEGACY_BOOL = _ida_undo.SWIG_PYTHON_LEGACY_BOOL
from typing import Tuple, List, Union
import ida_idaapi


def create_undo_point(*args) ->bool:
    """Create a new restore point. The user can undo to this point in the future. 
        
@param bytes: body of the record for UNDO_ACTION_START
@param size: size of the record for UNDO_ACTION_START
@returns success; fails if undo is disabled"""
    return _ida_undo.create_undo_point(*args)


def get_undo_action_label() ->str:
    """Get the label of the action that will be undone. This function returns the text that can be displayed in the undo menu 
        
@returns success"""
    return _ida_undo.get_undo_action_label()


def get_redo_action_label() ->str:
    """Get the label of the action that will be redone. This function returns the text that can be displayed in the redo menu 
        
@returns success"""
    return _ida_undo.get_redo_action_label()


def perform_undo() ->bool:
    """Perform undo. 
        
@returns success"""
    return _ida_undo.perform_undo()


def perform_redo() ->bool:
    """Perform redo. 
        
@returns success"""
    return _ida_undo.perform_redo()