~ubuntu-branches/ubuntu/oneiric/gnome-system-monitor/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/README.hacking

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2005-08-26 18:38:24 UTC
  • Revision ID: james.westby@ubuntu.com-20050826183824-zh2978nxikpkfxyd
Tags: upstream-2.8.1
ImportĀ upstreamĀ versionĀ 2.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
******* Procman source code overview ************
 
4
 
 
5
procman.c: 
 
6
  * main function
 
7
  * load and save configuration (procman_get_data, procman_save_config)
 
8
  
 
9
proctable.c:
 
10
  * create e-tree (proctable_new)
 
11
  * update display (proctable_update_all)
 
12
  * clear tree (proctable_clear)
 
13
  * get list of processes (proctable_update_list)
 
14
  * handle all adding and removing process from e-tree
 
15
  
 
16
interface.c:
 
17
  * create UI for main window only (create_main_window)
 
18
  
 
19
callbacks.c:
 
20
  * handle all signal callbacks for main window
 
21
  
 
22
infoview.c:
 
23
  * create "more info" tab at bottom of window (infoview_create)
 
24
  * update the values (infoview_update)
 
25
 
 
26
procdialogs.c:
 
27
  * create and manage the hide, renice, kill, and preferences dialogs
 
28
 
 
29
memmaps.c:
 
30
  * create and manage the memmaps dialog
 
31
  
 
32
prettytable.c:
 
33
  * scan the .desktop files to give icons and application names (prettytable_new)
 
34
  * load them in a seperate thread for delay loading (prettytable_load_async)
 
35
  * get the icon or app name given the process name (prettytable_get_[icon,name])
 
36
  
 
37
favorites.c:
 
38
  * Named somewhat improperly - handles the hidden ("blacklisted") processes
 
39
  * gets and saves blacklist to diask (create_blacklist_dialog)
 
40
  * determines whether a process is blacklisted (is_process_blacklisted)
 
41
  * creates and handles the Hidden Processes dialog (create_blacklist_dialog)
 
42