1 | /* $Id: UIDesktopServices_darwin_cocoa.mm 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - Qt GUI - Utility Classes and Functions specific to darwin.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | /* VBox includes */
|
---|
29 | #include "UIDesktopServices_darwin_p.h"
|
---|
30 |
|
---|
31 | /* System includes */
|
---|
32 | #include <Carbon/Carbon.h>
|
---|
33 | #import <AppKit/NSWorkspace.h>
|
---|
34 |
|
---|
35 | /* Create desktop alias using a bookmark stuff. */
|
---|
36 | bool darwinCreateMachineShortcut(NativeNSStringRef pstrSrcFile, NativeNSStringRef pstrDstPath, NativeNSStringRef pstrName, NativeNSStringRef /* pstrUuid */)
|
---|
37 | {
|
---|
38 | RT_NOREF(pstrName);
|
---|
39 | if (!pstrSrcFile || !pstrDstPath)
|
---|
40 | return false;
|
---|
41 |
|
---|
42 | NSError *pErr = nil;
|
---|
43 | NSURL *pSrcUrl = [NSURL fileURLWithPath:pstrSrcFile];
|
---|
44 |
|
---|
45 | NSString *pVmFileName = [pSrcUrl lastPathComponent];
|
---|
46 | NSString *pSrcPath = [NSString stringWithFormat:@"%@/%@", pstrDstPath, [pVmFileName stringByDeletingPathExtension]];
|
---|
47 | NSURL *pDstUrl = [NSURL fileURLWithPath:pSrcPath];
|
---|
48 |
|
---|
49 | bool rc = false;
|
---|
50 |
|
---|
51 | if (!pSrcUrl || !pDstUrl)
|
---|
52 | return false;
|
---|
53 |
|
---|
54 | NSData *pBookmark = [pSrcUrl bookmarkDataWithOptions:NSURLBookmarkCreationSuitableForBookmarkFile
|
---|
55 | includingResourceValuesForKeys:nil
|
---|
56 | relativeToURL:nil
|
---|
57 | error:&pErr];
|
---|
58 |
|
---|
59 | if (pBookmark)
|
---|
60 | {
|
---|
61 | rc = [NSURL writeBookmarkData:pBookmark
|
---|
62 | toURL:pDstUrl
|
---|
63 | options:0
|
---|
64 | error:&pErr];
|
---|
65 | }
|
---|
66 |
|
---|
67 | return rc;
|
---|
68 | }
|
---|
69 |
|
---|
70 | bool darwinOpenInFileManager(NativeNSStringRef pstrFile)
|
---|
71 | {
|
---|
72 | return [[NSWorkspace sharedWorkspace] selectFile:pstrFile inFileViewerRootedAtPath:@""];
|
---|
73 | }
|
---|
74 |
|
---|