Enums¶
Details¶
- class InfText.FilesystemFormatError(value)¶
Bases:
GLib.EnumErrors that can occur when reading a
InfText.Sessionfrom aInfinityd.FilesystemStorage.- NOT_A_TEXT_SESSION = 0¶
The file to be read is not a serialized text session.
- USER_EXISTS = 1¶
The user table of the session contains users with duplicate ID or duplicate name.
- NO_SUCH_USER = 2¶
A segment of the text document is written by a user which does not exist.
- class InfText.OperationError(value)¶
Bases:
GLib.EnumError codes that can occur when applying a
InfText.InsertOperation,InfText.DeleteOperationorInfText.MoveOperationto the buffer.- INVALID_INSERT = 0¶
A
InfText.InsertOperationattempted to insert text after the end of the buffer.
- INVALID_DELETE = 1¶
A
InfText.DeleteOperationattempted to delete text from after the end of the buffer.
- INVALID_MOVE = 2¶
A
InfText.MoveOperationattempted to move the cursor of a user behind the end of the buffer.
- FAILED = 3¶
No further specified error code.