Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Unified Diff: views/controls/combobox/native_combobox_gtk.cc

Issue 113991: Make Combobox portable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/controls/combobox/native_combobox_gtk.h ('k') | views/controls/combobox/native_combobox_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/combobox/native_combobox_gtk.cc
===================================================================
--- views/controls/combobox/native_combobox_gtk.cc (revision 0)
+++ views/controls/combobox/native_combobox_gtk.cc (revision 0)
@@ -0,0 +1,78 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
+// source code is governed by a BSD-style license that can be found in the
+// LICENSE file.
+
+#include "views/controls/combobox/native_combobox_gtk.h"
+
+#include "views/controls/combobox/combobox.h"
+
+namespace views {
+
+////////////////////////////////////////////////////////////////////////////////
+// NativeComboboxGtk, public:
+
+NativeComboboxGtk::NativeComboboxGtk(Combobox* combobox)
+ : combobox_(combobox) {
+}
+
+NativeComboboxGtk::~NativeComboboxGtk() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// NativeComboboxGtk, NativeComboboxWrapper implementation:
+
+void NativeComboboxGtk::UpdateFromModel() {
+ NOTIMPLEMENTED();
+}
+
+void NativeComboboxGtk::UpdateSelectedItem() {
+ NOTIMPLEMENTED();
+}
+
+void NativeComboboxGtk::UpdateEnabled() {
+ NOTIMPLEMENTED();
+}
+
+int NativeComboboxGtk::GetSelectedItem() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+bool NativeComboboxGtk::IsDropdownOpen() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+gfx::Size NativeComboboxGtk::GetPreferredSize() const {
+ NOTIMPLEMENTED();
+ return gfx::Size();
+}
+
+View* NativeComboboxGtk::GetView() {
+ return this;
+}
+
+void NativeComboboxGtk::SetFocus() {
+ Focus();
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// NativeComboboxGtk, NativeControlGtk overrides:
+
+void NativeComboboxGtk::CreateNativeControl() {
+}
+
+void NativeComboboxGtk::NativeControlCreated(GtkWidget* native_control) {
+ NativeControlGtk::NativeControlCreated(native_control);
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// NativeComboboxWrapper, public:
+
+// static
+NativeComboboxWrapper* NativeComboboxWrapper::CreateWrapper(
+ Combobox* combobox) {
+ return new NativeComboboxGtk(combobox);
+}
+
+} // namespace views
« no previous file with comments | « views/controls/combobox/native_combobox_gtk.h ('k') | views/controls/combobox/native_combobox_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698