blob: 7cb1df53966ad994714dfae9e6dfd95ac87dc1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/platform_util.h"
#import <Cocoa/Cocoa.h>
#include "app/l10n_util.h"
#include "base/file_path.h"
#include "base/logging.h"
#include "base/sys_string_conversions.h"
#include "chrome/browser/cocoa/tab_window_controller.h"
#include "googleurl/src/gurl.h"
#include "grit/generated_resources.h"
namespace platform_util {
void ShowItemInFolder(const FilePath& full_path) {
DCHECK_EQ([NSThread currentThread], [NSThread mainThread]);
NSString* path_string = base::SysUTF8ToNSString(full_path.value());
[[NSWorkspace sharedWorkspace] selectFile:path_string
inFileViewerRootedAtPath:nil];
}
void OpenItem(const FilePath& full_path) {
DCHECK_EQ([NSThread currentThread], [NSThread mainThread]);
NSString* path_string = base::SysUTF8ToNSString(full_path.value());
[[NSWorkspace sharedWorkspace] openFile:path_string];
}
void OpenExternal(const GURL& url) {
DCHECK_EQ([NSThread currentThread], [NSThread mainThread]);
NSString* url_string = base::SysUTF8ToNSString(url.spec());
NSURL* ns_url = [NSURL URLWithString:url_string];
[[NSWorkspace sharedWorkspace] openURL:ns_url];
}
gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
return [view window];
}
string16 GetWindowTitle(gfx::NativeWindow window) {
NSString* title = nil;
if ([[window delegate] isKindOfClass:[TabWindowController class]]) {
TabWindowController* delegate =
reinterpret_cast<TabWindowController*>([window delegate]);
title = [delegate selectedTabTitle];
} else {
title = [window title];
}
// If we don't yet have a title, use "Untitled".
if (![title length])
return WideToUTF16(l10n_util::GetString(
IDS_BROWSER_WINDOW_MAC_TAB_UNTITLED));
return base::SysNSStringToUTF16(title);
}
bool IsWindowActive(gfx::NativeWindow window) {
return [window isKeyWindow] || [window isMainWindow];
}
bool IsVisible(gfx::NativeView view) {
// A reasonable approximation of how you'd expect this to behave.
return (view &&
![view isHiddenOrHasHiddenAncestor] &&
[view window] &&
[[view window] isVisible]);
}
} // namespace platform_util
|