mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
sysprof: move resources into same base path
This commit is contained in:
@ -428,7 +428,7 @@ sysprof_callgraph_view_class_init (SysprofCallgraphViewClass *klass)
|
||||
|
||||
g_object_class_install_properties (object_class, N_PROPS, properties);
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-callgraph-view.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-callgraph-view.ui");
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
gtk_widget_class_set_css_name (widget_class, "callgraphview");
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofCallgraphView, callers_column_view);
|
||||
|
||||
@ -34,7 +34,7 @@ _sysprof_css_init (void)
|
||||
g_resources_register (sysprof_get_resource ());
|
||||
|
||||
css = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_resource (css, "/libsysprof-gtk/style.css");
|
||||
gtk_css_provider_load_from_resource (css, "/org/gnome/sysprof/style.css");
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (css),
|
||||
G_MAXUINT);
|
||||
|
||||
@ -152,7 +152,7 @@ sysprof_mark_chart_row_class_init (SysprofMarkChartRowClass *klass)
|
||||
|
||||
gtk_widget_class_set_css_name (widget_class, "markchartrow");
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-mark-chart-row.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-mark-chart-row.ui");
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMarkChartRow, chart);
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMarkChartRow, layer);
|
||||
gtk_widget_class_bind_template_callback (widget_class, sysprof_mark_chart_row_activate_layer_item_cb);
|
||||
|
||||
@ -158,7 +158,7 @@ sysprof_mark_chart_class_init (SysprofMarkChartClass *klass)
|
||||
|
||||
g_object_class_install_properties (object_class, N_PROPS, properties);
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-mark-chart.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-mark-chart.ui");
|
||||
gtk_widget_class_set_css_name (widget_class, "markchart");
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMarkChart, box);
|
||||
|
||||
@ -141,7 +141,7 @@ sysprof_mark_table_class_init (SysprofMarkTableClass *klass)
|
||||
|
||||
g_object_class_install_properties (object_class, N_PROPS, properties);
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-mark-table.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-mark-table.ui");
|
||||
gtk_widget_class_set_css_name (widget_class, "marktable");
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMarkTable, box);
|
||||
|
||||
@ -325,7 +325,7 @@ sysprof_memory_callgraph_view_class_init (SysprofMemoryCallgraphViewClass *klass
|
||||
callgraph_view_class->augment_func = augment_memory;
|
||||
callgraph_view_class->load = sysprof_memory_callgraph_view_load;
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-memory-callgraph-view.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-memory-callgraph-view.ui");
|
||||
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMemoryCallgraphView, callers_self_column);
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofMemoryCallgraphView, callers_total_column);
|
||||
|
||||
@ -310,7 +310,7 @@ sysprof_weighted_callgraph_view_class_init (SysprofWeightedCallgraphViewClass *k
|
||||
callgraph_view_class->augment_func = augment_weight;
|
||||
callgraph_view_class->load = sysprof_weighted_callgraph_view_load;
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/libsysprof-gtk/sysprof-weighted-callgraph-view.ui");
|
||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/sysprof/sysprof-weighted-callgraph-view.ui");
|
||||
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofWeightedCallgraphView, callers_self_column);
|
||||
gtk_widget_class_bind_template_child (widget_class, SysprofWeightedCallgraphView, callers_total_column);
|
||||
|
||||
@ -1,17 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="/libsysprof-gtk">
|
||||
<file preprocess="xml-stripblanks">sysprof-callgraph-view.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-chart.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-chart-row.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-table.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-memory-callgraph-view.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-weighted-callgraph-view.ui</file>
|
||||
<file>style.css</file>
|
||||
</gresource>
|
||||
<gresource prefix="/org/gnome/sysprof">
|
||||
<file preprocess="xml-stripblanks">gtk/help-overlay.ui</file>
|
||||
<file preprocess="xml-stripblanks">gtk/menus.ui</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/address-layout-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-chart-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-table-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-waterfall-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/memory-allocations-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/metadata-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/process-mounts-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/storage-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/system-log-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-callgraph-view.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-counters-section.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-cpu-info-dialog.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-cpu-section.ui</file>
|
||||
@ -19,7 +20,11 @@
|
||||
<file preprocess="xml-stripblanks">sysprof-frame-utility.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-greeter.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-logs-section.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-chart-row.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-chart.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-mark-table.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-marks-section.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-memory-callgraph-view.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-memory-section.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-metadata-section.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-process-dialog.ui</file>
|
||||
@ -29,15 +34,8 @@
|
||||
<file preprocess="xml-stripblanks">sysprof-sidebar.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-time-scrubber.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-traceables-utility.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-weighted-callgraph-view.ui</file>
|
||||
<file preprocess="xml-stripblanks">sysprof-window.ui</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/address-layout-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-chart-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-table-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/memory-allocations-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/metadata-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/process-mounts-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/storage-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/system-log-symbolic.svg</file>
|
||||
<file preprocess="xml-stripblanks">icons/scalable/actions/mark-waterfall-symbolic.svg</file>
|
||||
<file>style.css</file>
|
||||
</gresource>
|
||||
</gresources>
|
||||
|
||||
Reference in New Issue
Block a user