Ignore:
Timestamp:
Oct 4, 2010, 7:38:36 AM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:
Sorting now works (pivot item is copied for comparison and index comparisons are now signed instead of unsigned).
Menu shadow now looks better on black and white modes.
Sorting is now implemented for File Fialog: directories are displayed before files.
File Dialog now displays directories with upper case letters and files with lower case letters.
Line splitter now removes all empty lines from the end.

File:
1 edited

Legend:

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

    r44 r46  
    22; Project name  :   Assembly Library
    33; Created date  :   14.9.2010
    4 ; Last update   :   27.9.2010
     4; Last update   :   1.10.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Strings used by dialogs.
     
    2222    db      "Enter name for new file or directory.",NULL
    2323
     24FILE_STRING_LENGTH      EQU     (24+1)  ; +1 = LF in directory contents string
    2425g_szFileFormat:
    25     db      "%14S  %4-u %c%cB",LF,NULL
     26    db      "%16S%4-u %c%cB",LF,NULL
    2627g_szDirectoryFormat:
    27     db      "[%12S]  %s-DIR",LF,NULL
     28    db      "%16S%s-DIR",LF,NULL
    2829g_szSub:
    2930    db      ANGLE_QUOTE_RIGHT,"SUB",NULL
    3031g_szUp:
    31     db      ANGLE_QUOTE_LEFT,"UP",NULL
     32    db      ANGLE_QUOTE_LEFT," UP",NULL
    3233
    3334g_szSingleItem:         ; Used by Dialog.asm for single item line
Note: See TracChangeset for help on using the changeset viewer.