mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 14:10:30 +00:00
Add GtkListBox
This is basically an import/rename of EggListBox from the row-widget branch of egg-list-box.
This commit is contained in:
parent
d919c3ffbb
commit
e319867f80
@ -265,6 +265,7 @@ gtk_public_h_sources = \
|
||||
gtklayout.h \
|
||||
gtklevelbar.h \
|
||||
gtklinkbutton.h \
|
||||
gtklistbox.h \
|
||||
gtkliststore.h \
|
||||
gtklockbutton.h \
|
||||
gtkmain.h \
|
||||
@ -757,6 +758,7 @@ gtk_base_c_sources = \
|
||||
gtklayout.c \
|
||||
gtklevelbar.c \
|
||||
gtklinkbutton.c \
|
||||
gtklistbox.c \
|
||||
gtkliststore.c \
|
||||
gtklockbutton.c \
|
||||
gtkmain.c \
|
||||
|
@ -25,6 +25,7 @@ gtka11y_c_sources = \
|
||||
gtklabelaccessible.c \
|
||||
gtklevelbaraccessible.c \
|
||||
gtklinkbuttonaccessible.c \
|
||||
gtklistboxaccessible.c \
|
||||
gtklockbuttonaccessible.c \
|
||||
gtkmenuaccessible.c \
|
||||
gtkmenushellaccessible.c \
|
||||
@ -72,6 +73,7 @@ gtka11yinclude_HEADERS = \
|
||||
gtklabelaccessible.h \
|
||||
gtklevelbaraccessible.h \
|
||||
gtklinkbuttonaccessible.h \
|
||||
gtklistboxaccessible.h \
|
||||
gtklockbuttonaccessible.h \
|
||||
gtkmenuaccessible.h \
|
||||
gtkmenuitemaccessible.h \
|
||||
@ -107,6 +109,7 @@ gtka11y_private_h_sources = \
|
||||
gtkcolorswatchaccessibleprivate.h \
|
||||
gtkiconviewaccessibleprivate.h \
|
||||
gtklabelaccessibleprivate.h \
|
||||
gtklistboxaccessibleprivate.h \
|
||||
gtklockbuttonaccessibleprivate.h \
|
||||
gtktextviewaccessibleprivate.h \
|
||||
gtktreeviewaccessibleprivate.h \
|
||||
|
185
gtk/a11y/gtklistboxaccessible.c
Normal file
185
gtk/a11y/gtklistboxaccessible.c
Normal file
@ -0,0 +1,185 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtklistboxaccessibleprivate.h"
|
||||
|
||||
#include "gtk/gtklistbox.h"
|
||||
|
||||
static void atk_selection_interface_init (AtkSelectionIface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GtkListBoxAccessible, gtk_list_box_accessible, GTK_TYPE_CONTAINER_ACCESSIBLE,
|
||||
G_IMPLEMENT_INTERFACE (ATK_TYPE_SELECTION, atk_selection_interface_init))
|
||||
|
||||
static void
|
||||
gtk_list_box_accessible_init (GtkListBoxAccessible *accessible)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_list_box_accessible_initialize (AtkObject *obj,
|
||||
gpointer data)
|
||||
{
|
||||
ATK_OBJECT_CLASS (gtk_list_box_accessible_parent_class)->initialize (obj, data);
|
||||
|
||||
obj->role = ATK_ROLE_LIST_BOX;
|
||||
}
|
||||
|
||||
static AtkStateSet*
|
||||
gtk_list_box_accessible_ref_state_set (AtkObject *obj)
|
||||
{
|
||||
AtkStateSet *state_set;
|
||||
GtkWidget *widget;
|
||||
|
||||
state_set = ATK_OBJECT_CLASS (gtk_list_box_accessible_parent_class)->ref_state_set (obj);
|
||||
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
||||
|
||||
if (widget != NULL)
|
||||
atk_state_set_add_state (state_set, ATK_STATE_MANAGES_DESCENDANTS);
|
||||
|
||||
return state_set;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_list_box_accessible_class_init (GtkListBoxAccessibleClass *klass)
|
||||
{
|
||||
AtkObjectClass *object_class = ATK_OBJECT_CLASS (klass);
|
||||
|
||||
object_class->initialize = gtk_list_box_accessible_initialize;
|
||||
object_class->ref_state_set = gtk_list_box_accessible_ref_state_set;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_list_box_accessible_add_selection (AtkSelection *selection,
|
||||
gint idx)
|
||||
{
|
||||
GtkWidget *box;
|
||||
GtkListBoxRow *row;
|
||||
|
||||
box = gtk_accessible_get_widget (GTK_ACCESSIBLE (selection));
|
||||
if (box == NULL)
|
||||
return FALSE;
|
||||
|
||||
row = gtk_list_box_get_row_at_index (GTK_LIST_BOX (box), idx);
|
||||
if (row)
|
||||
{
|
||||
gtk_list_box_select_row (GTK_LIST_BOX (box), row);
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_list_box_accessible_clear_selection (AtkSelection *selection)
|
||||
{
|
||||
GtkWidget *box;
|
||||
|
||||
box = gtk_accessible_get_widget (GTK_ACCESSIBLE (selection));
|
||||
if (box == NULL)
|
||||
return FALSE;
|
||||
|
||||
gtk_list_box_select_row (GTK_LIST_BOX (box), NULL);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static AtkObject *
|
||||
gtk_list_box_accessible_ref_selection (AtkSelection *selection,
|
||||
gint idx)
|
||||
{
|
||||
GtkWidget *box;
|
||||
GtkListBoxRow *row;
|
||||
AtkObject *accessible;
|
||||
|
||||
if (idx != 0)
|
||||
return NULL;
|
||||
|
||||
box = gtk_accessible_get_widget (GTK_ACCESSIBLE (selection));
|
||||
if (box == NULL)
|
||||
return NULL;
|
||||
|
||||
row = gtk_list_box_get_selected_row (GTK_LIST_BOX (box));
|
||||
if (row == NULL)
|
||||
return NULL;
|
||||
|
||||
accessible = gtk_widget_get_accessible (GTK_WIDGET (row));
|
||||
g_object_ref (accessible);
|
||||
return accessible;
|
||||
}
|
||||
|
||||
static gint
|
||||
gtk_list_box_accessible_get_selection_count (AtkSelection *selection)
|
||||
{
|
||||
GtkWidget *box;
|
||||
GtkListBoxRow *row;
|
||||
|
||||
box = gtk_accessible_get_widget (GTK_ACCESSIBLE (selection));
|
||||
if (box == NULL)
|
||||
return 0;
|
||||
|
||||
row = gtk_list_box_get_selected_row (GTK_LIST_BOX (box));
|
||||
if (row == NULL)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_list_box_accessible_is_child_selected (AtkSelection *selection,
|
||||
gint idx)
|
||||
{
|
||||
GtkWidget *box;
|
||||
GtkListBoxRow *row;
|
||||
|
||||
box = gtk_accessible_get_widget (GTK_ACCESSIBLE (selection));
|
||||
if (box == NULL)
|
||||
return FALSE;
|
||||
|
||||
row = gtk_list_box_get_selected_row (GTK_LIST_BOX (box));
|
||||
if (row == NULL)
|
||||
return FALSE;
|
||||
|
||||
return row == gtk_list_box_get_row_at_index (GTK_LIST_BOX (box), idx);
|
||||
}
|
||||
|
||||
static void atk_selection_interface_init (AtkSelectionIface *iface)
|
||||
{
|
||||
iface->add_selection = gtk_list_box_accessible_add_selection;
|
||||
iface->clear_selection = gtk_list_box_accessible_clear_selection;
|
||||
iface->ref_selection = gtk_list_box_accessible_ref_selection;
|
||||
iface->get_selection_count = gtk_list_box_accessible_get_selection_count;
|
||||
iface->is_child_selected = gtk_list_box_accessible_is_child_selected;
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_list_box_accessible_selection_changed (GtkListBox *box)
|
||||
{
|
||||
AtkObject *accessible;
|
||||
accessible = gtk_widget_get_accessible (GTK_WIDGET (box));
|
||||
g_signal_emit_by_name (accessible, "selection-changed");
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_list_box_accessible_update_cursor (GtkListBox *box,
|
||||
GtkListBoxRow *row)
|
||||
{
|
||||
AtkObject *accessible;
|
||||
AtkObject *descendant;
|
||||
accessible = gtk_widget_get_accessible (GTK_WIDGET (box));
|
||||
descendant = row ? gtk_widget_get_accessible (GTK_WIDGET (row)) : NULL;
|
||||
g_signal_emit_by_name (accessible, "active-descendant-changed", descendant);
|
||||
}
|
58
gtk/a11y/gtklistboxaccessible.h
Normal file
58
gtk/a11y/gtklistboxaccessible.h
Normal file
@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_LIST_BOX_ACCESSIBLE_H__
|
||||
#define __GTK_LIST_BOX_ACCESSIBLE_H__
|
||||
|
||||
#if !defined (__GTK_A11Y_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk-a11y.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include <gtk/a11y/gtkcontaineraccessible.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_LIST_BOX_ACCESSIBLE (gtk_list_box_accessible_get_type ())
|
||||
#define GTK_LIST_BOX_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_BOX_ACCESSIBLE, GtkListBoxAccessible))
|
||||
#define GTK_LIST_BOX_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_BOX_ACCESSIBLE, GtkListBoxAccessibleClass))
|
||||
#define GTK_IS_LIST_BOX_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_BOX_ACCESSIBLE))
|
||||
#define GTK_IS_LIST_BOX_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_BOX_ACCESSIBLE))
|
||||
#define GTK_LIST_BOX_ACCESSIBLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_BOX_ACCESSIBLE, GtkListBoxAccessibleClass))
|
||||
|
||||
typedef struct _GtkListBoxAccessible GtkListBoxAccessible;
|
||||
typedef struct _GtkListBoxAccessibleClass GtkListBoxAccessibleClass;
|
||||
typedef struct _GtkListBoxAccessiblePrivate GtkListBoxAccessiblePrivate;
|
||||
|
||||
struct _GtkListBoxAccessible
|
||||
{
|
||||
GtkContainerAccessible parent;
|
||||
|
||||
GtkListBoxAccessiblePrivate *priv;
|
||||
};
|
||||
|
||||
struct _GtkListBoxAccessibleClass
|
||||
{
|
||||
GtkContainerAccessibleClass parent_class;
|
||||
};
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_list_box_accessible_get_type (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_LIST_BOX_ACCESSIBLE_H__ */
|
31
gtk/a11y/gtklistboxaccessibleprivate.h
Normal file
31
gtk/a11y/gtklistboxaccessibleprivate.h
Normal file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_LIST_BOX_ACCESSIBLE_PRIVATE_H__
|
||||
#define __GTK_LIST_BOX_ACCESSIBLE_PRIVATE_H__
|
||||
|
||||
#include <gtk/a11y/gtklistboxaccessible.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
void _gtk_list_box_accessible_update_selected (GtkListBox *box, GtkListBoxRow *child);
|
||||
void _gtk_list_box_accessible_update_cursor (GtkListBox *box, GtkListBoxRow *child);
|
||||
void _gtk_list_box_accessible_selection_changed (GtkListBox *box);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_LIST_BOX_ACCESSIBLE_PRIVATE_H__ */
|
@ -46,6 +46,7 @@
|
||||
#include <gtk/a11y/gtklabelaccessible.h>
|
||||
#include <gtk/a11y/gtklevelbaraccessible.h>
|
||||
#include <gtk/a11y/gtklinkbuttonaccessible.h>
|
||||
#include <gtk/a11y/gtklistboxaccessible.h>
|
||||
#include <gtk/a11y/gtklockbuttonaccessible.h>
|
||||
#include <gtk/a11y/gtkmenuaccessible.h>
|
||||
#include <gtk/a11y/gtkmenuitemaccessible.h>
|
||||
|
@ -124,6 +124,7 @@
|
||||
#include <gtk/gtklayout.h>
|
||||
#include <gtk/gtklevelbar.h>
|
||||
#include <gtk/gtklinkbutton.h>
|
||||
#include <gtk/gtklistbox.h>
|
||||
#include <gtk/gtkliststore.h>
|
||||
#include <gtk/gtklockbutton.h>
|
||||
#include <gtk/gtkmain.h>
|
||||
|
2323
gtk/gtklistbox.c
Normal file
2323
gtk/gtklistbox.c
Normal file
File diff suppressed because it is too large
Load Diff
178
gtk/gtklistbox.h
Normal file
178
gtk/gtklistbox.h
Normal file
@ -0,0 +1,178 @@
|
||||
/*
|
||||
* Copyright (c) 2013 Red Hat, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program 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 Lesser General Public
|
||||
* License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* Author: Alexander Larsson <alexl@redhat.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __GTK_LIST_BOX_H__
|
||||
#define __GTK_LIST_BOX_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtkscrolledwindow.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
||||
#define GTK_TYPE_LIST_BOX (gtk_list_box_get_type ())
|
||||
#define GTK_LIST_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_BOX, GtkListBox))
|
||||
#define GTK_LIST_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_BOX, GtkListBoxClass))
|
||||
#define GTK_IS_LIST_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_BOX))
|
||||
#define GTK_IS_LIST_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_BOX))
|
||||
#define GTK_LIST_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_BOX, GtkListBoxClass))
|
||||
|
||||
typedef struct _GtkListBox GtkListBox;
|
||||
typedef struct _GtkListBoxClass GtkListBoxClass;
|
||||
typedef struct _GtkListBoxPrivate GtkListBoxPrivate;
|
||||
|
||||
typedef struct _GtkListBoxRow GtkListBoxRow;
|
||||
typedef struct _GtkListBoxRowClass GtkListBoxRowClass;
|
||||
typedef struct _GtkListBoxRowPrivate GtkListBoxRowPrivate;
|
||||
|
||||
struct _GtkListBox
|
||||
{
|
||||
GtkContainer parent_instance;
|
||||
|
||||
GtkListBoxPrivate * priv;
|
||||
};
|
||||
|
||||
struct _GtkListBoxClass
|
||||
{
|
||||
GtkContainerClass parent_class;
|
||||
|
||||
void (*row_selected) (GtkListBox* list_box, GtkListBoxRow* row);
|
||||
void (*row_activated) (GtkListBox* list_box, GtkListBoxRow* row);
|
||||
void (*activate_cursor_row) (GtkListBox* list_box);
|
||||
void (*toggle_cursor_row) (GtkListBox* list_box);
|
||||
void (*move_cursor) (GtkListBox* list_box, GtkMovementStep step, gint count);
|
||||
void (*refilter) (GtkListBox* list_box);
|
||||
|
||||
/* Padding for future expansion */
|
||||
void (*_gtk_reserved1) (void);
|
||||
void (*_gtk_reserved2) (void);
|
||||
void (*_gtk_reserved3) (void);
|
||||
void (*_gtk_reserved4) (void);
|
||||
void (*_gtk_reserved5) (void);
|
||||
void (*_gtk_reserved6) (void);
|
||||
};
|
||||
|
||||
#define GTK_TYPE_LIST_BOX_ROW (gtk_list_box_row_get_type ())
|
||||
#define GTK_LIST_BOX_ROW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_BOX_ROW, GtkListBoxRow))
|
||||
#define GTK_LIST_BOX_ROW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_BOX_ROW, GtkListBoxRowClass))
|
||||
#define GTK_IS_LIST_BOX_ROW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_BOX_ROW))
|
||||
#define GTK_IS_LIST_BOX_ROW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_BOX_ROW))
|
||||
#define GTK_LIST_BOX_ROW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_BOX_ROW, GtkListBoxRowClass))
|
||||
|
||||
struct _GtkListBoxRow
|
||||
{
|
||||
GtkBin parent_instance;
|
||||
|
||||
GtkListBoxRowPrivate * priv;
|
||||
};
|
||||
|
||||
struct _GtkListBoxRowClass
|
||||
{
|
||||
GtkBinClass parent_class;
|
||||
|
||||
/* Padding for future expansion */
|
||||
void (*_gtk_reserved1) (void);
|
||||
void (*_gtk_reserved2) (void);
|
||||
void (*_gtk_reserved3) (void);
|
||||
};
|
||||
|
||||
typedef gboolean (*GtkListBoxFilterFunc) (GtkListBoxRow* row, gpointer user_data);
|
||||
typedef gint (*GtkListBoxSortFunc) (GtkListBoxRow* row1, GtkListBoxRow* row2, gpointer user_data);
|
||||
typedef void (*GtkListBoxUpdateSeparatorFunc) (GtkListBoxRow* row, GtkListBoxRow* before, gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GType gtk_list_box_row_get_type (void) G_GNUC_CONST;
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkWidget* gtk_list_box_row_new (void);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkWidget* gtk_list_box_row_get_separator (GtkListBoxRow *row);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_row_set_separator (GtkListBoxRow *row,
|
||||
GtkWidget *separator);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_row_changed (GtkListBoxRow *row);
|
||||
|
||||
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GType gtk_list_box_get_type (void) G_GNUC_CONST;
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkListBoxRow* gtk_list_box_get_selected_row (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkListBoxRow* gtk_list_box_get_row_at_index (GtkListBox *list_box,
|
||||
int index);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkListBoxRow* gtk_list_box_get_row_at_y (GtkListBox *list_box,
|
||||
gint y);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_select_row (GtkListBox *list_box,
|
||||
GtkListBoxRow *row);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_adjustment (GtkListBox *list_box,
|
||||
GtkAdjustment *adjustment);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkAdjustment *gtk_list_box_get_adjustment (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_add_to_scrolled (GtkListBox *list_box,
|
||||
GtkScrolledWindow *scrolled);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_selection_mode (GtkListBox *list_box,
|
||||
GtkSelectionMode mode);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkSelectionMode gtk_list_box_get_selection_mode (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_filter_func (GtkListBox *list_box,
|
||||
GtkListBoxFilterFunc filter_func,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_separator_func (GtkListBox *list_box,
|
||||
GtkListBoxUpdateSeparatorFunc update_separator,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_refilter (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_resort (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_reseparate (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_sort_func (GtkListBox *list_box,
|
||||
GtkListBoxSortFunc sort_func,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_set_activate_on_single_click (GtkListBox *list_box,
|
||||
gboolean single);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_drag_unhighlight_row (GtkListBox *list_box);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
void gtk_list_box_drag_highlight_row (GtkListBox *list_box,
|
||||
GtkListBoxRow *row);
|
||||
GDK_AVAILABLE_IN_3_10
|
||||
GtkWidget* gtk_list_box_new (void);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user