-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlTools.pyi
More file actions
66 lines (63 loc) · 2.61 KB
/
Copy pathhtmlTools.pyi
File metadata and controls
66 lines (63 loc) · 2.61 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from typing import Any, List, Optional
from olexFunctions import OlexFunctions
from datetime import date
# --- Instances ---
OV: OlexFunctions
# --- Constants / state ---
HaveModeBox: bool
debug: bool
hover_buttons: bool
tutorial_box_initialised: bool
current_tooltip_number: int
time_add: int
last_mode: Optional[str]
last_mode_options: Optional[str]
# --- Functions ---
def CheckForImage(args: Any = ...) -> Any: ...
def EditGuiItem(args: Any = ...) -> None: ...
def InActionButton(args: Any = ...) -> bool: ...
def MakeActiveGuiButton(args: Any = ...) -> str: ...
def MakeHoverButton(args: Any = ...) -> str: ...
def MakeHoverButtonOff(args: Any = ...) -> str: ...
def MakeHoverButtonOn(args: Any = ...) -> str: ...
def OnModeChange(args: Any = ...) -> None: ...
def OnStateChange(args: Any = ...) -> None: ...
def PopBanner(args: Any = ...) -> None: ...
def PopProgram(args: Any = ...) -> None: ...
def SetReportStyle(style: str) -> None: ...
def SetReportTemplate(template: str) -> None: ...
def _check_modes_and_states(args: Any = ...) -> Any: ...
def bgcolor(args: Any = ...) -> str: ...
def changeBoxColour(args: Any = ...) -> None: ...
def doBanner(args: Any = ...) -> None: ...
def format_help(args: Any = ...) -> str: ...
def getGenericSwitchName(args: Any = ...) -> str: ...
def getGenericSwitchNameTranslation(args: Any = ...) -> str: ...
def getPopBoxPosition(args: Any = ...) -> Any: ...
def getPrintStyles() -> List[str]: ...
def getStyles() -> List[str]: ...
def getStylesList() -> List[str]: ...
def getTemplatesList() -> List[str]: ...
def getTip(args: Any = ...) -> str: ...
def get_template(name: str) -> str: ...
def include_block(args: Any = ...) -> str: ...
def makeHtmlBottomPop(args: Any = ...) -> str: ...
def makeHtmlInputBox(args: Any = ...) -> str: ...
def makeHtmlTable(args: Any = ...) -> str: ...
def makeHtmlTableRow(args: Any = ...) -> str: ...
def make_combo_text_box(args: Any = ...) -> str: ...
def make_edit_link(args: Any = ...) -> str: ...
def make_gui_edit_link(args: Any = ...) -> str: ...
def make_help_href(args: Any = ...) -> str: ...
def make_html_closing() -> str: ...
def make_html_opening(args: Any = ...) -> str: ...
def make_input_button(args: Any = ...) -> str: ...
def make_input_text_box(args: Any = ...) -> str: ...
def make_spin_input(args: Any = ...) -> str: ...
def make_table_first_col(args: Any = ...) -> str: ...
def make_tick_box_input(args: Any = ...) -> str: ...
def make_warning_html(message: str) -> str: ...
def path_from_phil(args: Any = ...) -> str: ...
def reg_command(args: Any = ...) -> None: ...
def setDisplayQuality(quality: str) -> None: ...
def switchButton(args: Any = ...) -> None: ...