fork
Configure Feed
Select the types of activity you want to include in your feed.
opuntiaOS - an operating system targeting x86 and ARMv7
fork
Configure Feed
Select the types of activity you want to include in your feed.
1#pragma once
2
3#include <libg/Size.h>
4#include <libui/Screen.h>
5#include <libui/Window.h>
6
7class AppListWindow : public UI::Window {
8public:
9 AppListWindow(const LG::Size& size)
10 : UI::Window("AppList", size, UI::WindowType::AppList)
11 {
12 }
13
14 void receive_event(std::unique_ptr<LFoundation::Event> event) override;
15};