summaryrefslogtreecommitdiff
path: root/src/summary.c
blob: b8248b9b358823bea382467ffd6466810091cc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
   This file is part of odin, a memory profiler with fragmentation analysis.

   Copyright (C) 2007 Chris Wilson <chris@chris-wilson.co.uk>

   odin 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.

   odin 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 odin. If not, see <http://www.gnu.org/licenses/>/

   The GNU General Public License is contained in the file COPYING.
*/

#include <gtk/gtk.h>

#include "odin.h"
#include "client.h"
#include "allocators.h"
#include "summary.h"

struct _summary {
    GtkFrame bin;

    AllocatorsStore *store;
};

typedef struct _summary_class {
    GtkFrameClass parent_class;
} SummaryClass;

static GType
summary_get_type (void);

G_DEFINE_TYPE (Summary, summary, GTK_TYPE_FRAME)

static void
summary_class_init (SummaryClass *klass)
{
}

static void
summary_init (Summary *self)
{
    GtkWidget *hbox, *w, *sw;

    self->store = allocators_store_new ();

    hbox = gtk_hbox_new (FALSE, 2);
    gtk_container_add (GTK_CONTAINER (self), hbox);
    gtk_widget_show (hbox);

    sw = gtk_scrolled_window_new (NULL, NULL);
    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),
	                            GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
    gtk_box_pack_start (GTK_BOX (hbox), sw, FALSE, FALSE, 2);
    gtk_widget_show (sw);

    w = summary_view_new (self->store);
    gtk_container_add (GTK_CONTAINER (sw), w);
    gtk_widget_show (w);

    w = summary_chart_new (self->store);
    gtk_box_pack_start (GTK_BOX (hbox), w, TRUE, TRUE, 2);
    gtk_widget_show (w);
}

GtkWidget *
summary_new (void)
{
    return g_object_new (summary_get_type (), NULL);
}

void
summary_update (Summary *summary, Client *client)
{
    allocators_store_update_from_allocators (summary->store,
	                                     client->allocators);

    gtk_widget_queue_draw ((GtkWidget *) summary); /* XXX */
}