OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/platform_util.h" | 5 #include "chrome/browser/platform_util.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "app/gtk_util.h" | 9 #include "app/gtk_util.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/process_util.h" | 11 #include "base/process_util.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/common/process_watcher.h" | 13 #include "chrome/common/process_watcher.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 | 15 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 } | 58 } |
59 | 59 |
60 void OpenItem(const FilePath& full_path) { | 60 void OpenItem(const FilePath& full_path) { |
61 XDGOpen(full_path.value()); | 61 XDGOpen(full_path.value()); |
62 } | 62 } |
63 | 63 |
64 void OpenExternal(const GURL& url) { | 64 void OpenExternal(const GURL& url) { |
65 XDGOpen(url.spec()); | 65 XDGOpen(url.spec()); |
66 } | 66 } |
67 | 67 |
68 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { | |
69 // A detached widget won't have a toplevel window as an ancestor, so we can't | |
70 // assume that the query for toplevel will return a window. | |
71 GtkWidget* toplevel = gtk_widget_get_ancestor(view, GTK_TYPE_WINDOW); | |
72 return GTK_IS_WINDOW(toplevel) ? GTK_WINDOW(toplevel) : NULL; | |
73 } | |
74 | |
75 bool IsWindowActive(gfx::NativeWindow window) { | |
76 return gtk_window_is_active(window); | |
77 } | |
78 | |
79 bool IsVisible(gfx::NativeView view) { | |
80 return GTK_WIDGET_VISIBLE(view); | |
81 } | |
82 | |
83 void SimpleErrorBox(gfx::NativeWindow parent, | |
84 const string16& title, | |
85 const string16& message) { | |
86 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL, | |
87 GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", UTF16ToUTF8(message).c_str()); | |
88 gtk_util::ApplyMessageDialogQuirks(dialog); | |
89 gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str()); | |
90 | |
91 g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL); | |
92 gtk_widget_show_all(dialog); | |
93 | |
94 // Make sure it's big enough to show the title. | |
95 GtkRequisition req; | |
96 gtk_widget_size_request(dialog, &req); | |
97 int width; | |
98 gtk_util::GetWidgetSizeFromCharacters(dialog, title.length(), 0, | |
99 &width, NULL); | |
100 // The fudge factor accounts for extra space needed by the frame | |
101 // decorations as well as width differences between average text and the | |
102 // actual title text. | |
103 width = width * 1.2 + 50; | |
104 | |
105 if (width > req.width) | |
106 gtk_widget_set_size_request(dialog, width, -1); | |
107 } | |
108 | |
109 /* Warning: this may be either Linux or ChromeOS */ | |
110 string16 GetVersionStringModifier() { | |
111 char* env = getenv("CHROME_VERSION_EXTRA"); | |
112 if (!env) | |
113 return string16(); | |
114 std::string modifier(env); | |
115 | |
116 #if defined(GOOGLE_CHROME_BUILD) | |
117 // Only ever return "", "unknown", "dev" or "beta" in a branded build. | |
118 if (modifier == "unstable") // linux version of "dev" | |
119 modifier = "dev"; | |
120 if (modifier == "stable") { | |
121 modifier = ""; | |
122 } else if ((modifier == "dev") || (modifier == "beta")) { | |
123 // do nothing. | |
124 } else { | |
125 modifier = "unknown"; | |
126 } | |
127 #endif | |
128 | |
129 return ASCIIToUTF16(modifier); | |
130 } | |
131 | |
132 } // namespace platform_util | 68 } // namespace platform_util |
OLD | NEW |