diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-21 16:21:37 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-21 16:21:37 +0000 |
commit | 538813c1332b409aae3f9a05921fddb6e6734bb5 (patch) | |
tree | 719c0cda9cffbf2c0e02d36ff5690c30719f79ca /chrome/browser/gtk/task_manager_gtk.cc | |
parent | dd74b4d035de7833e5085f94a960ac1787edf0d3 (diff) | |
download | chromium_src-538813c1332b409aae3f9a05921fddb6e6734bb5.zip chromium_src-538813c1332b409aae3f9a05921fddb6e6734bb5.tar.gz chromium_src-538813c1332b409aae3f9a05921fddb6e6734bb5.tar.bz2 |
Task Manager for OS X: Set up columns, show rows.
This is more work-in-progress for the OS X task manager. The table header is complete (the right columns are there, and right-clicking the header gives a column-selection context menu just like in e.g. Task Manager), and the rows data is displayed. However, all the metrics (memory, cpu, etc) seem to be all wrong. Because of this and because too much stuff is still unimplemented (favicons in rows, the "kill process" button, the link, etc), I won't commit the change to MainMenu.xib, so users still won't be able to open this dialog.
BUG=13156
TEST=Connect view->task manager to first responder's commandDispatch:, set the menu item to "enabled", and give the menu item the tag 40005. Now opening the task manager should actually display data. Right-clicking the table header should show a functional menu that lets you select which columns to display. Clicking a column header should not select the column, double-clicking an item should not edit it. Also, when resizing the task manager, stuff should now behave in a sane way.
Review URL: http://codereview.chromium.org/208043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26687 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/task_manager_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/task_manager_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/task_manager_gtk.cc b/chrome/browser/gtk/task_manager_gtk.cc index 4532a03..d0a29c0 100644 --- a/chrome/browser/gtk/task_manager_gtk.cc +++ b/chrome/browser/gtk/task_manager_gtk.cc @@ -348,7 +348,7 @@ void TaskManagerGtk::Init() { gtk_window_set_type_hint(GTK_WINDOW(dialog_), GDK_WINDOW_TYPE_HINT_NORMAL); // The response button should not be sensitive when the dialog is first opened - // because the selecetion is initially empty. + // because the selection is initially empty. gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog_), kTaskManagerResponseKill, FALSE); |