| 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_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <pango/pango.h> |
| 10 | 10 |
| 11 #include "base/string16.h" | |
| 12 #include "chrome/browser/autofill/autofill_popup_view.h" | 11 #include "chrome/browser/autofill/autofill_popup_view.h" |
| 12 #include "ui/base/glib/glib_integers.h" |
| 13 #include "ui/base/gtk/gtk_signal.h" | 13 #include "ui/base/gtk/gtk_signal.h" |
| 14 #include "ui/gfx/font.h" |
| 14 | 15 |
| 15 #include <vector> | 16 namespace gfx { |
| 17 class Rect; |
| 18 } |
| 19 |
| 20 typedef struct _GdkEventExpose GdkEventExpose; |
| 21 typedef struct _GdkColor GdkColor; |
| 22 typedef struct _GtkWidget GtkWidget; |
| 16 | 23 |
| 17 class AutofillPopupViewGtk : public AutofillPopupView { | 24 class AutofillPopupViewGtk : public AutofillPopupView { |
| 18 public: | 25 public: |
| 19 AutofillPopupViewGtk(content::WebContents* web_contents, GtkWidget* parent); | 26 AutofillPopupViewGtk(content::WebContents* web_contents, GtkWidget* parent); |
| 20 virtual ~AutofillPopupViewGtk(); | 27 virtual ~AutofillPopupViewGtk(); |
| 21 | 28 |
| 22 // AutofillPopupView implementations. | 29 // AutofillPopupView implementations. |
| 23 virtual void Hide() OVERRIDE; | 30 virtual void Hide() OVERRIDE; |
| 24 virtual void Show(const std::vector<string16>& autofill_values, | 31 virtual void ShowInternal() OVERRIDE; |
| 25 const std::vector<string16>& autofill_labels, | |
| 26 const std::vector<string16>& autofill_icons, | |
| 27 const std::vector<int>& autofill_unique_ids, | |
| 28 int separator_index) OVERRIDE; | |
| 29 | 32 |
| 30 private: | 33 private: |
| 31 CHROMEGTK_CALLBACK_1(AutofillPopupViewGtk, gboolean, HandleExpose, | 34 CHROMEGTK_CALLBACK_1(AutofillPopupViewGtk, gboolean, HandleExpose, |
| 32 GdkEventExpose*); | 35 GdkEventExpose*); |
| 33 | 36 |
| 37 // Setup the pango layout to display the autofill results. |
| 38 void SetupLayout(const gfx::Rect& window_rect, const GdkColor& text_color); |
| 39 |
| 34 GtkWidget* parent_; // Weak reference. | 40 GtkWidget* parent_; // Weak reference. |
| 35 GtkWidget* window_; // Strong refence. | 41 GtkWidget* window_; // Strong reference. |
| 42 PangoLayout* layout_; // Strong reference |
| 43 gfx::Font font_; |
| 44 |
| 45 // The height of each individual Autofill popup row. |
| 46 int row_height_; |
| 36 }; | 47 }; |
| 37 | 48 |
| 38 #endif // CHROME_BROWSER_UI_GTK_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ | 49 #endif // CHROME_BROWSER_UI_GTK_AUTOFILL_AUTOFILL_POPUP_VIEW_GTK_H_ |
| OLD | NEW |