File: __init__.py

package info (click to toggle)
turing 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,340 kB
  • sloc: python: 106,582; xml: 101; makefile: 53; sh: 29
file content (28 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (4)
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
"""
The managers package contains a series of managers classes for CodeEdit.

A manager is class that takes care of a specific aspect of CodeEdit:

    - FileManager: open, save, encoding detection
    - BackendManager: manage the backend process (start the process and
      handle communication through sockets).
    - ModesManager: manage the list of modes of an editor
    - PanelsManager: manage the list of panels and draw them into the editor
      margins.
    - DecorationManager: manage text decorations

"""
from .backend import BackendManager
from .decorations import TextDecorationsManager
from .file import FileManager
from .modes import ModesManager
from .panels import PanelsManager


__all__ = [
    'BackendManager',
    'FileManager',
    'ModesManager',
    'PanelsManager',
    'TextDecorationsManager',
]