summaryrefslogtreecommitdiff
path: root/gtk/gtkcombobox.h
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1998-01-08 04:13:13 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-01-08 04:13:13 +0000
commit5eee6416f547be6ff94599f27582c1862fd6d397 (patch)
treeabb3b8277a1408d6f91e82479b8aa593ecd2c638 /gtk/gtkcombobox.h
parent4ccc005197e8cf1ecdd1b32a68e8a346a5f164db (diff)
downloadgdk-pixbuf-5eee6416f547be6ff94599f27582c1862fd6d397.tar.gz
New widget (GtkComboBox) and fixed gdk_window_init to initialize gdk_root_parent some more
Diffstat (limited to 'gtk/gtkcombobox.h')
-rw-r--r--gtk/gtkcombobox.h66
1 files changed, 66 insertions, 0 deletions
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 <gdk/gdk.h>
+#include <gtk/gtkentry.h>
+
+
+#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__ */