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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_
6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_
8 #include "base/compiler_specific.h"
9 #include "chrome/browser/ui/views/infobars/infobar_view.h"
10 #include "ui/views/controls/button/menu_button_listener.h"
13 class ExtensionInfoBarDelegate
;
20 class ExtensionInfoBar
: public InfoBarView
,
21 public views::MenuButtonListener
{
23 ExtensionInfoBar(scoped_ptr
<ExtensionInfoBarDelegate
> delegate
,
27 virtual ~ExtensionInfoBar();
30 virtual void Layout() OVERRIDE
;
31 virtual void ViewHierarchyChanged(
32 const ViewHierarchyChangedDetails
& details
) OVERRIDE
;
33 virtual int ContentMinimumWidth() const OVERRIDE
;
35 // views::MenuButtonListener:
36 virtual void OnMenuButtonClicked(views::View
* source
,
37 const gfx::Point
& point
) OVERRIDE
;
39 void OnImageLoaded(const gfx::Image
& image
);
40 ExtensionInfoBarDelegate
* GetDelegate();
41 const ExtensionInfoBarDelegate
* GetDelegate() const;
43 // Returns the width of all content other than the extension view. Layout()
44 // uses this to determine how much space the extension view can take.
45 int NonExtensionViewWidth() const;
49 // The infobar icon used for the extension infobar. The icon can be either a
50 // plain image (in which case |icon_as_image_| is set) or a dropdown menu (in
51 // which case |icon_as_menu_| is set).
52 // The icon is a dropdown menu if the extension showing the infobar shows
53 // configure context menus.
54 views::View
* infobar_icon_
;
56 // The dropdown menu for accessing the contextual extension actions.
57 // It is non-NULL if the |infobar_icon_| is a menu button and in that case
58 // |icon_as_menu_ == infobar_icon_|.
59 views::MenuButton
* icon_as_menu_
;
61 // The image view for the icon.
62 // It is non-NULL if |infobar_icon_| is an image and in that case
63 // |icon_as_image_ == infobar_icon_|.
64 views::ImageView
* icon_as_image_
;
66 base::WeakPtrFactory
<ExtensionInfoBar
> weak_ptr_factory_
;
68 DISALLOW_COPY_AND_ASSIGN(ExtensionInfoBar
);
71 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_