Utility.pas 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. (* _ _
  2. * | |__ _ __ ___ ___ | | __
  3. * | '_ \| '__/ _ \ / _ \| |/ /
  4. * | |_) | | | (_) | (_) | <
  5. * |_.__/|_| \___/ \___/|_|\_\
  6. *
  7. * Microframework which helps to develop web Pascal applications.
  8. *
  9. * Copyright (c) 2012-2019 Silvio Clecio <[email protected]>
  10. *
  11. * Brook framework is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * Brook framework is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with Brook framework; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *)
  25. unit Utility;
  26. interface
  27. {$IFDEF ANDROID}
  28. uses
  29. System.SysUtils,
  30. Androidapi.Helpers,
  31. Androidapi.JNI.GraphicsContentViewText,
  32. Androidapi.JNI.App,
  33. Androidapi.JNI.Net;
  34. {$ENDIF}
  35. {$IFDEF MSWINDOWS}
  36. uses
  37. Winapi.Windows,
  38. Winapi.ShellAPI;
  39. {$ENDIF}
  40. procedure OpenURL(const AURL: string);
  41. implementation
  42. procedure OpenURL(const AURL: string);
  43. {$IFDEF ANDROID}
  44. var
  45. VIntent: JIntent;
  46. {$ENDIF}
  47. begin
  48. {$IFDEF MSWINDOWS}
  49. ShellExecute(0, 'open', PChar(AURL), nil, nil, SW_SHOWNORMAL);
  50. {$ENDIF}
  51. {$IFDEF ANDROID}
  52. VIntent := TJIntent.Create;
  53. VIntent.setAction(TJIntent.JavaClass.ACTION_VIEW);
  54. VIntent.setData(StrToJURI(AURL));
  55. TAndroidHelper.Activity.startActivity(VIntent);
  56. {$ENDIF}
  57. end;
  58. end.