generated_plugin_registrant.cc 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // Generated file. Do not edit.
  3. //
  4. // clang-format off
  5. #include "generated_plugin_registrant.h"
  6. #include <flowy_infra_ui/flowy_infra_u_i_plugin.h>
  7. #include <hotkey_manager/hotkey_manager_plugin.h>
  8. #include <rich_clipboard_linux/rich_clipboard_plugin.h>
  9. #include <screen_retriever/screen_retriever_plugin.h>
  10. #include <url_launcher_linux/url_launcher_plugin.h>
  11. #include <window_manager/window_manager_plugin.h>
  12. void fl_register_plugins(FlPluginRegistry* registry) {
  13. g_autoptr(FlPluginRegistrar) flowy_infra_ui_registrar =
  14. fl_plugin_registry_get_registrar_for_plugin(registry, "FlowyInfraUIPlugin");
  15. flowy_infra_u_i_plugin_register_with_registrar(flowy_infra_ui_registrar);
  16. g_autoptr(FlPluginRegistrar) hotkey_manager_registrar =
  17. fl_plugin_registry_get_registrar_for_plugin(registry, "HotkeyManagerPlugin");
  18. hotkey_manager_plugin_register_with_registrar(hotkey_manager_registrar);
  19. g_autoptr(FlPluginRegistrar) rich_clipboard_linux_registrar =
  20. fl_plugin_registry_get_registrar_for_plugin(registry, "RichClipboardPlugin");
  21. rich_clipboard_plugin_register_with_registrar(rich_clipboard_linux_registrar);
  22. g_autoptr(FlPluginRegistrar) screen_retriever_registrar =
  23. fl_plugin_registry_get_registrar_for_plugin(registry, "ScreenRetrieverPlugin");
  24. screen_retriever_plugin_register_with_registrar(screen_retriever_registrar);
  25. g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
  26. fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
  27. url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
  28. g_autoptr(FlPluginRegistrar) window_manager_registrar =
  29. fl_plugin_registry_get_registrar_for_plugin(registry, "WindowManagerPlugin");
  30. window_manager_plugin_register_with_registrar(window_manager_registrar);
  31. }