OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/speech/speech_input_bubble.h" | 5 #include "chrome/browser/speech/speech_input_bubble.h" |
6 | 6 |
7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
10 #include "chrome/browser/ui/gtk/browser_toolbar_gtk.h" | 10 #include "chrome/browser/ui/gtk/browser_toolbar_gtk.h" |
11 #include "chrome/browser/ui/gtk/browser_window_gtk.h" | 11 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
12 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" | 12 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" |
13 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" | 13 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
14 #include "chrome/browser/ui/gtk/gtk_theme_service.h" | 14 #include "chrome/browser/ui/gtk/gtk_theme_service.h" |
15 #include "chrome/browser/ui/gtk/gtk_util.h" | 15 #include "chrome/browser/ui/gtk/gtk_util.h" |
16 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" | 16 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" |
17 #include "content/browser/tab_contents/tab_contents.h" | 17 #include "content/browser/tab_contents/tab_contents.h" |
18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
19 #include "grit/theme_resources.h" | 19 #include "grit/theme_resources.h" |
20 #include "media/audio/audio_manager.h" | 20 #include "media/audio/audio_manager.h" |
| 21 #include "ui/base/gtk/gtk_hig_constants.h" |
21 #include "ui/base/gtk/owned_widget_gtk.h" | 22 #include "ui/base/gtk/owned_widget_gtk.h" |
22 #include "ui/base/l10n/l10n_util.h" | 23 #include "ui/base/l10n/l10n_util.h" |
23 #include "ui/base/resource/resource_bundle.h" | 24 #include "ui/base/resource/resource_bundle.h" |
24 #include "ui/gfx/gtk_util.h" | 25 #include "ui/gfx/gtk_util.h" |
25 #include "ui/gfx/rect.h" | 26 #include "ui/gfx/rect.h" |
26 | 27 |
27 namespace { | 28 namespace { |
28 | 29 |
29 const int kBubbleControlVerticalSpacing = 5; | 30 const int kBubbleControlVerticalSpacing = 5; |
30 const int kBubbleControlHorizontalSpacing = 20; | 31 const int kBubbleControlHorizontalSpacing = 20; |
31 const int kIconHorizontalPadding = 10; | 32 const int kIconHorizontalPadding = 10; |
32 const int kButtonBarHorizontalSpacing = 10; | 33 const int kButtonBarHorizontalSpacing = 10; |
33 | 34 |
34 // Use black for text labels since the bubble has white background. | 35 // Use black for text labels since the bubble has white background. |
35 const GdkColor kLabelTextColor = gtk_util::kGdkBlack; | 36 const GdkColor kLabelTextColor = ui::kGdkBlack; |
36 | 37 |
37 // Implementation of SpeechInputBubble for GTK. This shows a speech input bubble | 38 // Implementation of SpeechInputBubble for GTK. This shows a speech input bubble |
38 // on screen. | 39 // on screen. |
39 class SpeechInputBubbleGtk : public SpeechInputBubbleBase, | 40 class SpeechInputBubbleGtk : public SpeechInputBubbleBase, |
40 public BubbleDelegateGtk { | 41 public BubbleDelegateGtk { |
41 public: | 42 public: |
42 SpeechInputBubbleGtk(TabContents* tab_contents, | 43 SpeechInputBubbleGtk(TabContents* tab_contents, |
43 Delegate* delegate, | 44 Delegate* delegate, |
44 const gfx::Rect& element_rect); | 45 const gfx::Rect& element_rect); |
45 ~SpeechInputBubbleGtk(); | 46 ~SpeechInputBubbleGtk(); |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 } | 283 } |
283 | 284 |
284 } // namespace | 285 } // namespace |
285 | 286 |
286 SpeechInputBubble* SpeechInputBubble::CreateNativeBubble( | 287 SpeechInputBubble* SpeechInputBubble::CreateNativeBubble( |
287 TabContents* tab_contents, | 288 TabContents* tab_contents, |
288 Delegate* delegate, | 289 Delegate* delegate, |
289 const gfx::Rect& element_rect) { | 290 const gfx::Rect& element_rect) { |
290 return new SpeechInputBubbleGtk(tab_contents, delegate, element_rect); | 291 return new SpeechInputBubbleGtk(tab_contents, delegate, element_rect); |
291 } | 292 } |
OLD | NEW |