mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
libsysprof-ui: add counters to details
This commit is contained in:
@ -38,6 +38,7 @@ struct _SysprofDetailsView
|
|||||||
DzlThreeGrid *three_grid;
|
DzlThreeGrid *three_grid;
|
||||||
GtkListStore *marks_store;
|
GtkListStore *marks_store;
|
||||||
GtkTreeView *marks_view;
|
GtkTreeView *marks_view;
|
||||||
|
GtkLabel *counters;
|
||||||
GtkLabel *duration;
|
GtkLabel *duration;
|
||||||
GtkLabel *filename;
|
GtkLabel *filename;
|
||||||
GtkLabel *forks;
|
GtkLabel *forks;
|
||||||
@ -89,6 +90,7 @@ sysprof_details_view_class_init (SysprofDetailsViewClass *klass)
|
|||||||
object_class->finalize = sysprof_details_view_finalize;
|
object_class->finalize = sysprof_details_view_finalize;
|
||||||
|
|
||||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/ui/sysprof-details-view.ui");
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/ui/sysprof-details-view.ui");
|
||||||
|
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, counters);
|
||||||
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, duration);
|
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, duration);
|
||||||
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, filename);
|
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, filename);
|
||||||
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, forks);
|
gtk_widget_class_bind_template_child (widget_class, SysprofDetailsView, forks);
|
||||||
@ -165,6 +167,7 @@ sysprof_details_view_set_reader (SysprofDetailsView *self,
|
|||||||
SET_FRAME_COUNT (marks, SYSPROF_CAPTURE_FRAME_MARK);
|
SET_FRAME_COUNT (marks, SYSPROF_CAPTURE_FRAME_MARK);
|
||||||
SET_FRAME_COUNT (processes, SYSPROF_CAPTURE_FRAME_PROCESS);
|
SET_FRAME_COUNT (processes, SYSPROF_CAPTURE_FRAME_PROCESS);
|
||||||
SET_FRAME_COUNT (forks, SYSPROF_CAPTURE_FRAME_FORK);
|
SET_FRAME_COUNT (forks, SYSPROF_CAPTURE_FRAME_FORK);
|
||||||
|
SET_FRAME_COUNT (counters, SYSPROF_CAPTURE_FRAME_CTRSET);
|
||||||
|
|
||||||
#undef SET_FRAME_COUNT
|
#undef SET_FRAME_COUNT
|
||||||
}
|
}
|
||||||
|
|||||||
@ -104,7 +104,6 @@
|
|||||||
<child>
|
<child>
|
||||||
<object class="GtkLabel">
|
<object class="GtkLabel">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="margin-bottom">12</property>
|
|
||||||
<property name="label" translatable="yes">Forks Captured</property>
|
<property name="label" translatable="yes">Forks Captured</property>
|
||||||
<property name="xalign">1</property>
|
<property name="xalign">1</property>
|
||||||
<style>
|
<style>
|
||||||
@ -116,6 +115,21 @@
|
|||||||
<property name="row">6</property>
|
<property name="row">6</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="margin-bottom">12</property>
|
||||||
|
<property name="label" translatable="yes">Counters Captured</property>
|
||||||
|
<property name="xalign">1</property>
|
||||||
|
<style>
|
||||||
|
<class name="dim-label"/>
|
||||||
|
</style>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="column">left</property>
|
||||||
|
<property name="row">7</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkLabel" id="filename">
|
<object class="GtkLabel" id="filename">
|
||||||
<property name="width-chars">35</property>
|
<property name="width-chars">35</property>
|
||||||
@ -194,7 +208,6 @@
|
|||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">False</property>
|
<property name="can_focus">False</property>
|
||||||
<property name="ellipsize">start</property>
|
<property name="ellipsize">start</property>
|
||||||
<property name="margin-bottom">12</property>
|
|
||||||
<property name="xalign">0</property>
|
<property name="xalign">0</property>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
@ -202,6 +215,19 @@
|
|||||||
<property name="row">6</property>
|
<property name="row">6</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel" id="counters">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can_focus">False</property>
|
||||||
|
<property name="ellipsize">start</property>
|
||||||
|
<property name="margin-bottom">12</property>
|
||||||
|
<property name="xalign">0</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="column">center</property>
|
||||||
|
<property name="row">7</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkFrame">
|
<object class="GtkFrame">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
@ -285,7 +311,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="column">center</property>
|
<property name="column">center</property>
|
||||||
<property name="row">7</property>
|
<property name="row">8</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
</object>
|
</object>
|
||||||
|
|||||||
Reference in New Issue
Block a user