FunctionBar.c 3.44 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
/*
htop - FunctionBar.c
Hisham Muhammad's avatar
Hisham Muhammad committed
3
(C) 2004-2011 Hisham H. Muhammad
Hisham Muhammad's avatar
Hisham Muhammad committed
4
5
6
7
8
9
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "FunctionBar.h"

Hisham Muhammad's avatar
Hisham Muhammad committed
10
#include "CRT.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
11

Hisham Muhammad's avatar
Hisham Muhammad committed
12
#include <assert.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
13
14
15
16
17
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>

/*{
Hisham Muhammad's avatar
Hisham Muhammad committed
18
#include "Object.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
21
22
23
24
25
26
27
28
29
30

typedef struct FunctionBar_ {
   Object super;
   int size;
   char** functions;
   char** keys;
   int* events;
   bool staticData;
} FunctionBar;

}*/

Hisham Muhammad's avatar
Hisham Muhammad committed
31
static const char* FunctionBar_FKeys[] = {"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", NULL};
Hisham Muhammad's avatar
Hisham Muhammad committed
32

Hisham Muhammad's avatar
Hisham Muhammad committed
33
static const char* FunctionBar_FLabels[] = {"      ", "      ", "      ", "      ", "      ", "      ", "      ", "      ", "      ", "      ", NULL};
Hisham Muhammad's avatar
Hisham Muhammad committed
34

Hisham Muhammad's avatar
Hisham Muhammad committed
35
static int FunctionBar_FEvents[] = {KEY_F(1), KEY_F(2), KEY_F(3), KEY_F(4), KEY_F(5), KEY_F(6), KEY_F(7), KEY_F(8), KEY_F(9), KEY_F(10)};
Hisham Muhammad's avatar
Hisham Muhammad committed
36

37
38
39
40
ObjectClass FunctionBar_class = {
   .delete = FunctionBar_delete
};

Hisham Muhammad's avatar
Hisham Muhammad committed
41
FunctionBar* FunctionBar_new(const char** functions, const char** keys, int* events) {
42
   FunctionBar* this = AllocThis(FunctionBar);
43
44
45
46
47
48
49
   this->functions = calloc(16, sizeof(char*));
   if (!functions) {
      functions = FunctionBar_FLabels;
   }
   for (int i = 0; i < 15 && functions[i]; i++) {
      this->functions[i] = strdup(functions[i]);
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
50
51
   if (keys && events) {
      this->staticData = false; 
Hisham Muhammad's avatar
Hisham Muhammad committed
52
53
      this->keys = malloc(sizeof(char*) * 15);
      this->events = malloc(sizeof(int) * 15);
Hisham Muhammad's avatar
oops    
Hisham Muhammad committed
54
55
      int i = 0;
      while (i < 15 && functions[i]) {
Hisham Muhammad's avatar
Hisham Muhammad committed
56
         this->keys[i] = strdup(keys[i]);
Hisham Muhammad's avatar
Hisham Muhammad committed
57
         this->events[i] = events[i];
Hisham Muhammad's avatar
oops    
Hisham Muhammad committed
58
         i++;
Hisham Muhammad's avatar
Hisham Muhammad committed
59
      }
Hisham Muhammad's avatar
oops    
Hisham Muhammad committed
60
      this->size = i;
Hisham Muhammad's avatar
Hisham Muhammad committed
61
62
   } else {
      this->staticData = true;
Hisham Muhammad's avatar
Hisham Muhammad committed
63
      this->keys = (char**) FunctionBar_FKeys;
Hisham Muhammad's avatar
Hisham Muhammad committed
64
      this->events = FunctionBar_FEvents;
Hisham Muhammad's avatar
Hisham Muhammad committed
65
      this->size = 10;
Hisham Muhammad's avatar
Hisham Muhammad committed
66
67
68
69
70
71
   }
   return this;
}

void FunctionBar_delete(Object* cast) {
   FunctionBar* this = (FunctionBar*) cast;
72
73
74
75
   for (int i = 0; i < 15 && this->functions[i]; i++) {
      free(this->functions[i]);
   }
   free(this->functions);
Hisham Muhammad's avatar
Hisham Muhammad committed
76
77
78
79
80
81
82
83
84
85
   if (!this->staticData) {
      for (int i = 0; i < this->size; i++) {
         free(this->keys[i]);
      }
      free(this->keys);
      free(this->events);
   }
   free(this);
}

Hisham Muhammad's avatar
Hisham Muhammad committed
86
void FunctionBar_setLabel(FunctionBar* this, int event, const char* text) {
Hisham Muhammad's avatar
Hisham Muhammad committed
87
88
89
   for (int i = 0; i < this->size; i++) {
      if (this->events[i] == event) {
         free(this->functions[i]);
Hisham Muhammad's avatar
Hisham Muhammad committed
90
         this->functions[i] = strdup(text);
Hisham Muhammad's avatar
Hisham Muhammad committed
91
92
93
94
95
         break;
      }
   }
}

96
void FunctionBar_draw(const FunctionBar* this, char* buffer) {
Hisham Muhammad's avatar
Hisham Muhammad committed
97
98
99
   FunctionBar_drawAttr(this, buffer, CRT_colors[FUNCTION_BAR]);
}

100
void FunctionBar_drawAttr(const FunctionBar* this, char* buffer, int attr) {
Hisham Muhammad's avatar
Hisham Muhammad committed
101
102
103
104
105
106
107
108
109
110
111
   attrset(CRT_colors[FUNCTION_BAR]);
   mvhline(LINES-1, 0, ' ', COLS);
   int x = 0;
   for (int i = 0; i < this->size; i++) {
      attrset(CRT_colors[FUNCTION_KEY]);
      mvaddstr(LINES-1, x, this->keys[i]);
      x += strlen(this->keys[i]);
      attrset(CRT_colors[FUNCTION_BAR]);
      mvaddstr(LINES-1, x, this->functions[i]);
      x += strlen(this->functions[i]);
   }
112
   if (buffer) {
Hisham Muhammad's avatar
Hisham Muhammad committed
113
114
      attrset(attr);
      mvaddstr(LINES-1, x, buffer);
115
116
117
118
      CRT_cursorX = x + strlen(buffer);
      curs_set(1);
   } else {
      curs_set(0);
Hisham Muhammad's avatar
Hisham Muhammad committed
119
120
121
122
   }
   attrset(CRT_colors[RESET_COLOR]);
}

123
int FunctionBar_synthesizeEvent(const FunctionBar* this, int pos) {
Hisham Muhammad's avatar
Hisham Muhammad committed
124
125
126
127
128
129
130
131
132
133
   int x = 0;
   for (int i = 0; i < this->size; i++) {
      x += strlen(this->keys[i]);
      x += strlen(this->functions[i]);
      if (pos < x) {
         return this->events[i];
      }
   }
   return ERR;
}