Subversion Repositories Kolibri OS

Rev

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

Rev 5465 Rev 5598
Line 1... Line 1...
1
//list_box
1
//list_box
-
 
2
#ifndef INCLUDE_LIST_BOX_H
-
 
3
#define INCLUDE_LIST_BOX_H
-
 
4
 
-
 
5
#ifndef INCLUDE_KOLIBRI_H
-
 
6
#include "../lib/kolibri.h"
-
 
7
#endif
Line 2... Line 8...
2
 
8
 
3
struct llist
9
struct llist
4
{
10
{
5
	int x, y, w, h, min_h, line_h, text_y;
11
	int x, y, w, h, min_h, line_h, text_y;
Line 149... Line 155...
149
	if (current==count-1) && (first==count-visible) return 0;
155
	if (current==count-1) && (first==count-visible) return 0;
150
	current=count-1;
156
	current=count-1;
151
	first=count-visible;
157
	first=count-visible;
152
	return 1;
158
	return 1;
153
}
159
}
154
>
160
 
-
 
161
#endif
-
 
162
>
155
>
163
>