Source code for carbonkivy.uix.shell
import os
from kivy.lang import Builder
from carbonkivy.config import UIX
from .shell import (
UIShell,
UIShellButton,
UIShellHeader,
UIShellHeaderMenuButton,
UIShellHeaderName,
UIShellLayout,
UIShellLeftPanel,
UIShellPanelLayout,
UIShellPanelSelectionItem,
UIShellPanelSelectionLayout,
UIShellRightPanel,
)
[docs]
filename = os.path.join(UIX, "shell", "shell.kv")
if not filename in Builder.files:
Builder.load_file(filename)