Changeset 58 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog


Ignore:
Timestamp:
Nov 18, 2010, 2:42:28 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Exiting menu with ESC can now be canceled.
Location:
trunk/Assembly_Library/Src/Menu/Dialog
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Menu/Dialog/Dialog.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   6.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Common functions for many dialogs.
     
    6363;--------------------------------------------------------------------
    6464; Dialog_EventAnyThatClosesDialog
     65; Dialog_EventExitMenu
    6566;   Parameters:
    6667;       SS:BP:  Ptr to DIALOG
     
    7374Dialog_EventAnyThatClosesDialog:
    7475    call    MenuInit_CloseMenuWindow
     76ALIGN JUMP_ALIGN
     77Dialog_EventExitMenu:
    7578    stc
    7679    ret
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogDrive.asm

    r54 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   22.10.2010
    4 ; Last update   :   23.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays drive dialog.
     
    9191istruc MENUEVENT
    9292    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    93     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     93    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    9494    at  MENUEVENT.IdleProcessing,               dw  Dialog_EventNotHandled
    9595    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm

    r54 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   6.9.2010
    4 ; Last update   :   24.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays file dialog.
     
    101101istruc MENUEVENT
    102102    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  InitializeMenuinitFromSSBP
    103     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     103    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    104104    at  MENUEVENT.IdleProcessing,               dw  Dialog_EventNotHandled
    105105    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogMessage.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   6.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays message dialog.
     
    5959istruc MENUEVENT
    6060    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    61     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     61    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    6262    at  MENUEVENT.IdleProcessing,               dw  Dialog_EventNotHandled
    6363    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogProgress.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   15.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays progress bar dialog and starts progress task.
     
    120120istruc MENUEVENT
    121121    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    122     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     122    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    123123    at  MENUEVENT.IdleProcessing,               dw  .IdleProcessing
    124124    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogSelection.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   13.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays selection dialog.
     
    5151istruc MENUEVENT
    5252    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    53     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     53    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    5454    at  MENUEVENT.IdleProcessing,               dw  Dialog_EventNotHandled
    5555    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogString.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   12.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays word input dialog.
     
    6262istruc MENUEVENT
    6363    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    64     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     64    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    6565    at  MENUEVENT.IdleProcessing,               dw  .IdleProcessing
    6666    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogWord.asm

    r52 r58  
    22; Project name  :   Assembly Library
    33; Created date  :   10.8.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   18.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays word input dialog.
     
    6262istruc MENUEVENT
    6363    at  MENUEVENT.InitializeMenuinitFromDSSI,   dw  .InitializeMenuinitFromDSSI
    64     at  MENUEVENT.ExitMenu,                     dw  Dialog_EventNotHandled
     64    at  MENUEVENT.ExitMenu,                     dw  Dialog_EventExitMenu
    6565    at  MENUEVENT.IdleProcessing,               dw  .IdleProcessing
    6666    at  MENUEVENT.ItemHighlightedFromCX,        dw  Dialog_EventNotHandled
Note: See TracChangeset for help on using the changeset viewer.