main.cpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #include <flutter/dart_project.h>
  2. #include <flutter/flutter_view_controller.h>
  3. #include <windows.h>
  4. #include "flutter_window.h"
  5. #include "utils.h"
  6. int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
  7. _In_ wchar_t *command_line, _In_ int show_command) {
  8. // Attach to console when present (e.g., 'flutter run') or create a
  9. // new console when running with a debugger.
  10. // if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
  11. // CreateAndAttachConsole();
  12. // }
  13. HWND hwnd = ::FindWindow(L"FLUTTER_RUNNER_WIN32_WINDOW", L"naiyouwl");
  14. if (hwnd != NULL) {
  15. DispatchToProtocolHandler(hwnd);
  16. ::ShowWindow(hwnd, SW_NORMAL);
  17. ::SetForegroundWindow(hwnd);
  18. return EXIT_FAILURE;
  19. }
  20. // https://github.com/flutter/flutter/issues/47891#issuecomment-708850435
  21. // https://github.com/flutter/flutter/issues/47891#issuecomment-869729956
  22. // https://github.com/dart-lang/sdk/issues/39945#issuecomment-870428151
  23. if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
  24. CreateAndAttachConsole();
  25. } else {
  26. AllocConsole();
  27. ShowWindow(GetConsoleWindow(), SW_HIDE);
  28. }
  29. // Initialize COM, so that it is available for use in the library and/or
  30. // plugins.
  31. ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
  32. flutter::DartProject project(L"data");
  33. std::vector<std::string> command_line_arguments =
  34. GetCommandLineArguments();
  35. project.set_dart_entrypoint_arguments(std::move(command_line_arguments));
  36. FlutterWindow window(project);
  37. Win32Window::Point origin(10, 10);
  38. Win32Window::Size size(1280, 720);
  39. if (!window.Create(L"naiyouwl", origin, size)) {
  40. return EXIT_FAILURE;
  41. }
  42. window.SetQuitOnClose(true);
  43. ::MSG msg;
  44. while (::GetMessage(&msg, nullptr, 0, 0)) {
  45. ::TranslateMessage(&msg);
  46. ::DispatchMessage(&msg);
  47. }
  48. ::CoUninitialize();
  49. return EXIT_SUCCESS;
  50. }