mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-25 10:30:50 +00:00
rects
This commit is contained in:
parent
2bcc0b0ac3
commit
3c14dfe9d1
@ -3037,9 +3037,9 @@ textbg_white: .byte $7F
|
||||
press_ok_to_rect: DEFINE_RECT 39,25,360,80
|
||||
prompt_rect: DEFINE_RECT 40,60,360,80
|
||||
current_target_file_pos: DEFINE_POINT 65,43
|
||||
LAE82: DEFINE_POINT 65,51
|
||||
LAE86: DEFINE_RECT 65,35,394,42
|
||||
LAE8E: DEFINE_RECT 65,43,394,50
|
||||
current_dest_file_pos: DEFINE_POINT 65,51
|
||||
current_target_file_rect: DEFINE_RECT 65,35,394,42
|
||||
current_dest_file_rect: DEFINE_RECT 65,43,394,50
|
||||
|
||||
str_cancel_label:
|
||||
PASCAL_STRING "Cancel Esc"
|
||||
|
@ -9774,6 +9774,7 @@ not_trash:
|
||||
finish: jsr done_dialog_phase1
|
||||
|
||||
;; Restore space to start of icon name
|
||||
;; BUG: For drop on window, updates arbitrary icon. Also unnecessary???
|
||||
lda drag_drop_param
|
||||
jsr icon_entry_name_lookup
|
||||
ldy #1
|
||||
@ -12792,8 +12793,8 @@ do2: ldy #1
|
||||
jsr compose_file_count_string
|
||||
lda winfo_alert_dialog
|
||||
jsr set_port_from_window_id
|
||||
jsr paint_rectAE86_white
|
||||
jsr paint_rectAE8E_white
|
||||
jsr clear_target_file_rect
|
||||
jsr clear_dest_file_rect
|
||||
jsr copy_dialog_param_addr_to_ptr
|
||||
ldy #$03
|
||||
lda (ptr),y
|
||||
@ -12814,7 +12815,7 @@ do2: ldy #1
|
||||
sta ptr+1
|
||||
stx ptr
|
||||
jsr copy_name_to_buf1_adjust_case
|
||||
MGTK_RELAY_CALL MGTK::MoveTo, desktop_aux::LAE82
|
||||
MGTK_RELAY_CALL MGTK::MoveTo, desktop_aux::current_dest_file_pos
|
||||
addr_call draw_text1, path_buf1
|
||||
yax_call MGTK_RELAY, MGTK::MoveTo, desktop_aux::copy_file_count_pos2
|
||||
addr_call draw_text1, str_file_count
|
||||
@ -12918,7 +12919,7 @@ do2: ldy #1
|
||||
jsr compose_file_count_string
|
||||
lda winfo_alert_dialog
|
||||
jsr set_port_from_window_id
|
||||
jsr paint_rectAE86_white
|
||||
jsr clear_target_file_rect
|
||||
jsr copy_dialog_param_addr_to_ptr
|
||||
ldy #3
|
||||
lda (ptr),y
|
||||
@ -13091,7 +13092,7 @@ do3: ldy #1
|
||||
jsr compose_file_count_string
|
||||
lda winfo_alert_dialog
|
||||
jsr set_port_from_window_id
|
||||
jsr paint_rectAE86_white
|
||||
jsr clear_target_file_rect
|
||||
jsr copy_dialog_param_addr_to_ptr
|
||||
ldy #3
|
||||
lda ($06),y
|
||||
@ -13378,7 +13379,7 @@ do3: ldy #1
|
||||
jsr compose_file_count_string
|
||||
lda winfo_alert_dialog
|
||||
jsr set_port_from_window_id
|
||||
jsr paint_rectAE86_white
|
||||
jsr clear_target_file_rect
|
||||
jsr copy_dialog_param_addr_to_ptr
|
||||
ldy #3
|
||||
lda ($06),y
|
||||
@ -13465,7 +13466,7 @@ do3: ldy #1
|
||||
jsr compose_file_count_string
|
||||
lda winfo_alert_dialog
|
||||
jsr set_port_from_window_id
|
||||
jsr paint_rectAE86_white
|
||||
jsr clear_target_file_rect
|
||||
jsr copy_dialog_param_addr_to_ptr
|
||||
ldy #3
|
||||
lda ($06),y
|
||||
@ -14928,14 +14929,14 @@ nonzero_flag: ; high bit set once a non-zero digit seen
|
||||
|
||||
;;; ============================================================
|
||||
|
||||
paint_rectAE86_white:
|
||||
clear_target_file_rect:
|
||||
jsr set_fill_white
|
||||
MGTK_RELAY_CALL MGTK::PaintRect, desktop_aux::LAE86
|
||||
MGTK_RELAY_CALL MGTK::PaintRect, desktop_aux::current_target_file_rect
|
||||
rts
|
||||
|
||||
paint_rectAE8E_white:
|
||||
clear_dest_file_rect:
|
||||
jsr set_fill_white
|
||||
MGTK_RELAY_CALL MGTK::PaintRect, desktop_aux::LAE8E
|
||||
MGTK_RELAY_CALL MGTK::PaintRect, desktop_aux::current_dest_file_rect
|
||||
rts
|
||||
|
||||
set_fill_white:
|
||||
|
Loading…
Reference in New Issue
Block a user