24 lines
667 B
C++
24 lines
667 B
C++
#include "AppListView.h"
|
|
#include "AppListViewController.h"
|
|
#include "AppListWindow.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(320, 400); }
|
|
|
|
bool application() override
|
|
{
|
|
auto& window = std::xos::construct<AppListWindow>(window_size());
|
|
window.set_bitmap_format(LG::PixelBitmapFormat::RGBA);
|
|
auto& dock_view = window.create_superview<AppListView, AppListViewController>();
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
};
|
|
|
|
SET_APP_DELEGATE(AppDelegate); |