forked from albertlauncher/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalbert.pyi
379 lines (266 loc) · 9.24 KB
/
albert.pyi
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
"""
# Albert Python interface v2.0
The Python interface is a subset of the internal C++ interface exposed to Python with some minor adjustments. A Python
plugin is required to contain the mandatory metadata and a plugin class, both described below. To get started read the
top level classes and function names in this file. Most of them are self explanatory. In case of questions see the C++
documentation at https://albertlauncher.github.io/reference/namespacealbert.html
## Mandatory metadata variables
md_iid: str | Interface version (<major>.<minor>)
md_version: str | Plugin version (<major>.<minor>)
md_name: str | Human readable name
md_description: str | A brief, imperative description. (Like "Launch apps" or "Open files")
## Optional metadata variables:
md_id | Identifier overwrite. [a-zA-Z0-9_]. Defaults to module name.
__doc__ | The docstring of the module is used as long description/readme of the extension.
md_license: str | Short form e.g. BSD-2-Clause or GPL-3.0
md_url: str | Browsable source, issues etc
md_maintainers: [str|List(str)] | Active maintainer(s). Preferrably using mentionable Github usernames.
md_bin_dependencies: [str|List(str)] | Required executable(s). Have to match the name of the executable in $PATH.
md_lib_dependencies: [str|List(str)] | Required Python package(s). Have to match the PyPI package name.
md_credits: [str|List(str)] | Third party credit(s) and license notes
## The Plugin class
The plugin class is the entry point for a Python plugin. It is instantiated on plugin initialization and has to subclass
PluginInstance. Implement extension(s) by subclassing _one_ extension class (TriggerQueryHandler etc…) provided by the
built-in `albert` module and pass the list of your extensions to the PluginInstance init function. Due to the
differences in type systems multiple inheritance of extensions is not supported. (Python does not support virtual
inheritance, which is used in the C++ space to inherit from 'Extension'). For more details see
"""
from abc import abstractmethod, ABC
from enum import Enum
from typing import Any
from typing import Callable
from typing import List
from typing import Optional
from typing import Union
from typing import overload
class PluginInstance(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_plugin_instance.html"""
def __init__(self, extensions: List[Extension] = []):
...
@property
def id(self) -> str:
...
@property
def name(self) -> str:
...
@property
def description(self) -> str:
...
@property
def cacheLocation(self) -> pathlib.Path:
...
@property
def configLocation(self) -> pathlib.Path:
...
@property
def dataLocation(self) -> pathlib.Path:
...
@property
def extensions(self) -> List[Extension]:
...
def initialize(self):
...
def finalize(self):
...
class Action:
"""https://albertlauncher.github.io/reference/classalbert_1_1_action.html"""
def __init__(self,
id: str,
text: str,
callable: Callable):
...
class Item(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_item.html"""
@abstractmethod
def id(self) -> str:
...
@abstractmethod
def text(self) -> str:
...
@abstractmethod
def subtext(self) -> str:
...
@abstractmethod
def inputActionText(self) -> str:
...
@abstractmethod
def iconUrls(self) -> List[str]:
"""See https://albertlauncher.github.io/reference/classalbert_1_1_icon_provider.html"""
@abstractmethod
def actions(self) -> List[Action]:
...
class StandardItem(Item):
"""https://albertlauncher.github.io/reference/structalbert_1_1_standard_item.html"""
def __init__(self,
id: str = '',
text: str = '',
subtext: str = '',
iconUrls: List[str] = [],
actions: List[Action] = [],
inputActionText: Optional[str] = ''):
...
id: str
text: str
subtext: str
iconUrls: List[str]
actions: List[Action]
inputActionText: str
class Extension(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_extension.html"""
@property
def id(self) -> str:
...
@property
def name(self) -> str:
...
@property
def description(self) -> str:
...
class FallbackHandler(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_fallback_handler.html"""
@abstractmethod
def fallbacks(self, query: str ) ->List[Item]:
...
class TriggerQuery(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_trigger_query_handler_1_1_trigger_query.html"""
@property
def trigger(self) -> str:
...
@property
def string(self) -> str:
...
@property
def isValid(self) -> bool:
...
@overload
def add(self, item: Item):
...
@overload
def add(self, item: List[Item]):
...
class TriggerQueryHandler(Extension):
"""https://albertlauncher.github.io/reference/classalbert_1_1_trigger_query_handler.html"""
def __init__(self,
id: str,
name: str,
description: str,
synopsis: str = '',
defaultTrigger: str = f'{id} ',
allowTriggerRemap: str = true,
supportsFuzzyMatching: bool = False):
...
@property
def synopsis(self) -> str:
...
@property
def trigger(self) -> str:
...
@property
def defaultTrigger(self) -> str:
...
@property
def allowTriggerRemap(self) -> bool:
...
@property
def supportsFuzzyMatching(self) -> bool:
...
@property
def fuzzyMatching(self) -> bool:
...
@fuzzyMatching.setter
def setFuzzyMatching(self, enabled: bool):
...
@abstractmethod
def handleTriggerQuery(self, query: TriggerQuery):
...
class RankItem:
"""https://albertlauncher.github.io/reference/classalbert_1_1_rank_item.html"""
def __init__(self, item: Item, score: float):
...
item: Item
score: float
class GlobalQuery(ABC):
"""https://albertlauncher.github.io/reference/classalbert_1_1_global_query_handler_1_1_global_query.html"""
@property
def string(self) -> str:
...
@property
def isValid(self) -> bool:
...
class GlobalQueryHandler(TriggerQueryHandler):
"""https://albertlauncher.github.io/reference/classalbert_1_1_global_query_handler.html"""
def __init__(self,
id: str,
name: str,
description: str,
synopsis: str = '',
defaultTrigger: str = f'{id} ',
allowTriggerRemap: str = true,
supportsFuzzyMatching: bool = False):
...
@abstractmethod
def handleGlobalQuery(self, query: GlobalQuery) -> List[RankItem]:
...
def applyUsageScore(self, rank_items: List[RankItem]):
...
def handleTriggerQuery(self, query: TriggerQuery):
...
class IndexItem:
"""https://albertlauncher.github.io/reference/classalbert_1_1_index_item.html"""
def __init__(self, item: AbstractItem, string: str):
...
item: AbstractItem
string: str
class IndexQueryHandler(GlobalQueryHandler):
"""https://albertlauncher.github.io/reference/classalbert_1_1_index_query_handler.html"""
@abstractmethod
def updateIndexItems(self):
...
def setIndexItems(self, indexItems: List[RankItem]):
...
def handleGlobalQuery(self, query: GlobalQuery) -> List[RankItem]:
...
class Notification:
def __init__(self, title: str, subtitle: str = '', text: str = ''):
...
def debug(arg: Any):
"""Module attached attribute"""
def info(arg: Any):
"""Module attached attribute"""
def warning(arg: Any):
"""Module attached attribute"""
def critical(arg: Any):
"""Module attached attribute"""
def setClipboardText(text: str=''):
"""
Set the system clipboard text.
Args:
text: The text used to set the clipboard
"""
def setClipboardTextAndPaste(text: str=''):
"""
Set the system clipboard text and paste to the front-most window
Args:
text: The text used to set the clipboard
"""
def openUrl(url: str = ''):
"""
Open an URL using QDesktopServices::openUrl.
Args:
url: The URL to open
"""
def runDetachedProcess(cmdln: List[str] = [], workdir: str = ''):
"""
Run a detached process.
Args:
cmdln: The commandline to run in the terminal (argv)
workdir: The working directory used to run the terminal
"""
def runTerminal(script: str = '', workdir: str = '', close_on_exit: bool = False):
"""
Run a script in the users shell and terminal.
Args:
script: The script to be executed.
workdir: The working directory used to run the process
close_on_exit: Close the terminal on exit. Otherwise exec $SHELL.
"""