1
0
Fork 0
mirror of synced 2024-06-28 11:11:15 +12:00
Rare/rare/components
loathingKernel ecc1bd8d5c IndicatorLineEdit: Run edit callback function asynchronously
Execute the edit callback function in a thread. By executing it in a thread
we don't have to wait for longer validation procedures to finish to
continue updating the UI. This is most notable in the MoveGamePopUp
which is heavy on disk IO.

Because we cannot use special text formatting in a thread, the
indicator messages have been reworked while also becoming extensible.

A dictionary of extended reasons can be specified through the
`IndicatorLineEdit.extend_reasons()` method.

The dictionary has to follow the following format
```
python
{
	MyIndicatorReasons.REASON: self.tr("Reason message")
	MyIndicatorReasons.OTHER_REASON: self.tr("Other reason message")
}
```

In the above example `MyIndicatorReasons` is a subclass of `IndicatorReasons`
which should be specified as follows

```
python
MyIndicatorReasons(IndicatorReasons):
	REASON = auto()
	OTHER_REASON = auto()
```
2023-02-18 14:37:37 +02:00
..
dialogs IndicatorLineEdit: Run edit callback function asynchronously 2023-02-18 14:37:37 +02:00
tabs IndicatorLineEdit: Run edit callback function asynchronously 2023-02-18 14:37:37 +02:00
__init__.py lowercase snake case 2021-04-07 22:39:23 +02:00
main_window.py RareCore: add dequeue_worker() method to RareCore 2023-02-16 17:07:02 +02:00
tray_icon.py InstallQueueItemModel: Refactor to add an expiration date to the download 2023-02-04 17:38:07 +02:00