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 #ifndef CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/translate/translate_infobar_view.h" | 9 #include "chrome/browser/translate/translate_infobar_view.h" |
10 #include "chrome/browser/ui/gtk/infobar_gtk.h" | 10 #include "chrome/browser/ui/gtk/infobar_gtk.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // Sub-classes that want to have the options menu button showing sould | 44 // Sub-classes that want to have the options menu button showing sould |
45 // override and return true. | 45 // override and return true. |
46 virtual bool ShowOptionsMenuButton() const; | 46 virtual bool ShowOptionsMenuButton() const; |
47 | 47 |
48 // Creates a label with the appropriate font and color for the translate | 48 // Creates a label with the appropriate font and color for the translate |
49 // infobars. | 49 // infobars. |
50 GtkWidget* CreateLabel(const std::string& text); | 50 GtkWidget* CreateLabel(const std::string& text); |
51 | 51 |
52 // Creates a combobox that displays the languages currently available. | 52 // Creates a combobox that displays the languages currently available. |
53 // |selected_language| is the language index (as used in the | 53 // |selected_language| is the language index (as used in the |
54 // TranslateInfoDelegate) that should be selected initially. | 54 // TranslateInfoBarDelegate) that should be selected initially. |
55 // |exclude_language| is the language index of the language that should not be | 55 // |exclude_language| is the language index of the language that should not be |
56 // included in the list (-1 means no language excluded). | 56 // included in the list (-1 means no language excluded). |
57 GtkWidget* CreateLanguageCombobox(int selected_language, | 57 GtkWidget* CreateLanguageCombobox(int selected_language, |
58 int exclude_language); | 58 int exclude_language); |
59 | 59 |
60 // Given an above-constructed combobox, returns the currently selected | 60 // Given an above-constructed combobox, returns the currently selected |
61 // language id. | 61 // language id. |
62 static int GetLanguageComboboxActiveId(GtkComboBox* combo); | 62 static int GetLanguageComboboxActiveId(GtkComboBox* combo); |
63 | 63 |
64 // Convenience to retrieve the TranslateInfoBarDelegate for this infobar. | 64 // Convenience to retrieve the TranslateInfoBarDelegate for this infobar. |
(...skipping 15 matching lines...) Expand all Loading... |
80 // When 1, the infobar background should be pure WARNING_TYPE. | 80 // When 1, the infobar background should be pure WARNING_TYPE. |
81 double background_error_percent_; | 81 double background_error_percent_; |
82 | 82 |
83 // Changes the color of the background from normal to error color and back. | 83 // Changes the color of the background from normal to error color and back. |
84 scoped_ptr<ui::SlideAnimation> background_color_animation_; | 84 scoped_ptr<ui::SlideAnimation> background_color_animation_; |
85 | 85 |
86 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBarBase); | 86 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBarBase); |
87 }; | 87 }; |
88 | 88 |
89 #endif // CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ | 89 #endif // CHROME_BROWSER_UI_GTK_TRANSLATE_TRANSLATE_INFOBAR_BASE_GTK_H_ |
OLD | NEW |