OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "chrome/browser/ui/gtk/infobars/infobar_gtk.h" | 9 #include "chrome/browser/ui/gtk/infobars/infobar_gtk.h" |
10 #include "ui/gfx/animation/animation_delegate.h" | 10 #include "ui/gfx/animation/animation_delegate.h" |
11 | 11 |
12 class TranslateInfoBarDelegate; | 12 class TranslateInfoBarDelegate; |
13 | 13 |
14 // This class contains some of the base functionality that translate infobars | 14 // This class contains some of the base functionality that translate infobars |
15 // use. | 15 // use. |
16 class TranslateInfoBarBase : public InfoBarGtk { | 16 class TranslateInfoBarBase : public InfoBarGtk { |
17 protected: | 17 protected: |
18 explicit TranslateInfoBarBase(scoped_ptr<TranslateInfoBarDelegate> delegate); | 18 TranslateInfoBarBase(InfoBarService* owner, |
| 19 TranslateInfoBarDelegate* delegate); |
19 virtual ~TranslateInfoBarBase(); | 20 virtual ~TranslateInfoBarBase(); |
20 | 21 |
21 // InfoBarGtk: | 22 // InfoBarGtk: |
22 virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE; | 23 virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE; |
23 virtual void PlatformSpecificSetOwner() OVERRIDE; | |
24 virtual void GetTopColor(InfoBarDelegate::Type type, | 24 virtual void GetTopColor(InfoBarDelegate::Type type, |
25 double* r, double* g, double* b) OVERRIDE; | 25 double* r, double* g, double* b) OVERRIDE; |
26 virtual void GetBottomColor(InfoBarDelegate::Type type, | 26 virtual void GetBottomColor(InfoBarDelegate::Type type, |
27 double* r, double* g, double* b) OVERRIDE; | 27 double* r, double* g, double* b) OVERRIDE; |
| 28 virtual void InitWidgets() OVERRIDE; |
28 | 29 |
29 // Sub-classes that want to have the options menu button showing should | 30 // Sub-classes that want to have the options menu button showing should |
30 // override and return true. | 31 // override and return true. |
31 virtual bool ShowOptionsMenuButton() const; | 32 virtual bool ShowOptionsMenuButton() const; |
32 | 33 |
33 // Creates a combobox that displays the languages currently available. | 34 // Creates a combobox that displays the languages currently available. |
34 // |selected_language| is the language index (as used in the | 35 // |selected_language| is the language index (as used in the |
35 // TranslateInfoBarDelegate) that should be selected initially. | 36 // TranslateInfoBarDelegate) that should be selected initially. |
36 // |exclude_language| is the language index of the language that should not be | 37 // |exclude_language| is the language index of the language that should not be |
37 // included in the list (TranslateInfoBarDelegate::kNoIndex means no language | 38 // included in the list (TranslateInfoBarDelegate::kNoIndex means no language |
(...skipping 28 matching lines...) Expand all Loading... |
66 // Changes the color of the background from normal to error color and back. | 67 // Changes the color of the background from normal to error color and back. |
67 scoped_ptr<gfx::SlideAnimation> background_color_animation_; | 68 scoped_ptr<gfx::SlideAnimation> background_color_animation_; |
68 | 69 |
69 // The model for the current menu displayed. | 70 // The model for the current menu displayed. |
70 scoped_ptr<ui::MenuModel> menu_model_; | 71 scoped_ptr<ui::MenuModel> menu_model_; |
71 | 72 |
72 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBarBase); | 73 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBarBase); |
73 }; | 74 }; |
74 | 75 |
75 #endif // CHROME_BROWSER_UI_GTK_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ | 76 #endif // CHROME_BROWSER_UI_GTK_INFOBARS_TRANSLATE_INFOBAR_BASE_GTK_H_ |
OLD | NEW |