~ubuntu-branches/ubuntu/intrepid/htop/intrepid

« back to all changes in this revision

Viewing changes to Settings.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2004-11-27 10:10:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041127101017-vwknw2ipfvxchno4
Tags: 0.5-1
* New upstream version.
  - fixes problem with wrongly displayed CPU bar (Closes: #283212)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
*/
11
11
 
12
12
#include "String.h"
13
 
#include "ProcessFilter.h"
 
13
#include "ProcessList.h"
 
14
#include "Header.h"
 
15
 
 
16
#include "debug.h"
14
17
 
15
18
 
16
19
typedef struct Settings_ {
17
 
   ProcessFilter* filter;
18
20
   char* userSettings;
 
21
   ProcessList* pl;
 
22
   Header* header;
19
23
} Settings;
20
24
 
21
25
 
22
 
Settings* Settings_new(ProcessFilter* pf);
 
26
Settings* Settings_new(ProcessList* pl, Header* header);
23
27
 
24
28
void Settings_delete(Settings* this);
25
29
 
 
30
 
 
31
 
26
32
bool Settings_read(Settings* this, char* fileName);
27
33
 
28
34
bool Settings_write(Settings* this);