-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgui.pyi
More file actions
66 lines (61 loc) · 2.46 KB
/
Copy pathgui.pyi
File metadata and controls
66 lines (61 loc) · 2.46 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
from olexFunctions import OlexFunctions
# --- Constants ---
black: str
white: str
table_col: str
# --- Instances ---
OV: OlexFunctions
# --- Classes ---
class ImageListener_:
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
ImageListener: ImageListener_
# --- Functions ---
def About() -> None: ...
def FileOpen(args: Any = ...) -> str: ...
def FileSave(args: Any = ...) -> str: ...
def FixFree(args: Any = ...) -> None: ...
def GetBoxPosition(args: Any = ...) -> Any: ...
def GetDropdownItemsFromList(lst: List[str]) -> str: ...
def GetFileList(path: str = ...) -> List[str]: ...
def GetFileListAsDropdownItems(path: str = ...) -> str: ...
def GetFolderList(path: str = ...) -> List[str]: ...
def GetItemsFromPhilChoices(args: Any = ...) -> List[str]: ...
def GetPathParam(name: str) -> str: ...
def IsMouseLocked() -> bool: ...
def NamingMode(args: Any = ...) -> Any: ...
def PopTool(args: Any = ...) -> None: ...
def SaveModel(args: Any = ...) -> None: ...
def SwitchPanel(panel: str) -> None: ...
def SwitchSettings(args: Any = ...) -> None: ...
def SwitchTool(tool: str) -> None: ...
def UpdateWeight(args: Any = ...) -> None: ...
def activate_or_run_CAP(args: Any = ...) -> None: ...
def run_CAP(args: Any = ...) -> None: ...
def cbtn_on(args: Any = ...) -> None: ...
def copy_datadir_items(args: Any = ...) -> None: ...
def copytree(src: str, dst: str) -> None: ...
def create_archive(args: Any = ...) -> None: ...
def create_history_branch(args: Any = ...) -> None: ...
def create_overlay_gui(args: Any = ...) -> None: ...
def delete_ofile(args: Any = ...) -> None: ...
def do_sort(args: Any = ...) -> None: ...
def escape_for_html(s: str) -> str: ...
def file_open(path: str) -> None: ...
def focus_on_control(control: str) -> None: ...
def get_default_notification() -> Any: ...
def get_notification(args: Any = ...) -> Any: ...
def get_openblas_thread_n_selection() -> Any: ...
def get_refinement_lists() -> List[str]: ...
def get_thread_n_label() -> str: ...
def get_thread_n_selection() -> Any: ...
def have_par_files() -> bool: ...
def helpImagesToOlexVFS() -> None: ...
def par_files_table(args: Any = ...) -> str: ...
def set_client_mode(args: Any = ...) -> None: ...
def set_notification(args: Any = ...) -> None: ...
def set_ofile(args: Any = ...) -> None: ...
def set_openblas_thread_n(args: Any = ...) -> None: ...
def set_refinement_list(args: Any = ...) -> None: ...
def strip_html_tags(s: str) -> str: ...
def zipToOlexVFS(args: Any = ...) -> None: ...