OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/platform_util.h" |
| 6 |
| 7 #include <gtk/gtk.h> |
| 8 |
| 9 #include "app/gtk_util.h" |
| 10 #include "base/file_util.h" |
| 11 #include "base/process_util.h" |
| 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/common/process_watcher.h" |
| 14 #include "gfx/native_widget_types.h" |
| 15 #include "googleurl/src/gurl.h" |
| 16 |
| 17 namespace platform_util { |
| 18 |
| 19 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { |
| 20 // A detached widget won't have a toplevel window as an ancestor, so we can't |
| 21 // assume that the query for toplevel will return a window. |
| 22 GtkWidget* toplevel = gtk_widget_get_ancestor(view, GTK_TYPE_WINDOW); |
| 23 return GTK_IS_WINDOW(toplevel) ? GTK_WINDOW(toplevel) : NULL; |
| 24 } |
| 25 |
| 26 bool IsWindowActive(gfx::NativeWindow window) { |
| 27 return gtk_window_is_active(window); |
| 28 } |
| 29 |
| 30 bool IsVisible(gfx::NativeView view) { |
| 31 return GTK_WIDGET_VISIBLE(view); |
| 32 } |
| 33 |
| 34 void SimpleErrorBox(gfx::NativeWindow parent, |
| 35 const string16& title, |
| 36 const string16& message) { |
| 37 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL, |
| 38 GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", UTF16ToUTF8(message).c_str()); |
| 39 gtk_util::ApplyMessageDialogQuirks(dialog); |
| 40 gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str()); |
| 41 |
| 42 g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL); |
| 43 gtk_widget_show_all(dialog); |
| 44 |
| 45 // Make sure it's big enough to show the title. |
| 46 GtkRequisition req; |
| 47 gtk_widget_size_request(dialog, &req); |
| 48 int width; |
| 49 gtk_util::GetWidgetSizeFromCharacters(dialog, title.length(), 0, |
| 50 &width, NULL); |
| 51 // The fudge factor accounts for extra space needed by the frame |
| 52 // decorations as well as width differences between average text and the |
| 53 // actual title text. |
| 54 width = width * 1.2 + 50; |
| 55 |
| 56 if (width > req.width) |
| 57 gtk_widget_set_size_request(dialog, width, -1); |
| 58 } |
| 59 |
| 60 /* Warning: this may be either Linux or ChromeOS */ |
| 61 string16 GetVersionStringModifier() { |
| 62 char* env = getenv("CHROME_VERSION_EXTRA"); |
| 63 if (!env) |
| 64 return string16(); |
| 65 std::string modifier(env); |
| 66 |
| 67 #if defined(GOOGLE_CHROME_BUILD) |
| 68 // Only ever return "", "unknown", "dev" or "beta" in a branded build. |
| 69 if (modifier == "unstable") // linux version of "dev" |
| 70 modifier = "dev"; |
| 71 if (modifier == "stable") { |
| 72 modifier = ""; |
| 73 } else if ((modifier == "dev") || (modifier == "beta")) { |
| 74 // do nothing. |
| 75 } else { |
| 76 modifier = "unknown"; |
| 77 } |
| 78 #endif |
| 79 |
| 80 return ASCIIToUTF16(modifier); |
| 81 } |
| 82 |
| 83 } // namespace platform_util |
OLD | NEW |