forked from AuroraMiddleware/gtk
parent
c86ee0558c
commit
d0a654e4b9
@ -1115,6 +1115,7 @@ EXTRA_DIST += gtkbuilder.rnc gtkbuilder.rng
|
||||
COMPOSITE_TEMPLATES = \
|
||||
resources/ui/gtkapplication-quartz.ui \
|
||||
resources/ui/gtkaboutdialog.ui \
|
||||
resources/ui/gtkactionbar.ui \
|
||||
resources/ui/gtkappchooserdialog.ui \
|
||||
resources/ui/gtkappchooserwidget.ui \
|
||||
resources/ui/gtkassistant.ui \
|
||||
|
@ -12,6 +12,7 @@
|
||||
<file alias="cursor/dnd-move.png">cursor/cursor_dnd_move.png</file>
|
||||
<file alias="cursor/dnd-copy.png">cursor/cursor_dnd_copy.png</file>
|
||||
<file compressed="true">ui/gtkaboutdialog.ui</file>
|
||||
<file compressed="true">ui/gtkactionbar.ui</file>
|
||||
<file compressed="true">ui/gtkappchooserdialog.ui</file>
|
||||
<file compressed="true">ui/gtkappchooserwidget.ui</file>
|
||||
<file compressed="true">ui/gtkassistant.ui</file>
|
||||
|
362
gtk/gtkactionbar.c
Normal file
362
gtk/gtkactionbar.c
Normal file
@ -0,0 +1,362 @@
|
||||
/*
|
||||
* Copyright (c) 2013 - 2014 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
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkactionbar.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkaccessible.h"
|
||||
#include "gtkbuildable.h"
|
||||
#include "gtktypebuiltins.h"
|
||||
#include "gtkcenterbox.h"
|
||||
#include "gtkrevealer.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
/**
|
||||
* SECTION:gtkactionbar
|
||||
* @Short_description: A full width bar for presenting contextual actions
|
||||
* @Title: GtkActionBar
|
||||
* @See_also: #GtkBox
|
||||
*
|
||||
* GtkActionBar is designed to present contextual actions. It is
|
||||
* expected to be displayed below the content and expand horizontally
|
||||
* to fill the area.
|
||||
*
|
||||
* It allows placing children at the start or the end. In addition, it
|
||||
* contains an internal centered box which is centered with respect to
|
||||
* the full width of the box, even if the children at either side take
|
||||
* up different amounts of space.
|
||||
*/
|
||||
|
||||
struct _GtkActionBarPrivate
|
||||
{
|
||||
GtkWidget *center_box;
|
||||
GtkWidget *revealer;
|
||||
};
|
||||
|
||||
enum {
|
||||
CHILD_PROP_0,
|
||||
CHILD_PROP_PACK_TYPE,
|
||||
CHILD_PROP_POSITION
|
||||
};
|
||||
|
||||
static void gtk_action_bar_buildable_interface_init (GtkBuildableIface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GtkActionBar, gtk_action_bar, GTK_TYPE_BIN,
|
||||
G_ADD_PRIVATE (GtkActionBar)
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
|
||||
gtk_action_bar_buildable_interface_init))
|
||||
|
||||
static void
|
||||
gtk_action_bar_show (GtkWidget *widget)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (widget));
|
||||
|
||||
GTK_WIDGET_CLASS (gtk_action_bar_parent_class)->show (widget);
|
||||
|
||||
gtk_revealer_set_reveal_child (GTK_REVEALER (priv->revealer), TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
child_revealed (GObject *object, GParamSpec *pspec, GtkWidget *widget)
|
||||
{
|
||||
GTK_WIDGET_CLASS (gtk_action_bar_parent_class)->hide (widget);
|
||||
g_signal_handlers_disconnect_by_func (object, child_revealed, widget);
|
||||
g_object_notify (G_OBJECT (widget), "visible");
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_hide (GtkWidget *widget)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (widget));
|
||||
|
||||
g_signal_connect_object (priv->revealer, "notify::child-revealed",
|
||||
G_CALLBACK (child_revealed), widget, 0);
|
||||
gtk_revealer_set_reveal_child (GTK_REVEALER (priv->revealer), FALSE);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_add (GtkContainer *container,
|
||||
GtkWidget *child)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
/* When constructing the widget, we want the revealer to be added
|
||||
* as the first child of the bar, as an implementation detail.
|
||||
* After that, the child added by the application should be added
|
||||
* to center_box.
|
||||
*/
|
||||
|
||||
if (priv->center_box == NULL)
|
||||
GTK_CONTAINER_CLASS (gtk_action_bar_parent_class)->add (container, child);
|
||||
else
|
||||
gtk_container_add (GTK_CONTAINER (priv->center_box), child);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_remove (GtkContainer *container,
|
||||
GtkWidget *child)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
if (child == priv->revealer)
|
||||
GTK_CONTAINER_CLASS (gtk_action_bar_parent_class)->remove (container, child);
|
||||
else
|
||||
gtk_container_remove (GTK_CONTAINER (priv->center_box), child);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_forall (GtkContainer *container,
|
||||
gboolean include_internals,
|
||||
GtkCallback callback,
|
||||
gpointer callback_data)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
if (include_internals)
|
||||
(* callback) (priv->revealer, callback_data);
|
||||
else if (priv->center_box)
|
||||
gtk_container_forall (GTK_CONTAINER (priv->center_box), callback, callback_data);
|
||||
}
|
||||
|
||||
static GType
|
||||
gtk_action_bar_child_type (GtkContainer *container)
|
||||
{
|
||||
return GTK_TYPE_WIDGET;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_get_child_property (GtkContainer *container,
|
||||
GtkWidget *child,
|
||||
guint property_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
if (child == priv->revealer)
|
||||
g_param_value_set_default (pspec, value);
|
||||
else
|
||||
gtk_container_child_get_property (GTK_CONTAINER (priv->center_box),
|
||||
child,
|
||||
pspec->name,
|
||||
value);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_set_child_property (GtkContainer *container,
|
||||
GtkWidget *child,
|
||||
guint property_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
if (child != priv->revealer)
|
||||
gtk_container_child_set_property (GTK_CONTAINER (priv->center_box),
|
||||
child,
|
||||
pspec->name,
|
||||
value);
|
||||
}
|
||||
|
||||
static GtkWidgetPath *
|
||||
gtk_action_bar_get_path_for_child (GtkContainer *container,
|
||||
GtkWidget *child)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (GTK_ACTION_BAR (container));
|
||||
|
||||
if (child == priv->revealer)
|
||||
return GTK_CONTAINER_CLASS (gtk_action_bar_parent_class)->get_path_for_child (container, child);
|
||||
else
|
||||
return gtk_container_get_path_for_child (GTK_CONTAINER (priv->center_box), child);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_class_init (GtkActionBarClass *klass)
|
||||
{
|
||||
GtkWidgetClass *widget_class;
|
||||
GtkContainerClass *container_class;
|
||||
|
||||
widget_class = GTK_WIDGET_CLASS (klass);
|
||||
container_class = GTK_CONTAINER_CLASS (klass);
|
||||
|
||||
widget_class->show = gtk_action_bar_show;
|
||||
widget_class->hide = gtk_action_bar_hide;
|
||||
|
||||
container_class->add = gtk_action_bar_add;
|
||||
container_class->remove = gtk_action_bar_remove;
|
||||
container_class->forall = gtk_action_bar_forall;
|
||||
container_class->child_type = gtk_action_bar_child_type;
|
||||
container_class->set_child_property = gtk_action_bar_set_child_property;
|
||||
container_class->get_child_property = gtk_action_bar_get_child_property;
|
||||
container_class->get_path_for_child = gtk_action_bar_get_path_for_child;
|
||||
|
||||
gtk_container_class_install_child_property (container_class,
|
||||
CHILD_PROP_PACK_TYPE,
|
||||
g_param_spec_enum ("pack-type",
|
||||
P_("Pack type"),
|
||||
P_("A GtkPackType indicating whether the child is packed with reference to the start or end of the parent"),
|
||||
GTK_TYPE_PACK_TYPE, GTK_PACK_START,
|
||||
G_PARAM_READWRITE));
|
||||
gtk_container_class_install_child_property (container_class,
|
||||
CHILD_PROP_POSITION,
|
||||
g_param_spec_int ("position",
|
||||
P_("Position"),
|
||||
P_("The index of the child in the parent"),
|
||||
-1, G_MAXINT, 0,
|
||||
G_PARAM_READABLE));
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/ui/gtkactionbar.ui");
|
||||
gtk_widget_class_bind_template_child_internal_private (widget_class, GtkActionBar, center_box);
|
||||
gtk_widget_class_bind_template_child_internal_private (widget_class, GtkActionBar, revealer);
|
||||
|
||||
gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_PANEL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_init (GtkActionBar *action_bar)
|
||||
{
|
||||
GtkWidget *widget = GTK_WIDGET (action_bar);
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
gtk_widget_set_redraw_on_allocate (widget, TRUE);
|
||||
|
||||
gtk_widget_init_template (GTK_WIDGET (action_bar));
|
||||
|
||||
gtk_revealer_set_transition_type (GTK_REVEALER (priv->revealer), GTK_REVEALER_TRANSITION_TYPE_SLIDE_UP);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_action_bar_buildable_add_child (GtkBuildable *buildable,
|
||||
GtkBuilder *builder,
|
||||
GObject *child,
|
||||
const gchar *type)
|
||||
{
|
||||
GtkActionBar *action_bar = GTK_ACTION_BAR (buildable);
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
if (type && strcmp (type, "center") == 0)
|
||||
gtk_center_box_set_center_widget (GTK_CENTER_BOX (priv->center_box), GTK_WIDGET (child));
|
||||
else if (!type)
|
||||
gtk_container_add (GTK_CONTAINER (buildable), GTK_WIDGET (child));
|
||||
else
|
||||
GTK_BUILDER_WARN_INVALID_CHILD_TYPE (action_bar, type);
|
||||
}
|
||||
|
||||
static GtkBuildableIface *parent_buildable_iface;
|
||||
|
||||
static void
|
||||
gtk_action_bar_buildable_interface_init (GtkBuildableIface *iface)
|
||||
{
|
||||
parent_buildable_iface = g_type_interface_peek_parent (iface);
|
||||
iface->add_child = gtk_action_bar_buildable_add_child;
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_action_bar_pack_start:
|
||||
* @action_bar: A #GtkActionBar
|
||||
* @child: the #GtkWidget to be added to @action_bar
|
||||
*
|
||||
* Adds @child to @action_bar, packed with reference to the
|
||||
* start of the @action_bar.
|
||||
*
|
||||
* Since: 3.12
|
||||
*/
|
||||
void
|
||||
gtk_action_bar_pack_start (GtkActionBar *action_bar,
|
||||
GtkWidget *child)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
gtk_center_box_pack_start (GTK_CENTER_BOX (priv->center_box), child);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_action_bar_pack_end:
|
||||
* @action_bar: A #GtkActionBar
|
||||
* @child: the #GtkWidget to be added to @action_bar
|
||||
*
|
||||
* Adds @child to @action_bar, packed with reference to the
|
||||
* end of the @action_bar.
|
||||
*
|
||||
* Since: 3.12
|
||||
*/
|
||||
void
|
||||
gtk_action_bar_pack_end (GtkActionBar *action_bar,
|
||||
GtkWidget *child)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
gtk_center_box_pack_end (GTK_CENTER_BOX (priv->center_box), child);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_action_bar_set_center_widget:
|
||||
* @action_bar: a #GtkActionBar
|
||||
* @center_widget: (allow-none): a widget to use for the center
|
||||
*
|
||||
* Sets the center widget for the #GtkActionBar.
|
||||
*
|
||||
* Since: 3.12
|
||||
*/
|
||||
void
|
||||
gtk_action_bar_set_center_widget (GtkActionBar *action_bar,
|
||||
GtkWidget *center_widget)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
gtk_center_box_set_center_widget (GTK_CENTER_BOX (priv->center_box),
|
||||
center_widget);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_action_bar_get_center_widget:
|
||||
* @action_bar: a #GtkActionBar
|
||||
*
|
||||
* Retrieves the center bar widget of the bar.
|
||||
*
|
||||
* Return value: (transfer none): the center #GtkWidget.
|
||||
*
|
||||
* Since: 3.12
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_action_bar_get_center_widget (GtkActionBar *action_bar)
|
||||
{
|
||||
GtkActionBarPrivate *priv = gtk_action_bar_get_instance_private (action_bar);
|
||||
|
||||
g_return_val_if_fail (GTK_IS_ACTION_BAR (action_bar), NULL);
|
||||
|
||||
return gtk_center_box_get_center_widget (GTK_CENTER_BOX (priv->center_box));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_action_bar_new:
|
||||
*
|
||||
* Creates a new #GtkActionBar widget.
|
||||
*
|
||||
* Returns: a new #GtkActionBar
|
||||
*
|
||||
* Since: 3.12
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_action_bar_new (void)
|
||||
{
|
||||
return GTK_WIDGET (g_object_new (GTK_TYPE_ACTION_BAR, NULL));
|
||||
}
|
78
gtk/gtkactionbar.h
Normal file
78
gtk/gtkactionbar.h
Normal file
@ -0,0 +1,78 @@
|
||||
/*
|
||||
* Copyright (c) 2013 - 2014 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
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __GTK_ACTION_BAR_H__
|
||||
#define __GTK_ACTION_BAR_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtkbin.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_ACTION_BAR (gtk_action_bar_get_type ())
|
||||
#define GTK_ACTION_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ACTION_BAR, GtkActionBar))
|
||||
#define GTK_ACTION_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ACTION_BAR, GtkActionBarClass))
|
||||
#define GTK_IS_ACTION_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ACTION_BAR))
|
||||
#define GTK_IS_ACTION_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ACTION_BAR))
|
||||
#define GTK_ACTION_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ACTION_BAR, GtkActionBarClass))
|
||||
|
||||
typedef struct _GtkActionBar GtkActionBar;
|
||||
typedef struct _GtkActionBarPrivate GtkActionBarPrivate;
|
||||
typedef struct _GtkActionBarClass GtkActionBarClass;
|
||||
|
||||
struct _GtkActionBar
|
||||
{
|
||||
/*< private >*/
|
||||
GtkBin bin;
|
||||
};
|
||||
|
||||
struct _GtkActionBarClass
|
||||
{
|
||||
/*< private >*/
|
||||
GtkBinClass parent_class;
|
||||
|
||||
/* Padding for future expansion */
|
||||
void (*_gtk_reserved1) (void);
|
||||
void (*_gtk_reserved2) (void);
|
||||
void (*_gtk_reserved3) (void);
|
||||
void (*_gtk_reserved4) (void);
|
||||
};
|
||||
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
GType gtk_action_bar_get_type (void) G_GNUC_CONST;
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
GtkWidget *gtk_action_bar_new (void);
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
GtkWidget *gtk_action_bar_get_center_widget (GtkActionBar *action_bar);
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
void gtk_action_bar_set_center_widget (GtkActionBar *action_bar,
|
||||
GtkWidget *center_widget);
|
||||
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
void gtk_action_bar_pack_start (GtkActionBar *action_bar,
|
||||
GtkWidget *child);
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
void gtk_action_bar_pack_end (GtkActionBar *action_bar,
|
||||
GtkWidget *child);
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_ACTION_BAR_H__ */
|
@ -574,7 +574,7 @@ gtk_container_buildable_set_child_property (GtkContainer *container,
|
||||
GValue gvalue = G_VALUE_INIT;
|
||||
GError *error = NULL;
|
||||
|
||||
if (gtk_widget_get_parent (child) != (GtkWidget *)container && !GTK_IS_ASSISTANT (container))
|
||||
if (gtk_widget_get_parent (child) != (GtkWidget *)container && !GTK_IS_ASSISTANT (container) && !GTK_IS_ACTION_BAR (container))
|
||||
{
|
||||
/* This can happen with internal children of complex widgets.
|
||||
* Silently ignore the child properties in this case. We explicitly
|
||||
@ -1565,7 +1565,7 @@ gtk_container_remove (GtkContainer *container,
|
||||
{
|
||||
g_return_if_fail (GTK_IS_CONTAINER (container));
|
||||
g_return_if_fail (GTK_IS_WIDGET (widget));
|
||||
g_return_if_fail (gtk_widget_get_parent (widget) == GTK_WIDGET (container) || GTK_IS_ASSISTANT (container));
|
||||
g_return_if_fail (gtk_widget_get_parent (widget) == GTK_WIDGET (container) || GTK_IS_ASSISTANT (container) || GTK_IS_ACTION_BAR (container));
|
||||
|
||||
g_signal_emit (container, container_signals[REMOVE], 0, widget);
|
||||
}
|
||||
|
24
gtk/resources/ui/gtkactionbar.ui
Normal file
24
gtk/resources/ui/gtkactionbar.ui
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface domain="gtk30">
|
||||
<!-- interface-requires gtk+ 3.10 -->
|
||||
<template class="GtkActionBar" parent="GtkBin">
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkRevealer" id="revealer">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkCenterBox" id="center_box">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">0</property>
|
||||
<property name="spacing">0</property>
|
||||
<style>
|
||||
<class name="action-bar"/>
|
||||
</style>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</template>
|
||||
</interface>
|
Loading…
Reference in New Issue
Block a user