OLD | NEW |
1 // Copyright (c) 2010 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_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ |
6 #define CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ | 6 #define CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include "chrome/browser/ui/gtk/content_setting_bubble_gtk.h" |
10 | 10 // TODO(msw): remove this file once all includes have been updated. |
11 #include "app/gtk_signal.h" | |
12 #include "base/scoped_ptr.h" | |
13 #include "chrome/browser/gtk/info_bubble_gtk.h" | |
14 #include "chrome/common/content_settings_types.h" | |
15 #include "chrome/common/notification_observer.h" | |
16 #include "chrome/common/notification_registrar.h" | |
17 | |
18 class ContentSettingBubbleModel; | |
19 class Profile; | |
20 class TabContents; | |
21 | |
22 // ContentSettingBubbleGtk is used when the user turns on different kinds of | |
23 // content blocking (e.g. "block images"). An icon appears in the location bar, | |
24 // and when clicked, an instance of this class is created specialized for the | |
25 // type of content being blocked. | |
26 class ContentSettingBubbleGtk : public InfoBubbleGtkDelegate, | |
27 public NotificationObserver { | |
28 public: | |
29 ContentSettingBubbleGtk( | |
30 GtkWidget* anchor, | |
31 InfoBubbleGtkDelegate* delegate, | |
32 ContentSettingBubbleModel* content_setting_bubble_model, | |
33 Profile* profile, TabContents* tab_contents); | |
34 virtual ~ContentSettingBubbleGtk(); | |
35 | |
36 // Dismisses the infobubble. | |
37 void Close(); | |
38 | |
39 private: | |
40 typedef std::map<GtkWidget*, int> PopupMap; | |
41 | |
42 // InfoBubbleGtkDelegate: | |
43 virtual void InfoBubbleClosing(InfoBubbleGtk* info_bubble, | |
44 bool closed_by_escape); | |
45 | |
46 // NotificationObserver: | |
47 virtual void Observe(NotificationType type, | |
48 const NotificationSource& source, | |
49 const NotificationDetails& details); | |
50 | |
51 // Builds the info bubble and all the widgets that it displays. | |
52 void BuildBubble(); | |
53 | |
54 // Widget callback methods. | |
55 CHROMEGTK_CALLBACK_1(ContentSettingBubbleGtk, void, OnPopupIconButtonPress, | |
56 GdkEventButton*); | |
57 CHROMEGTK_CALLBACK_0(ContentSettingBubbleGtk, void, OnPopupLinkClicked); | |
58 CHROMEGTK_CALLBACK_0(ContentSettingBubbleGtk, void, OnRadioToggled); | |
59 CHROMEGTK_CALLBACK_0(ContentSettingBubbleGtk, void, OnCustomLinkClicked); | |
60 CHROMEGTK_CALLBACK_0(ContentSettingBubbleGtk, void, OnManageLinkClicked); | |
61 CHROMEGTK_CALLBACK_0(ContentSettingBubbleGtk, void, OnCloseButtonClicked); | |
62 | |
63 // We position the bubble near this widget. | |
64 GtkWidget* anchor_; | |
65 | |
66 // The active profile. | |
67 Profile* profile_; | |
68 | |
69 // The active tab contents. | |
70 TabContents* tab_contents_; | |
71 | |
72 // A registrar for listening for TAB_CONTENTS_DESTROYED notifications. | |
73 NotificationRegistrar registrar_; | |
74 | |
75 // Pass on delegate messages to this. | |
76 InfoBubbleGtkDelegate* delegate_; | |
77 | |
78 // Provides data for this bubble. | |
79 scoped_ptr<ContentSettingBubbleModel> content_setting_bubble_model_; | |
80 | |
81 // The info bubble. | |
82 InfoBubbleGtk* info_bubble_; | |
83 | |
84 // Stored controls so we can figure out what was clicked. | |
85 PopupMap popup_links_; | |
86 PopupMap popup_icons_; | |
87 | |
88 typedef std::vector<GtkWidget*> RadioGroupGtk; | |
89 RadioGroupGtk radio_group_gtk_; | |
90 }; | |
91 | 11 |
92 #endif // CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ | 12 #endif // CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ |
OLD | NEW |