Changeset 44 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog
- Timestamp:
- Sep 27, 2010, 7:23:36 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Src/Menu/Dialog
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/Dialog/Dialog.asm
r41 r44 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.8.2010 4 ; Last update : 16.9.20104 ; Last update : 27.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Common functions for many dialogs. … … 291 291 ALIGN JUMP_ALIGN 292 292 .RedrawDialogAreaAndWholeParentWindow: 293 mov al, MONO_NORMAL293 mov al, SCREEN_BACKGROUND_ATTRIBUTE 294 294 CALL_DISPLAY_LIBRARY SetCharacterAttributeFromAL 295 295 call MenuLocation_GetTitleBordersTopLeftCoordinatesToAX -
trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm
r41 r44 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.9.2010 4 ; Last update : 16.9.20104 ; Last update : 27.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays file dialog. … … 148 148 ; Nothing 149 149 ; Corrupts registers: 150 ; AX, CX, SI, DI, DS, ES150 ; AX, CX, DX, SI, DI, DS, ES 151 151 ;-------------------------------------------------------------------- 152 152 ALIGN JUMP_ALIGN … … 171 171 ; Nothing 172 172 ; Corrupts registers: 173 ; AX, CX, D I173 ; AX, CX, DX, DI 174 174 ;-------------------------------------------------------------------- 175 175 ;ALIGN JUMP_ALIGN … … 225 225 ; DI: Updated for next file 226 226 ; Corrupts registers: 227 ; AX, BX, CX 227 ; AX, BX, CX, DX 228 228 ;-------------------------------------------------------------------- 229 229 ALIGN JUMP_ALIGN … … 241 241 ; DI: Updated for next file 242 242 ; Corrupts registers: 243 ; AX, BX, CX 243 ; AX, BX, CX, DX 244 244 ;-------------------------------------------------------------------- 245 245 ;ALIGN JUMP_ALIGN … … 253 253 xchg ax, cx 254 254 CALL_DISPLAY_LIBRARY SetCharacterPointerFromBXAX 255 mov dl, ATTRIBUTES_NOT_USED 255 256 mov ax, BUFFER_OUTPUT_WITH_CHAR_ONLY 256 CALL_DISPLAY_LIBRARY SetChar acterOutputFunctionFromAX257 CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInDL 257 258 258 259 call .FormatFileOrDirectoryToBufferFromDTAinDSSI -
trunk/Assembly_Library/Src/Menu/Dialog/StringsForDialogs.asm
r41 r44 2 2 ; Project name : Assembly Library 3 3 ; Created date : 14.9.2010 4 ; Last update : 16.9.20104 ; Last update : 27.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Strings used by dialogs. … … 9 9 g_szTimeElapsed: db "Time elapsed :",NULL 10 10 g_szTimeLeft: db "Estimated left:",NULL 11 g_szTimeFormat: db " %2 u min %2u sec",LF,CR,NULL11 g_szTimeFormat: db " %2-u min %2-u sec",LF,CR,NULL 12 12 13 13 ; Strings for File Dialog … … 23 23 24 24 g_szFileFormat: 25 db "%14S %4 u %c%cB",LF,NULL25 db "%14S %4-u %c%cB",LF,NULL 26 26 g_szDirectoryFormat: 27 27 db "[%12S] %s-DIR",LF,NULL
Note:
See TracChangeset
for help on using the changeset viewer.