Subversion Repositories Kolibri OS

Rev

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

Rev 648 Rev 675
Line 1... Line 1...
1
;scroller's flags
1
;scroller's flags
2
sc_check_vertical                     = 1b
2
sc_check_vertical                     = 00000001b
3
sc_check_horizontal                   = 10b
3
sc_check_horizontal                   = 00000010b
4
sc_check_init_child_buttons           = 100b
4
sc_check_init_child_buttons           = 00000100b
5
sc_check_3D_type                      = 10000b
5
sc_active                             = 00001000b
6
sc_scroll_bar_move                    = 100000b
6
sc_check_3D_type                      = 00010000b
7
sc_active                             = 1000000b
7
sc_scroll_bar_move                    = 00100000b
-
 
8
 
8
sc_redraw                             = 10000000b
9
sc_redraw                             = 10000000b
9
sc_redraw_off                         = 01111111b
10
sc_redraw_off                         = 01111111b
10
sc_full_redraw                        = 11100000b
11
sc_full_redraw                        = 10101000b
11
sc_scroll_bar_move_off                = 11011111b
12
sc_scroll_bar_move_off                = 11011111b
12
sc_move_active_off                    = 10011111b
13
sc_move_active_off                    = 11010111b
Line 13... Line 14...
13
 
14
 
14
sc_first_child_button_pressed         = 1b
15
sc_first_child_button_pressed         = 00000001b
15
sc_first_child_button_pressed_off     = 11111110b
16
sc_first_child_button_pressed_off     = 11111110b
16
sc_second_child_button_pressed        = 10000b
17
sc_second_child_button_pressed        = 00010000b
Line 17... Line 18...
17
sc_second_child_button_pressed_off    = 11101111b
18
sc_second_child_button_pressed_off    = 11101111b
18
 
19