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>
52 lines
1.5 KiB
C++
Executable file
52 lines
1.5 KiB
C++
Executable file
#include "flutter_window.h"
|
|
|
|
#include <iostream>
|
|
|
|
FlutterWindow::FlutterWindow(const std::string& id,
|
|
const std::string& argument,
|
|
GtkWidget* window)
|
|
: id_(id), window_argument_(argument), window_(window) {}
|
|
|
|
FlutterWindow::~FlutterWindow() = default;
|
|
|
|
void FlutterWindow::SetChannel(FlMethodChannel* channel) {
|
|
channel_ = channel;
|
|
}
|
|
|
|
void FlutterWindow::NotifyWindowEvent(const gchar* event, FlValue* data) {
|
|
if (channel_) {
|
|
fl_method_channel_invoke_method(channel_, event, data, nullptr, nullptr, nullptr);
|
|
}
|
|
}
|
|
|
|
void FlutterWindow::Show() {
|
|
if (window_) {
|
|
gtk_widget_show(GTK_WIDGET(window_));
|
|
}
|
|
}
|
|
|
|
void FlutterWindow::Hide() {
|
|
if (window_) {
|
|
gtk_widget_hide(GTK_WIDGET(window_));
|
|
}
|
|
}
|
|
|
|
void FlutterWindow::HandleWindowMethod(const gchar* method,
|
|
FlValue* arguments,
|
|
FlMethodCall* method_call) {
|
|
g_autoptr(FlMethodResponse) response = nullptr;
|
|
|
|
if (strcmp(method, "window_show") == 0) {
|
|
Show();
|
|
response = FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
|
|
} else if (strcmp(method, "window_hide") == 0) {
|
|
Hide();
|
|
response = FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
|
|
} else {
|
|
g_autofree gchar* error_msg = g_strdup_printf("unknown method: %s", method);
|
|
response = FL_METHOD_RESPONSE(
|
|
fl_method_error_response_new("-1", error_msg, nullptr));
|
|
}
|
|
|
|
fl_method_call_respond(method_call, response, nullptr);
|
|
}
|