Subversion Repositories Kolibri OS

Rev

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

Rev 6026 Rev 6027
Line 11... Line 11...
11
;;         GNU GENERAL PUBLIC LICENSE                              ;;
11
;;         GNU GENERAL PUBLIC LICENSE                              ;;
12
;;          Version 2, June 1991                                   ;;
12
;;          Version 2, June 1991                                   ;;
13
;;                                                                 ;;
13
;;                                                                 ;;
14
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 15... Line 15...
15
 
15
 
Line 16... Line 16...
16
version equ '0.25'
16
version equ '0.26'
17
 
17
 
18
; connection status
18
; connection status
19
STATUS_DISCONNECTED     = 0
19
STATUS_DISCONNECTED     = 0
20
STATUS_RESOLVING        = 1
20
STATUS_RESOLVING        = 1
-
 
21
STATUS_CONNECTING       = 2
Line 21... Line 22...
21
STATUS_CONNECTING       = 2
22
STATUS_CONNECTED        = 3
22
STATUS_CONNECTED        = 3
23
STATUS_LOGGED_IN        = 4
23
 
24
 
24
; window flags
25
; window flags
Line 471... Line 472...
471
str_dnserr              db 3, '5* Unable to resolve hostname', 10, 0
472
str_dnserr              db 3, '5* Unable to resolve hostname', 10, 0
472
str_refused             db 3, '5* Connection refused', 10, 0
473
str_refused             db 3, '5* Connection refused', 10, 0
473
str_srv_disconnected    db 3, '5* Server disconnected', 10, 0
474
str_srv_disconnected    db 3, '5* Server disconnected', 10, 0
474
str_disconnected        db 3, '5* Disconnected', 10, 0
475
str_disconnected        db 3, '5* Disconnected', 10, 0
475
str_reconnect           db 3, '5* Connection reset by user', 10, 0
476
str_reconnect           db 3, '5* Connection reset by user', 10, 0
476
str_notconnected        db 3, '5* Not connected to server', 10, 0
477
str_notconnected        db 3, '5* You are not connected', 10, 0
477
str_notchannel          db 3, '5* You are not on a channel', 10, 0
478
str_notchannel          db 3, '5* You are not on a channel', 10, 0
-
 
479
str_notloggedin         db 3, '5* You are not logged in to the server', 10, 0
Line 478... Line 480...
478
 
480
 
479
str_1                   db 3, '13 -', 0
481
str_1                   db 3, '13 -', 0
Line 480... Line 482...
480
str_2                   db '- ', 0
482
str_2                   db '- ', 0
Line 569... Line 571...
569
        edit_box_mouse, 'edit_box_mouse',\
571
        edit_box_mouse, 'edit_box_mouse',\
570
        scrollbar_draw, 'scrollbar_v_draw',\
572
        scrollbar_draw, 'scrollbar_v_draw',\
571
        scrollbar_mouse,'scrollbar_v_mouse'
573
        scrollbar_mouse,'scrollbar_v_mouse'
Line 572... Line 574...
572
 
574
 
573
        ;         width, left, top
575
        ;         width, left, top
574
edit1   edit_box  0, 0, 0, 0xffffff, 0x6f9480, 0, 0, 0x000000, USERCMD_MAX_SIZE, usercommand, mouse_dd, ed_always_focus, 25, 25
576
edit1   edit_box  0, 0, 0, 0xffffff, 0x6f9480, 0, 0, 0x000000, USERCMD_MAX_SIZE, input_text, mouse_dd, ed_always_focus, 25, 25
575
        ;         xsize, xpos, ysize, ypos, btn_height, max, cur, pos, bgcol, frcol, linecol
577
        ;         xsize, xpos, ysize, ypos, btn_height, max, cur, pos, bgcol, frcol, linecol
576
scroll1 scrollbar SCROLLBAR_WIDTH, 0, 0, TOP_Y, SCROLLBAR_WIDTH, 0, 0, 0, 0, 0, 0, 1
578
scroll1 scrollbar SCROLLBAR_WIDTH, 0, 0, TOP_Y, SCROLLBAR_WIDTH, 0, 0, 0, 0, 0, 0, 1
Line 577... Line 579...
577
scroll2 scrollbar SCROLLBAR_WIDTH, 0, 0, TOP_Y, SCROLLBAR_WIDTH, 0, 0, 0, 0, 0, 0, 1
579
scroll2 scrollbar SCROLLBAR_WIDTH, 0, 0, TOP_Y, SCROLLBAR_WIDTH, 0, 0, 0, 0, 0, 0, 1
578
 
580
 
Line 579... Line 581...
579
usercommand     db '/server chat.freenode.net', 0
581
input_text      db '/server chat.freenode.net', 0
Line -... Line 582...
-
 
582
                rb MAX_COMMAND_LEN
-
 
583
 
-
 
584
I_END:
580
                rb MAX_COMMAND_LEN
585
 
581
 
586
user_command    rb MAX_COMMAND_LEN*4
Line 582... Line 587...
582
I_END:
587
.size           dd ?
583
 
588