1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2006 Mathieu Desnoyers
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 #include "lttv_plugin_cfv.h"
21 #include <lttvwindow/lttvwindow.h>
32 static void cfv_update_filter(LttvPlugin
*parent
, LttvFilter
*filter
)
34 LttvPluginCFV
*self
= LTTV_PLUGIN_CFV(parent
);
35 g_message("In CFV update filter.");
36 lttv_filter_destroy(self
->cfd
->filter
);
37 self
->cfd
->filter
= filter
;
38 redraw_notify(self
->cfd
, NULL
);
43 lttv_plugin_cfv_class_init (LttvPluginCFVClass
*klass
)
45 LttvPluginClass
*parent_klass
;
46 parent_klass
= &klass
->parent
;
47 parent_klass
->update_filter
= cfv_update_filter
;
48 g_type_class_add_private (klass
, sizeof (ControlFlowData
));
53 lttv_plugin_cfv_init (GTypeInstance
*instance
, gpointer g_class
)
55 LttvPluginCFV
*self
= LTTV_PLUGIN_CFV (instance
);
56 self
->cfd
= G_TYPE_INSTANCE_GET_PRIVATE (self
,
57 LTTV_TYPE_PLUGIN_CFV
, ControlFlowData
);
62 lttv_plugin_cfv_get_type (void)
64 static GType type
= 0;
66 static const GTypeInfo info
= {
67 sizeof (LttvPluginCFVClass
),
69 NULL
, /* base_finalize */
70 lttv_plugin_cfv_class_init
, /* class_init */
71 NULL
, /* class_finalize */
72 NULL
, /* class_data */
73 sizeof (LttvPluginCFV
),
75 lttv_plugin_cfv_init
/* instance_init */
77 type
= g_type_register_static (G_TYPE_OBJECT
,