Squash commits for public release
This commit is contained in:
24
userland/system/homescreen/AppDelegate.cpp
Normal file
24
userland/system/homescreen/AppDelegate.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "HomeScreenView.h"
|
||||
#include "HomeScreenViewController.h"
|
||||
#include "HomeScreenWindow.h"
|
||||
#include <libui/AppDelegate.h>
|
||||
|
||||
class AppDelegate : public UI::AppDelegate {
|
||||
public:
|
||||
AppDelegate() = default;
|
||||
virtual ~AppDelegate() = default;
|
||||
|
||||
LG::Size preferred_desktop_window_size() const override { return LG::Size(400, 300); }
|
||||
|
||||
bool application() override
|
||||
{
|
||||
auto& window = std::xos::construct<HomeScreenWindow>(window_size());
|
||||
window.set_bitmap_format(LG::PixelBitmapFormat::RGBA); // Turning on Alpha channel
|
||||
auto& dock_view = window.create_superview<HomeScreenView, HomeScreenViewController>();
|
||||
return true;
|
||||
}
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
SET_APP_DELEGATE(AppDelegate);
|
||||
Reference in New Issue
Block a user