Subversion Repositories Kolibri OS

Rev

Rev 7503 | Rev 7516 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7503 Rev 7504
Line 4... Line 4...
4
#include "kosSyst.h"
4
#include "kosSyst.h"
5
//#include "KosFile.h"
5
//#include "KosFile.h"
6
 
6
 
7
#define DEFAULT_CELL_W 80
7
#define DEFAULT_CELL_W 82
Line 8... Line 8...
8
#define DEFAULT_CELL_H 19
8
#define DEFAULT_CELL_H 21
9
 
9
 
Line 10... Line 10...
10
extern DWORD col_count, row_count;
10
extern DWORD col_count, row_count;
11
extern char ***cells;
11
extern char ***cells;
12
extern DWORD *cell_w, *cell_h;
12
extern DWORD *cell_w, *cell_h;
13
extern char ***values;
13
extern char ***values;
Line 155... Line 155...
155
	{
155
	{
156
		cell_w[i] = DEFAULT_CELL_W;
156
		cell_w[i] = DEFAULT_CELL_W;
157
	}
157
	}
158
 
158
	cell_w[0] = 30; //make row headers smaller
-
 
159
 
Line 159... Line 160...
159
	for (i = 0; i < row_count; i++)
160
	for (i = 0; i < row_count; i++)
160
	{
161
	{
161
		cell_h[i] = DEFAULT_CELL_H;
162
		cell_h[i] = DEFAULT_CELL_H;
162
	}
163
	}