From 5eee6416f547be6ff94599f27582c1862fd6d397 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Thu, 8 Jan 1998 04:13:13 +0000 Subject: New widget (GtkComboBox) and fixed gdk_window_init to initialize gdk_root_parent some more --- gtk/gtkcombobox.h | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 gtk/gtkcombobox.h (limited to 'gtk/gtkcombobox.h') diff --git a/gtk/gtkcombobox.h b/gtk/gtkcombobox.h new file mode 100644 index 000000000..4aab5548c --- /dev/null +++ b/gtk/gtkcombobox.h @@ -0,0 +1,66 @@ +/* GTK - The GIMP Toolkit + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ +#ifndef __GTK_COMBO_H__ +#define __GTK_COMBO_H__ + + +#include +#include + + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + +#define GTK_COMBO_BOX(obj) GTK_CHECK_CAST (obj, gtk_combo_box_get_type (), GtkComboBox) +#define GTK_COMBO_BOX_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_combo_box_get_type (), GtkComboBoxClass) +#define GTK_IS_COMBO_BOX(obj) GTK_CHECK_TYPE (obj, gtk_combo_box_get_type ()) + + +typedef struct _GtkComboBox GtkComboBox; +typedef struct _GtkComboBoxClass GtkComboBoxClass; + +struct _GtkComboBox +{ + GtkEntry parent_widget; + GtkWidget *popdown; + gboolean menu_is_down; +}; + +struct _GtkComboBoxClass +{ + GtkEntryClass parent_class; +}; + + +guint gtk_combo_box_get_type (void); +/* These GList's should be lists of strings that should be placed + in the popdown menu */ +GtkWidget* gtk_combo_box_new (GList *popdown_strings); +GtkWidget* gtk_combo_box_new_with_max_length (GList *popdown_strings, + guint16 max); +void gtk_combo_box_set_popdown_strings(GtkComboBox *combobox, + GList *popdown_strings); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + +#endif /* __GTK_ENTRY_H__ */ -- cgit v1.2.1