blob: f21e2e2fb943397c49790f9806524069b2802d91 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PERIDOT_EXAMPLES_SWAP_CPP_MODULE_H_
#define PERIDOT_EXAMPLES_SWAP_CPP_MODULE_H_
#include <fuchsia/modular/cpp/fidl.h>
#include <fuchsia/ui/gfx/cpp/fidl.h>
#include <lib/ui/base_view/cpp/base_view.h>
#include <lib/zx/eventpair.h>
#include "src/lib/fxl/logging.h"
#include "src/modular/lib/fidl/single_service_app.h"
namespace modular_example {
class ModuleView : public scenic::BaseView {
public:
explicit ModuleView(scenic::ViewContext view_context, uint32_t color);
private:
// |scenic::SessionListener|
void OnScenicError(std::string error) override { FXL_LOG(ERROR) << "Scenic Error " << error; }
// |scenic::BaseView|
void OnPropertiesChanged(fuchsia::ui::gfx::ViewProperties old_properties) override;
scenic::ShapeNode background_node_;
FXL_DISALLOW_COPY_AND_ASSIGN(ModuleView);
};
class ModuleApp : public modular::ViewApp {
public:
using CreateViewCallback = fit::function<scenic::BaseView*(scenic::ViewContext view_context)>;
explicit ModuleApp(sys::ComponentContext* component_context, CreateViewCallback create);
private:
// |ViewApp|
void CreateView(zx::eventpair view_token,
fidl::InterfaceRequest<fuchsia::sys::ServiceProvider> incoming_services,
fidl::InterfaceHandle<fuchsia::sys::ServiceProvider> outgoing_services) override;
CreateViewCallback create_;
std::unique_ptr<scenic::BaseView> view_;
std::unique_ptr<sys::ComponentContext> component_context_;
FXL_DISALLOW_COPY_AND_ASSIGN(ModuleApp);
};
} // namespace modular_example
#endif // PERIDOT_EXAMPLES_SWAP_CPP_MODULE_H_