~ubuntu-branches/ubuntu/feisty/htop/feisty

« back to all changes in this revision

Viewing changes to ScreenManager.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2006-08-14 13:03:15 UTC
  • mfrom: (1.1.6 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20060814130315-mm00h2owyqz2zr2j
Tags: 0.6.3-1
* New upstream version.
  - allows to rekill tagged group of processes (Closes: #375219)
* Bumped Standards-Version to 3.7.2 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Do not edit this file. It was automatically genarated. */
 
1
/* Do not edit this file. It was automatically generated. */
2
2
 
3
3
#ifndef HEADER_ScreenManager
4
4
#define HEADER_ScreenManager
9
9
in the source distribution for its full text.
10
10
*/
11
11
 
12
 
#include "ListBox.h"
 
12
#include "Panel.h"
13
13
#include "Object.h"
14
 
#include "TypedVector.h"
 
14
#include "Vector.h"
15
15
#include "FunctionBar.h"
16
16
 
17
17
#include "debug.h"
31
31
   int x2;
32
32
   int y2;
33
33
   Orientation orientation;
34
 
   TypedVector* items;
 
34
   Vector* items;
 
35
   Vector* fuBars;
35
36
   int itemCount;
36
37
   FunctionBar* fuBar;
37
 
   TypedVector* fuBars;
38
38
   bool owner;
39
39
} ScreenManager;
40
40
 
45
45
 
46
46
inline int ScreenManager_size(ScreenManager* this);
47
47
 
48
 
void ScreenManager_add(ScreenManager* this, ListBox* item, FunctionBar* fuBar, int size);
 
48
void ScreenManager_add(ScreenManager* this, Panel* item, FunctionBar* fuBar, int size);
49
49
 
50
 
ListBox* ScreenManager_remove(ScreenManager* this, int index);
 
50
Panel* ScreenManager_remove(ScreenManager* this, int index);
51
51
 
52
52
void ScreenManager_setFunctionBar(ScreenManager* this, FunctionBar* fuBar);
53
53
 
54
54
void ScreenManager_resize(ScreenManager* this, int x1, int y1, int x2, int y2);
55
55
 
56
 
void ScreenManager_run(ScreenManager* this, ListBox** lastFocus, int* lastKey);
 
56
void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey);
57
57
 
58
58
#endif