-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for the new API of the profiler.
2005-07-28 Federico Mena Quintero <[email protected]> * perf/README: Update for the new API of the profiler. * perf/gtkwidgetprofiler.[ch]: New files with a widget profiler object. This is the old content of timers.[ch] turned into a nice object, with signals for creation and reporting. The profiler needs to maintain some state when reusing the widget, so it's useful to turn it into a real object. Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and GTK_WIDGET_PROFILER_REPORT_EXPOSE. * perf/main.c: Refactor to use GtkWidgetProfiler. * perf/appwindow.c (content_area_new): Make this just create a notebook, instead of a complex arrangement of panes. * perf/widgets.h: New header file for all the "create a widget" utility functions. * perf/treeview.c: New file. Moved the tree view part from appwindow.c over to here; GtkTreeView really needs its own tests. (tree_view_new): Set the shadow type to IN. * perf/textview.c: Likewise moved over from appwindow.c, but for GtkTextView. (text_view_new): Set the shadow type to IN. * perf/Makefile.am (testperf_SOURCES): Add the new source files; remove appwindow.h and timers.[ch]. * perf/timers.[ch]: Removed. * perf/appwindow.h: Removed.
- Loading branch information
Federico Mena Quintero
authored and
Federico Mena Quintero
committed
Jul 29, 2005
1 parent
375cb32
commit b4f5202
Showing
16 changed files
with
895 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
2005-07-28 Federico Mena Quintero <[email protected]> | ||
|
||
* perf/README: Update for the new API of the profiler. | ||
|
||
* perf/gtkwidgetprofiler.[ch]: New files with a widget profiler | ||
object. This is the old content of timers.[ch] turned into a nice | ||
object, with signals for creation and reporting. The profiler | ||
needs to maintain some state when reusing the widget, so it's | ||
useful to turn it into a real object. | ||
|
||
Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and | ||
GTK_WIDGET_PROFILER_REPORT_EXPOSE. | ||
|
||
* perf/main.c: Refactor to use GtkWidgetProfiler. | ||
|
||
* perf/appwindow.c (content_area_new): Make this just create a | ||
notebook, instead of a complex arrangement of panes. | ||
|
||
* perf/widgets.h: New header file for all the "create a widget" | ||
utility functions. | ||
|
||
* perf/treeview.c: New file. Moved the tree view part from | ||
appwindow.c over to here; GtkTreeView really needs its own tests. | ||
(tree_view_new): Set the shadow type to IN. | ||
|
||
* perf/textview.c: Likewise moved over from appwindow.c, but for | ||
GtkTextView. | ||
(text_view_new): Set the shadow type to IN. | ||
|
||
* perf/Makefile.am (testperf_SOURCES): Add the new source files; | ||
remove appwindow.h and timers.[ch]. | ||
|
||
* perf/timers.[ch]: Removed. | ||
|
||
* perf/appwindow.h: Removed. | ||
|
||
2005-07-29 Tor Lillqvist <[email protected]> | ||
|
||
* gdk/win32/gdkevents-win32.c: Remove ifdeffed out code relating | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
2005-07-28 Federico Mena Quintero <[email protected]> | ||
|
||
* perf/README: Update for the new API of the profiler. | ||
|
||
* perf/gtkwidgetprofiler.[ch]: New files with a widget profiler | ||
object. This is the old content of timers.[ch] turned into a nice | ||
object, with signals for creation and reporting. The profiler | ||
needs to maintain some state when reusing the widget, so it's | ||
useful to turn it into a real object. | ||
|
||
Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and | ||
GTK_WIDGET_PROFILER_REPORT_EXPOSE. | ||
|
||
* perf/main.c: Refactor to use GtkWidgetProfiler. | ||
|
||
* perf/appwindow.c (content_area_new): Make this just create a | ||
notebook, instead of a complex arrangement of panes. | ||
|
||
* perf/widgets.h: New header file for all the "create a widget" | ||
utility functions. | ||
|
||
* perf/treeview.c: New file. Moved the tree view part from | ||
appwindow.c over to here; GtkTreeView really needs its own tests. | ||
(tree_view_new): Set the shadow type to IN. | ||
|
||
* perf/textview.c: Likewise moved over from appwindow.c, but for | ||
GtkTextView. | ||
(text_view_new): Set the shadow type to IN. | ||
|
||
* perf/Makefile.am (testperf_SOURCES): Add the new source files; | ||
remove appwindow.h and timers.[ch]. | ||
|
||
* perf/timers.[ch]: Removed. | ||
|
||
* perf/appwindow.h: Removed. | ||
|
||
2005-07-29 Tor Lillqvist <[email protected]> | ||
|
||
* gdk/win32/gdkevents-win32.c: Remove ifdeffed out code relating | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
2005-07-28 Federico Mena Quintero <[email protected]> | ||
|
||
* perf/README: Update for the new API of the profiler. | ||
|
||
* perf/gtkwidgetprofiler.[ch]: New files with a widget profiler | ||
object. This is the old content of timers.[ch] turned into a nice | ||
object, with signals for creation and reporting. The profiler | ||
needs to maintain some state when reusing the widget, so it's | ||
useful to turn it into a real object. | ||
|
||
Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and | ||
GTK_WIDGET_PROFILER_REPORT_EXPOSE. | ||
|
||
* perf/main.c: Refactor to use GtkWidgetProfiler. | ||
|
||
* perf/appwindow.c (content_area_new): Make this just create a | ||
notebook, instead of a complex arrangement of panes. | ||
|
||
* perf/widgets.h: New header file for all the "create a widget" | ||
utility functions. | ||
|
||
* perf/treeview.c: New file. Moved the tree view part from | ||
appwindow.c over to here; GtkTreeView really needs its own tests. | ||
(tree_view_new): Set the shadow type to IN. | ||
|
||
* perf/textview.c: Likewise moved over from appwindow.c, but for | ||
GtkTextView. | ||
(text_view_new): Set the shadow type to IN. | ||
|
||
* perf/Makefile.am (testperf_SOURCES): Add the new source files; | ||
remove appwindow.h and timers.[ch]. | ||
|
||
* perf/timers.[ch]: Removed. | ||
|
||
* perf/appwindow.h: Removed. | ||
|
||
2005-07-29 Tor Lillqvist <[email protected]> | ||
|
||
* gdk/win32/gdkevents-win32.c: Remove ifdeffed out code relating | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.