Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7782 → Rev 7781

/programs/cmm/examples/menu.c
3,7 → 3,6
#include "../lib/io.h"
#include "../lib/list_box.h"
#include "../lib/gui.h"
#include "../lib/fs.h"
 
struct _object
{
10,8 → 9,8
int x,y,w,h,id;
};
 
_object butv = { 20, 20, 100, 20, 10};
_object buta = {150, 20, 100, 20, 20};
_object butv = { 20, 20, 100, 30, 10};
_object buta = {150, 20, 100, 30, 20};
 
char vegetables[] =
"Onion
28,13 → 27,12
Goat
Rabbit";
 
byte category;
 
 
void main()
{
dword menu_id=0, click_id;
proc_info Form;
byte current_animal=1, current_veg=3;
int id;
 
loop() switch(WaitEvent())
43,14 → 41,12
id=GetButtonID();
if (id==1) ExitProcess();
if (id==butv.id) {
menu_id = butv.id;
open_lmenu(Form.left+3 + butv.x, Form.top+skin_height + butv.y + butv.h,
MENU_ALIGN_TOP_LEFT, current_veg, #vegetables);
menu.selected = category+1;
menu.show(Form.left+5 + butv.x, Form.top+skin_height + butv.y + butv.h, 140, #vegetables, butv.id);
}
if (id==buta.id) {
menu_id = buta.id;
open_lmenu(Form.left+5 + buta.x + buta.w, Form.top+skin_height + buta.y + buta.h,
MENU_ALIGN_TOP_RIGHT, current_animal, #animals);
menu.selected = 0;
menu.show(Form.left+5 + buta.x, Form.top+skin_height + buta.y + buta.h, 140, #animals, buta.id);
}
break;
 
59,10 → 55,8
break;
case evReDraw:
if (click_id = get_menu_click()) {
if (menu_id == butv.id) current_veg = click_id;
if (menu_id == buta.id) current_animal = click_id;
menu_id = 0;
if (menu.cur_y) {
if (menu.cur_y > butv.id) && (menu.cur_y < buta.id) category = menu.cur_y - butv.id;
}
DefineAndDrawWindow(215,100,350,300,0x34,0xFFFFFF,"Window header",0);
GetProcessInfo(#Form, SelfInfo);