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

« back to all changes in this revision

Viewing changes to AvailableMetersListBox.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:
 
1
/* Do not edit this file. It was automatically genarated. */
 
2
 
 
3
#ifndef HEADER_AvailableMetersListBox
 
4
#define HEADER_AvailableMetersListBox
 
5
 
 
6
#include "Settings.h"
 
7
#include "Header.h"
 
8
#include "ScreenManager.h"
 
9
 
 
10
#include "ListBox.h"
 
11
 
 
12
#include "debug.h"
 
13
#include <assert.h>
 
14
 
 
15
 
 
16
typedef struct AvailableMetersListBox_ {
 
17
   ListBox super;
 
18
 
 
19
   Settings* settings;
 
20
   ListBox* leftBox;
 
21
   ListBox* rightBox;
 
22
   ScreenManager* scr;
 
23
} AvailableMetersListBox;
 
24
 
 
25
 
 
26
AvailableMetersListBox* AvailableMetersListBox_new(Settings* settings, ListBox* leftMeters, ListBox* rightMeters, ScreenManager* scr);
 
27
 
 
28
void AvailableMetersListBox_delete(Object* object);
 
29
 
 
30
 
 
31
HandlerResult AvailableMetersListBox_eventHandler(ListBox* super, int ch);
 
32
 
 
33
#endif