mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 09:18:52 +00:00
Taskbar: Start working on a taskbar app.
I originally thought I would do this inside WindowServer, but let's try to make it as a standalone app that communicates with WindowServer instead. That will allow us to use LibGUI. :^)
This commit is contained in:
parent
318db1e48e
commit
a22774ee3f
Notes:
sideshowbarker
2024-07-19 14:50:04 +09:00
Author: https://github.com/awesomekling
Commit: a22774ee3f
31 changed files with 577 additions and 18 deletions
10
Applications/Taskbar/main.cpp
Normal file
10
Applications/Taskbar/main.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include <LibGUI/GApplication.h>
|
||||
#include "TaskbarWindow.h"
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
GApplication app(argc, argv);
|
||||
TaskbarWindow window;
|
||||
window.show();
|
||||
return app.exec();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue