2022-07-21 19:26:10 +02:00
|
|
|
diff --git printing/printing_context_linux.cc printing/printing_context_linux.cc
|
2022-07-25 19:49:32 +02:00
|
|
|
index c8673eaee484b..d7026cd38df11 100644
|
2022-07-21 19:26:10 +02:00
|
|
|
--- printing/printing_context_linux.cc
|
|
|
|
+++ printing/printing_context_linux.cc
|
2022-07-25 19:49:32 +02:00
|
|
|
@@ -25,6 +25,12 @@
|
|
|
|
|
|
|
|
namespace printing {
|
2022-07-21 19:26:10 +02:00
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
+namespace {
|
|
|
|
+
|
|
|
|
+static PrintingContextLinuxDelegate* g_delegate = nullptr;
|
|
|
|
+
|
|
|
|
+} // namespace
|
|
|
|
+
|
2022-07-21 19:26:10 +02:00
|
|
|
// static
|
2022-07-25 19:49:32 +02:00
|
|
|
std::unique_ptr<PrintingContext> PrintingContext::CreateImpl(
|
|
|
|
Delegate* delegate,
|
|
|
|
@@ -47,6 +53,14 @@ PrintingContextLinux::~PrintingContextLinux() {
|
|
|
|
print_dialog_->ReleaseDialog();
|
|
|
|
}
|
|
|
|
|
|
|
|
+// static
|
2022-07-21 19:26:10 +02:00
|
|
|
+PrintingContextLinuxDelegate* PrintingContextLinuxDelegate::SetInstance(
|
2022-07-25 19:49:32 +02:00
|
|
|
+ PrintingContextLinuxDelegate* delegate) {
|
2022-07-21 19:26:10 +02:00
|
|
|
+ auto old_delegate = g_delegate;
|
2022-07-25 19:49:32 +02:00
|
|
|
+ g_delegate = delegate;
|
2022-07-21 19:26:10 +02:00
|
|
|
+ return old_delegate;
|
2022-07-25 19:49:32 +02:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
void PrintingContextLinux::AskUserForSettings(int max_pages,
|
|
|
|
bool has_selection,
|
|
|
|
bool is_scripted,
|
|
|
|
@@ -68,23 +82,19 @@ mojom::ResultCode PrintingContextLinux::UseDefaultSettings() {
|
|
|
|
|
|
|
|
ResetSettings();
|
|
|
|
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
|
|
- if (!ui::LinuxUi::instance())
|
|
|
|
+ if (!g_delegate)
|
|
|
|
return mojom::ResultCode::kSuccess;
|
|
|
|
|
|
|
|
if (!print_dialog_)
|
|
|
|
- print_dialog_ = ui::LinuxUi::instance()->CreatePrintDialog(this);
|
|
|
|
+ print_dialog_ = g_delegate->CreatePrintDialog(this);
|
|
|
|
print_dialog_->UseDefaultSettings();
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
return mojom::ResultCode::kSuccess;
|
2022-07-21 19:26:10 +02:00
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
gfx::Size PrintingContextLinux::GetPdfPaperSizeDeviceUnits() {
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
|
|
- if (ui::LinuxUi::instance())
|
|
|
|
- return ui::LinuxUi::instance()->GetPdfPaperSize(this);
|
|
|
|
-#endif
|
|
|
|
+ if (g_delegate)
|
|
|
|
+ return g_delegate->GetPdfPaperSize(this);
|
|
|
|
|
|
|
|
return gfx::Size();
|
|
|
|
}
|
|
|
|
@@ -94,18 +104,16 @@ mojom::ResultCode PrintingContextLinux::UpdatePrinterSettings(
|
|
|
|
DCHECK(!printer_settings.show_system_dialog);
|
|
|
|
DCHECK(!in_print_job_);
|
|
|
|
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
|
|
- if (!ui::LinuxUi::instance())
|
|
|
|
+ if (!g_delegate)
|
|
|
|
return mojom::ResultCode::kSuccess;
|
|
|
|
|
|
|
|
if (!print_dialog_)
|
|
|
|
- print_dialog_ = ui::LinuxUi::instance()->CreatePrintDialog(this);
|
|
|
|
+ print_dialog_ = g_delegate->CreatePrintDialog(this);
|
|
|
|
|
|
|
|
// PrintDialogGtk::UpdateSettings() calls InitWithSettings() so settings_ will
|
|
|
|
// remain non-null after this line.
|
|
|
|
print_dialog_->UpdateSettings(std::move(settings_));
|
|
|
|
DCHECK(settings_);
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
return mojom::ResultCode::kSuccess;
|
|
|
|
}
|
2022-07-21 19:26:10 +02:00
|
|
|
diff --git printing/printing_context_linux.h printing/printing_context_linux.h
|
2022-07-25 19:49:32 +02:00
|
|
|
index 0e2f451ac050f..3faa2a3dff79d 100644
|
2022-07-21 19:26:10 +02:00
|
|
|
--- printing/printing_context_linux.h
|
|
|
|
+++ printing/printing_context_linux.h
|
2022-07-25 19:49:32 +02:00
|
|
|
@@ -16,6 +16,20 @@ namespace printing {
|
2022-07-21 19:26:10 +02:00
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
class MetafilePlayer;
|
|
|
|
class PrintDialogLinuxInterface;
|
|
|
|
+class PrintingContextLinux;
|
|
|
|
+
|
|
|
|
+class COMPONENT_EXPORT(PRINTING) PrintingContextLinuxDelegate {
|
|
|
|
+ public:
|
|
|
|
+ virtual ~PrintingContextLinuxDelegate() = default;
|
|
|
|
+
|
|
|
|
+ virtual PrintDialogLinuxInterface* CreatePrintDialog(
|
|
|
|
+ PrintingContextLinux* context) = 0;
|
|
|
|
+
|
|
|
|
+ virtual gfx::Size GetPdfPaperSize(PrintingContextLinux* context) = 0;
|
|
|
|
+
|
2022-07-21 19:26:10 +02:00
|
|
|
+ static PrintingContextLinuxDelegate* SetInstance(
|
|
|
|
+ PrintingContextLinuxDelegate* delegate);
|
2022-07-25 19:49:32 +02:00
|
|
|
+};
|
2022-07-21 19:26:10 +02:00
|
|
|
|
|
|
|
// PrintingContext with optional native UI for print dialog and pdf_paper_size.
|
2022-07-25 19:49:32 +02:00
|
|
|
class COMPONENT_EXPORT(PRINTING) PrintingContextLinux : public PrintingContext {
|
2022-08-08 19:13:18 +02:00
|
|
|
diff --git tools/v8_context_snapshot/BUILD.gn tools/v8_context_snapshot/BUILD.gn
|
|
|
|
index a06eae4ab3217..43851307c531f 100644
|
|
|
|
--- tools/v8_context_snapshot/BUILD.gn
|
|
|
|
+++ tools/v8_context_snapshot/BUILD.gn
|
|
|
|
@@ -106,6 +106,7 @@ if (use_v8_context_snapshot) {
|
|
|
|
deps = [
|
|
|
|
"//gin:gin",
|
|
|
|
"//mojo/core/embedder",
|
|
|
|
+ "//printing",
|
|
|
|
"//services/service_manager/public/cpp",
|
|
|
|
"//third_party/blink/public:blink",
|
|
|
|
"//v8",
|
2022-07-25 19:49:32 +02:00
|
|
|
diff --git ui/linux/linux_ui.cc ui/linux/linux_ui.cc
|
2022-08-23 03:37:40 +02:00
|
|
|
index ec285b1637e57..1f9a4556c4a03 100644
|
2022-07-25 19:49:32 +02:00
|
|
|
--- ui/linux/linux_ui.cc
|
|
|
|
+++ ui/linux/linux_ui.cc
|
2022-08-23 03:37:40 +02:00
|
|
|
@@ -28,6 +28,10 @@ namespace ui {
|
|
|
|
// static
|
2022-07-25 19:49:32 +02:00
|
|
|
std::unique_ptr<LinuxUi> LinuxUi::SetInstance(
|
|
|
|
std::unique_ptr<LinuxUi> instance) {
|
|
|
|
+#if BUILDFLAG(IS_LINUX) && BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
+ printing::PrintingContextLinuxDelegate::SetInstance(instance.get());
|
|
|
|
+#endif
|
2022-08-23 03:37:40 +02:00
|
|
|
+
|
2022-07-25 19:49:32 +02:00
|
|
|
return std::exchange(GetLinuxUiInstance(), std::move(instance));
|
|
|
|
}
|
2022-08-23 03:37:40 +02:00
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
diff --git ui/linux/linux_ui.h ui/linux/linux_ui.h
|
2022-08-23 03:37:40 +02:00
|
|
|
index dee97740309e2..1e034b5e2e9ec 100644
|
2022-07-25 19:49:32 +02:00
|
|
|
--- ui/linux/linux_ui.h
|
|
|
|
+++ ui/linux/linux_ui.h
|
2022-08-23 03:37:40 +02:00
|
|
|
@@ -18,6 +18,10 @@
|
|
|
|
#include "build/chromecast_buildflags.h"
|
|
|
|
#include "printing/buildflags/buildflags.h"
|
2022-07-25 19:49:32 +02:00
|
|
|
|
|
|
|
+#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
+#include "printing/printing_context_linux.h" // nogncheck
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
// The main entrypoint into Linux toolkit specific code. GTK/QT code should only
|
|
|
|
// be executed behind this interface.
|
|
|
|
|
2022-08-23 03:37:40 +02:00
|
|
|
@@ -59,7 +63,11 @@ class WindowFrameProvider;
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
// Adapter class with targets to render like different toolkits. Set by any
|
|
|
|
// project that wants to do linux desktop native rendering.
|
2022-08-23 03:37:40 +02:00
|
|
|
-class COMPONENT_EXPORT(LINUX_UI) LinuxUi {
|
|
|
|
+class COMPONENT_EXPORT(LINUX_UI) LinuxUi
|
2022-07-25 19:49:32 +02:00
|
|
|
+#if BUILDFLAG(ENABLE_PRINTING)
|
2022-08-23 03:37:40 +02:00
|
|
|
+ : public printing::PrintingContextLinuxDelegate
|
2022-07-25 19:49:32 +02:00
|
|
|
+#endif
|
2022-08-23 03:37:40 +02:00
|
|
|
+ {
|
2022-07-25 19:49:32 +02:00
|
|
|
public:
|
|
|
|
using UseSystemThemeCallback =
|
|
|
|
base::RepeatingCallback<bool(aura::Window* window)>;
|
2022-08-23 03:37:40 +02:00
|
|
|
@@ -180,14 +188,6 @@ class COMPONENT_EXPORT(LINUX_UI) LinuxUi {
|
2022-07-25 19:49:32 +02:00
|
|
|
// Returns a map of KeyboardEvent code to KeyboardEvent key values.
|
|
|
|
virtual base::flat_map<std::string, std::string> GetKeyboardLayoutMap() = 0;
|
|
|
|
|
|
|
|
-#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
- virtual printing::PrintDialogLinuxInterface* CreatePrintDialog(
|
|
|
|
- printing::PrintingContextLinux* context) = 0;
|
|
|
|
-
|
|
|
|
- virtual gfx::Size GetPdfPaperSize(
|
|
|
|
- printing::PrintingContextLinux* context) = 0;
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
// Returns a native file selection dialog. `listener` is of type
|
|
|
|
// SelectFileDialog::Listener. TODO(thomasanderson): Move
|
|
|
|
// SelectFileDialog::Listener to SelectFileDialogListener so that it can be
|