Gunnar Beutner
f52bf15f8d
Assistant: Make more of the classes final
2021-07-03 22:38:53 +02:00
Gunnar Beutner
52a3226f6d
Assistant: Make the bitmap accessor pure virtual
...
Assistant looks broken when a result doesn't have an icon.
2021-07-03 22:38:53 +02:00
Gunnar Beutner
6af08f950a
Assistant: Add missing bitmap accessor for terminal actions
2021-07-03 22:38:53 +02:00
Andreas Kling
e4199beccc
Assistant: Keep the set of providers in a Vector for easy iteration
2021-07-03 22:14:09 +02:00
Andreas Kling
513e67e2eb
Assistant: Make Result bitmaps virtual/lazy
...
Result classes now return their bitmap via a virtual Gfx::Bitmap*
getter. This effectively makes bitmap fetching lazier, since only
results that end up on screen actually get asked for their bitmap.
This drastically reduces the amount of work done by the FileProvider
background worker.
2021-07-03 20:03:53 +02:00
Timothy Flynn
27fe2b45e5
Assistant: Convert all Vector<NonnullRefPtr> to NonnullRefPtrVector
2021-07-03 15:41:35 +02:00
Timothy Flynn
d69691a26b
Assistant: Add provider to run a command in a terminal
...
Prefix text with "$" in the Assistant text box to run a command in a
forked terminal. For example, "$ top" or "$ top -s pid".
2021-07-03 15:41:35 +02:00
Edwin Hoksberg
d5dfc255ed
Assistant: Add new URLProvider to open URL's in the browser
2021-07-03 15:27:19 +02:00
Spencer Dixon
e6f0b2d817
Assistant: Add a new FileProvider to assist in searching the filesystem
...
When searching in Assistant, we now dispatch some background jobs to
query the whole filesystem. Activating a result will use the Desktop
launcher's default way of opening that file or directory.
2021-07-02 16:47:14 +02:00
Spencer Dixon
4a3958c8ae
Assistant: Remove Result::Kind in favor of native typeid
...
I was unaware of the `typeid` construct in C++ which can be used to
achieve the same thing I was doing with this extra Kind enum.
2021-07-02 16:47:14 +02:00
Andreas Kling
3ecd1d603f
Assistant: Add subtitle field to the Result class
...
This allows providers to specify an appropriate subtitle instead of
making that something the UI layer has to figure out. :^)
2021-06-29 13:23:51 +02:00
Spencer Dixon
66c13edb98
Userland: Add new app called Assistant
...
'Assistant' is similar to macOS spotlight where you can quickly open a
text input, start typing, and hit 'enter' to launch apps or open
directories.
2021-06-28 16:29:02 +02:00