Files
sysprof/src/libsysprof-ui/sysprof-visualizer-group-header.c
Christian Hergert b56cd73308 fix typo
Fixes #20
2019-12-12 12:39:28 -08:00

160 lines
5.9 KiB
C

/* sysprof-visualizer-group-header.c
*
* Copyright 2019 Christian Hergert <chergert@redhat.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#define G_LOG_DOMAIN "sysprof-visualizer-group-header"
#include "config.h"
#include <glib/gi18n.h>
#include "sysprof-visualizer.h"
#include "sysprof-visualizer-group.h"
#include "sysprof-visualizer-group-header.h"
struct _SysprofVisualizerGroupHeader
{
GtkListBoxRow parent_instance;
GtkBox *box;
};
G_DEFINE_TYPE (SysprofVisualizerGroupHeader, sysprof_visualizer_group_header, GTK_TYPE_LIST_BOX_ROW)
static void
sysprof_visualizer_group_header_finalize (GObject *object)
{
G_OBJECT_CLASS (sysprof_visualizer_group_header_parent_class)->finalize (object);
}
static void
sysprof_visualizer_group_header_class_init (SysprofVisualizerGroupHeaderClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = sysprof_visualizer_group_header_finalize;
}
static void
sysprof_visualizer_group_header_init (SysprofVisualizerGroupHeader *self)
{
self->box = g_object_new (GTK_TYPE_BOX,
"orientation", GTK_ORIENTATION_VERTICAL,
"visible", TRUE,
NULL);
gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (self->box));
}
void
_sysprof_visualizer_group_header_add_row (SysprofVisualizerGroupHeader *self,
guint position,
const gchar *title,
GMenuModel *menu,
GtkWidget *widget)
{
GtkBox *box;
GtkWidget *group;
g_return_if_fail (SYSPROF_IS_VISUALIZER_GROUP_HEADER (self));
g_return_if_fail (SYSPROF_IS_VISUALIZER (widget));
g_return_if_fail (!menu || G_IS_MENU_MODEL (menu));
box = g_object_new (GTK_TYPE_BOX,
"orientation", GTK_ORIENTATION_HORIZONTAL,
"spacing", 6,
"visible", TRUE,
NULL);
g_object_bind_property (widget, "visible", box, "visible", G_BINDING_SYNC_CREATE);
gtk_container_add_with_properties (GTK_CONTAINER (self->box), GTK_WIDGET (box),
"position", position,
NULL);
if (title != NULL)
{
g_autoptr(GtkSizeGroup) size_group = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL);
PangoAttrList *attrs = pango_attr_list_new ();
GtkLabel *label;
pango_attr_list_insert (attrs, pango_attr_scale_new (0.83333));
label = g_object_new (GTK_TYPE_LABEL,
"attributes", attrs,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"margin", 6,
"hexpand", TRUE,
"label", title,
"visible", TRUE,
"xalign", 0.0f,
NULL);
gtk_container_add (GTK_CONTAINER (box), GTK_WIDGET (label));
pango_attr_list_unref (attrs);
gtk_size_group_add_widget (size_group, widget);
gtk_size_group_add_widget (size_group, GTK_WIDGET (box));
}
group = gtk_widget_get_ancestor (widget, SYSPROF_TYPE_VISUALIZER_GROUP);
if (position == 0 && sysprof_visualizer_group_get_has_page (SYSPROF_VISUALIZER_GROUP (group)))
{
GtkImage *image;
image = g_object_new (GTK_TYPE_IMAGE,
"icon-name", "view-paged-symbolic",
"tooltip-text", _("Select for more details"),
"pixel-size", 16,
"visible", TRUE,
NULL);
dzl_gtk_widget_add_style_class (GTK_WIDGET (image), "dim-label");
gtk_container_add (GTK_CONTAINER (box), GTK_WIDGET (image));
}
if (menu != NULL)
{
GtkStyleContext *style_context;
GtkMenuButton *button;
button = g_object_new (GTK_TYPE_MENU_BUTTON,
"child", g_object_new (GTK_TYPE_IMAGE,
"icon-name", "view-more-symbolic",
"visible", TRUE,
NULL),
"margin-right", 6,
"direction", GTK_ARROW_RIGHT,
"halign", GTK_ALIGN_CENTER,
"menu-model", menu,
"tooltip-text", _("Display supplemental graphs"),
"use-popover", FALSE,
"valign", GTK_ALIGN_CENTER,
"visible", TRUE,
NULL);
style_context = gtk_widget_get_style_context (GTK_WIDGET (button));
gtk_style_context_add_class (style_context, "image-button");
gtk_style_context_add_class (style_context, "small-button");
gtk_style_context_add_class (style_context, "flat");
gtk_container_add (GTK_CONTAINER (box), GTK_WIDGET (button));
}
}
SysprofVisualizerGroupHeader *
_sysprof_visualizer_group_header_new (void)
{
return g_object_new (SYSPROF_TYPE_VISUALIZER_GROUP_HEADER, NULL);
}