Blame gtk/gtkcombobox.h

Packit Service fb6fa5
/* gtkcombobox.h
Packit Service fb6fa5
 * Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * This library is free software; you can redistribute it and/or
Packit Service fb6fa5
 * modify it under the terms of the GNU Library General Public
Packit Service fb6fa5
 * License as published by the Free Software Foundation; either
Packit Service fb6fa5
 * version 2 of the License, or (at your option) any later version.
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * This library is distributed in the hope that it will be useful,
Packit Service fb6fa5
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fb6fa5
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service fb6fa5
 * Library General Public License for more details.
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * You should have received a copy of the GNU Library General Public
Packit Service fb6fa5
 * License along with this library; if not, write to the
Packit Service fb6fa5
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service fb6fa5
 * Boston, MA 02111-1307, USA.
Packit Service fb6fa5
 */
Packit Service fb6fa5
Packit Service fb6fa5
#ifndef __GTK_COMBO_BOX_H__
Packit Service fb6fa5
#define __GTK_COMBO_BOX_H__
Packit Service fb6fa5
Packit Service fb6fa5
#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
Packit Service fb6fa5
#error "Only <gtk/gtk.h> can be included directly."
Packit Service fb6fa5
#endif
Packit Service fb6fa5
Packit Service fb6fa5
#include <gtk/gtkbin.h>
Packit Service fb6fa5
#include <gtk/gtktreemodel.h>
Packit Service fb6fa5
#include <gtk/gtktreeview.h>
Packit Service fb6fa5
Packit Service fb6fa5
G_BEGIN_DECLS
Packit Service fb6fa5
Packit Service fb6fa5
#define GTK_TYPE_COMBO_BOX             (gtk_combo_box_get_type ())
Packit Service fb6fa5
#define GTK_COMBO_BOX(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_COMBO_BOX, GtkComboBox))
Packit Service fb6fa5
#define GTK_COMBO_BOX_CLASS(vtable)    (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_TYPE_COMBO_BOX, GtkComboBoxClass))
Packit Service fb6fa5
#define GTK_IS_COMBO_BOX(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_COMBO_BOX))
Packit Service fb6fa5
#define GTK_IS_COMBO_BOX_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), GTK_TYPE_COMBO_BOX))
Packit Service fb6fa5
#define GTK_COMBO_BOX_GET_CLASS(inst)  (G_TYPE_INSTANCE_GET_CLASS ((inst), GTK_TYPE_COMBO_BOX, GtkComboBoxClass))
Packit Service fb6fa5
Packit Service fb6fa5
typedef struct _GtkComboBox        GtkComboBox;
Packit Service fb6fa5
typedef struct _GtkComboBoxClass   GtkComboBoxClass;
Packit Service fb6fa5
typedef struct _GtkComboBoxPrivate GtkComboBoxPrivate;
Packit Service fb6fa5
Packit Service fb6fa5
struct _GtkComboBox
Packit Service fb6fa5
{
Packit Service fb6fa5
  GtkBin parent_instance;
Packit Service fb6fa5
Packit Service fb6fa5
  /*< private >*/
Packit Service fb6fa5
  GtkComboBoxPrivate *GSEAL (priv);
Packit Service fb6fa5
};
Packit Service fb6fa5
Packit Service fb6fa5
struct _GtkComboBoxClass
Packit Service fb6fa5
{
Packit Service fb6fa5
  GtkBinClass parent_class;
Packit Service fb6fa5
Packit Service fb6fa5
  /* signals */
Packit Service fb6fa5
  void     (* changed)          (GtkComboBox *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
  /* vfuncs */
Packit Service fb6fa5
  gchar *  (* get_active_text)  (GtkComboBox *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
  /* Padding for future expansion */
Packit Service fb6fa5
  void (*_gtk_reserved0) (void);
Packit Service fb6fa5
  void (*_gtk_reserved1) (void);
Packit Service fb6fa5
  void (*_gtk_reserved2) (void);
Packit Service fb6fa5
};
Packit Service fb6fa5
Packit Service fb6fa5
Packit Service fb6fa5
/* construction */
Packit Service fb6fa5
GType         gtk_combo_box_get_type                 (void) G_GNUC_CONST;
Packit Service fb6fa5
GtkWidget    *gtk_combo_box_new                      (void);
Packit Service fb6fa5
GtkWidget    *gtk_combo_box_new_with_entry           (void);
Packit Service fb6fa5
GtkWidget    *gtk_combo_box_new_with_model           (GtkTreeModel *model);
Packit Service fb6fa5
GtkWidget    *gtk_combo_box_new_with_model_and_entry (GtkTreeModel *model);
Packit Service fb6fa5
Packit Service fb6fa5
/* grids */
Packit Service fb6fa5
gint          gtk_combo_box_get_wrap_width         (GtkComboBox *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_set_wrap_width         (GtkComboBox *combo_box,
Packit Service fb6fa5
                                                    gint         width);
Packit Service fb6fa5
gint          gtk_combo_box_get_row_span_column    (GtkComboBox *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_set_row_span_column    (GtkComboBox *combo_box,
Packit Service fb6fa5
                                                    gint         row_span);
Packit Service fb6fa5
gint          gtk_combo_box_get_column_span_column (GtkComboBox *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_set_column_span_column (GtkComboBox *combo_box,
Packit Service fb6fa5
                                                    gint         column_span);
Packit Service fb6fa5
Packit Service fb6fa5
gboolean      gtk_combo_box_get_add_tearoffs       (GtkComboBox *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_set_add_tearoffs       (GtkComboBox *combo_box,
Packit Service fb6fa5
						    gboolean     add_tearoffs);
Packit Service fb6fa5
Packit Service fb6fa5
const gchar * gtk_combo_box_get_title              (GtkComboBox *combo_box);
Packit Service fb6fa5
void                  gtk_combo_box_set_title      (GtkComboBox *combo_box,
Packit Service fb6fa5
					            const gchar *title);
Packit Service fb6fa5
Packit Service fb6fa5
gboolean      gtk_combo_box_get_focus_on_click     (GtkComboBox *combo);
Packit Service fb6fa5
void          gtk_combo_box_set_focus_on_click     (GtkComboBox *combo,
Packit Service fb6fa5
						    gboolean     focus_on_click);
Packit Service fb6fa5
Packit Service fb6fa5
/* get/set active item */
Packit Service fb6fa5
gint          gtk_combo_box_get_active       (GtkComboBox     *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_set_active       (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              gint             index_);
Packit Service fb6fa5
gboolean      gtk_combo_box_get_active_iter  (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              GtkTreeIter     *iter);
Packit Service fb6fa5
void          gtk_combo_box_set_active_iter  (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              GtkTreeIter     *iter);
Packit Service fb6fa5
Packit Service fb6fa5
/* getters and setters */
Packit Service fb6fa5
void          gtk_combo_box_set_model        (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              GtkTreeModel    *model);
Packit Service fb6fa5
GtkTreeModel *gtk_combo_box_get_model        (GtkComboBox     *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
GtkTreeViewRowSeparatorFunc gtk_combo_box_get_row_separator_func (GtkComboBox                *combo_box);
Packit Service fb6fa5
void                        gtk_combo_box_set_row_separator_func (GtkComboBox                *combo_box,
Packit Service fb6fa5
								  GtkTreeViewRowSeparatorFunc func,
Packit Service fb6fa5
								  gpointer                    data,
Packit Service fb6fa5
								  GDestroyNotify              destroy);
Packit Service fb6fa5
Packit Service fb6fa5
void               gtk_combo_box_set_button_sensitivity (GtkComboBox        *combo_box,
Packit Service fb6fa5
							 GtkSensitivityType  sensitivity);
Packit Service fb6fa5
GtkSensitivityType gtk_combo_box_get_button_sensitivity (GtkComboBox        *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
gboolean           gtk_combo_box_get_has_entry          (GtkComboBox        *combo_box);
Packit Service fb6fa5
void               gtk_combo_box_set_entry_text_column  (GtkComboBox        *combo_box,
Packit Service fb6fa5
							 gint                text_column);
Packit Service fb6fa5
gint               gtk_combo_box_get_entry_text_column  (GtkComboBox        *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
#if !defined (GTK_DISABLE_DEPRECATED) || defined (GTK_COMPILATION)
Packit Service fb6fa5
Packit Service fb6fa5
/* convenience -- text */
Packit Service fb6fa5
GtkWidget    *gtk_combo_box_new_text         (void);
Packit Service fb6fa5
void          gtk_combo_box_append_text      (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              const gchar     *text);
Packit Service fb6fa5
void          gtk_combo_box_insert_text      (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              gint             position,
Packit Service fb6fa5
                                              const gchar     *text);
Packit Service fb6fa5
void          gtk_combo_box_prepend_text     (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              const gchar     *text);
Packit Service fb6fa5
void          gtk_combo_box_remove_text      (GtkComboBox     *combo_box,
Packit Service fb6fa5
                                              gint             position);
Packit Service fb6fa5
gchar        *gtk_combo_box_get_active_text  (GtkComboBox     *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
#endif
Packit Service fb6fa5
Packit Service fb6fa5
/* programmatic control */
Packit Service fb6fa5
void          gtk_combo_box_popup            (GtkComboBox     *combo_box);
Packit Service fb6fa5
void          gtk_combo_box_popdown          (GtkComboBox     *combo_box);
Packit Service fb6fa5
AtkObject*    gtk_combo_box_get_popup_accessible (GtkComboBox *combo_box);
Packit Service fb6fa5
Packit Service fb6fa5
Packit Service fb6fa5
G_END_DECLS
Packit Service fb6fa5
Packit Service fb6fa5
#endif /* __GTK_COMBO_BOX_H__ */