Skip to content

Latest commit

 

History

History
122 lines (69 loc) · 2.18 KB

helpers.md

File metadata and controls

122 lines (69 loc) · 2.18 KB

Helpers

Cli2gui Index / Cli2gui / Gui / Helpers

Auto-generated documentation for cli2gui.gui.helpers module.

_themeFromFile

Show source in helpers.py:20

Set the base24 theme from a base24 scheme.yaml to the application.

Arguments


  • themeFile str - path to file

Returns


  • list[str] - theme to set

Signature

def _themeFromFile(themeFile: str) -> list[str]: ...

get_base24_theme

Show source in helpers.py:36

Set the base24 theme to the application.

Arguments


theme (Union[str, list[str]]): the light theme darkTheme (Union[str, list[str]]): the dark theme

Signature

def get_base24_theme(
    theme: str | list[str], darkTheme: str | list[str]
) -> list[str]: ...

isDarkMode

Show source in helpers.py:12

Monkeypatch for getostheme.isDarkMode.

Signature

def isDarkMode() -> bool: ...

read_file

Show source in helpers.py:133

Get the contents of a file path, attempt to parse with catpandoc..pandoc2plain.

Arguments

  • file_path str - path to the file (absolute recommended)

Returns

Type: str file contents

Signature

def read_file(file_path: str, maxLines: int = 200) -> str: ...

stringSentencecase

Show source in helpers.py:125

Convert a string to sentence case.

Signature

def stringSentencecase(string: str) -> str: ...

stringTitlecase

Show source in helpers.py:111

Convert a string to title case.

Signature

def stringTitlecase(string: str, splitStr: str = "ALL") -> str: ...