When a second display is connected (macOS), presenting now opens a borderless audience window on the beamer showing the slide, while the main window shows the presenter view (current/next slide, speaker notes, clock, controls) on the laptop. The two windows stay in sync over method channels: navigation, blank screen, audio-complete and beamer clicks are forwarded between them, and media plays only on the beamer to avoid double audio. Falls back to the existing single-window presenter when there is one display or the second window can't be created. - Vendors a fork of desktop_multi_window in third_party/ that re-adds the native macOS window geometry/fullscreen calls (coverScreen, setFrame, close) the published 0.3.0 dropped; wired via a path dependency. - Registers the app's plugins for sub-windows in MainFlutterWindow so video/image rendering works on the beamer. - Routes the multi_window dart entrypoint to a minimal AudienceWindowApp. Compiles (flutter analyze + macOS debug build) and all tests pass; runtime two-screen behaviour still needs verification on real hardware. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
42 lines
No EOL
1.2 KiB
C++
42 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
|
|
#include <flutter_linux/flutter_linux.h>
|
|
#include <string>
|
|
|
|
struct WindowConfiguration {
|
|
std::string arguments;
|
|
bool hidden_at_launch = false;
|
|
|
|
static WindowConfiguration FromFlValue(FlValue* value) {
|
|
WindowConfiguration config;
|
|
|
|
if (!value || fl_value_get_type(value) != FL_VALUE_TYPE_MAP) {
|
|
return config;
|
|
}
|
|
|
|
FlValue* arguments_value = fl_value_lookup_string(value, "arguments");
|
|
if (arguments_value &&
|
|
fl_value_get_type(arguments_value) == FL_VALUE_TYPE_STRING) {
|
|
config.arguments = fl_value_get_string(arguments_value);
|
|
}
|
|
|
|
FlValue* hidden_value = fl_value_lookup_string(value, "hiddenAtLaunch");
|
|
if (hidden_value && fl_value_get_type(hidden_value) == FL_VALUE_TYPE_BOOL) {
|
|
config.hidden_at_launch = fl_value_get_bool(hidden_value);
|
|
}
|
|
|
|
return config;
|
|
}
|
|
|
|
FlValue* ToFlValue() const {
|
|
g_autoptr(FlValue) result = fl_value_new_map();
|
|
|
|
fl_value_set_string_take(result, "arguments",
|
|
fl_value_new_string(arguments.c_str()));
|
|
|
|
fl_value_set_string_take(result, "hiddenAtLaunch",
|
|
fl_value_new_bool(hidden_at_launch));
|
|
|
|
return fl_value_ref(result);
|
|
}
|
|
}; |