Changeset 58 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog
- Timestamp:
- Nov 18, 2010, 2:42:28 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Src/Menu/Dialog
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/Dialog/Dialog.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Common functions for many dialogs. … … 63 63 ;-------------------------------------------------------------------- 64 64 ; Dialog_EventAnyThatClosesDialog 65 ; Dialog_EventExitMenu 65 66 ; Parameters: 66 67 ; SS:BP: Ptr to DIALOG … … 73 74 Dialog_EventAnyThatClosesDialog: 74 75 call MenuInit_CloseMenuWindow 76 ALIGN JUMP_ALIGN 77 Dialog_EventExitMenu: 75 78 stc 76 79 ret -
trunk/Assembly_Library/Src/Menu/Dialog/DialogDrive.asm
r54 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 22.10.2010 4 ; Last update : 23.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays drive dialog. … … 91 91 istruc MENUEVENT 92 92 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 93 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled93 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 94 94 at MENUEVENT.IdleProcessing, dw Dialog_EventNotHandled 95 95 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm
r54 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.9.2010 4 ; Last update : 24.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays file dialog. … … 101 101 istruc MENUEVENT 102 102 at MENUEVENT.InitializeMenuinitFromDSSI, dw InitializeMenuinitFromSSBP 103 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled103 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 104 104 at MENUEVENT.IdleProcessing, dw Dialog_EventNotHandled 105 105 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogMessage.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays message dialog. … … 59 59 istruc MENUEVENT 60 60 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 61 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled61 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 62 62 at MENUEVENT.IdleProcessing, dw Dialog_EventNotHandled 63 63 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogProgress.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 15.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays progress bar dialog and starts progress task. … … 120 120 istruc MENUEVENT 121 121 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 122 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled122 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 123 123 at MENUEVENT.IdleProcessing, dw .IdleProcessing 124 124 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogSelection.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 13.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays selection dialog. … … 51 51 istruc MENUEVENT 52 52 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 53 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled53 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 54 54 at MENUEVENT.IdleProcessing, dw Dialog_EventNotHandled 55 55 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogString.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 12.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays word input dialog. … … 62 62 istruc MENUEVENT 63 63 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 64 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled64 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 65 65 at MENUEVENT.IdleProcessing, dw .IdleProcessing 66 66 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled -
trunk/Assembly_Library/Src/Menu/Dialog/DialogWord.asm
r52 r58 2 2 ; Project name : Assembly Library 3 3 ; Created date : 10.8.2010 4 ; Last update : 1 2.10.20104 ; Last update : 18.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays word input dialog. … … 62 62 istruc MENUEVENT 63 63 at MENUEVENT.InitializeMenuinitFromDSSI, dw .InitializeMenuinitFromDSSI 64 at MENUEVENT.ExitMenu, dw Dialog_Event NotHandled64 at MENUEVENT.ExitMenu, dw Dialog_EventExitMenu 65 65 at MENUEVENT.IdleProcessing, dw .IdleProcessing 66 66 at MENUEVENT.ItemHighlightedFromCX, dw Dialog_EventNotHandled
Note:
See TracChangeset
for help on using the changeset viewer.