KFM - display the date of creation, change, and access on the window of properties file/directory (Alt + Enter)

git-svn-id: svn://kolibrios.org@3833 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Marat Zakiyanov (Mario79) 2013-07-24 19:54:47 +00:00
parent ab10e61dba
commit b055f3351c
4 changed files with 609 additions and 459 deletions

View File

@ -1,10 +1,36 @@
;---------------------------------------------------------------------
align 4
files_counter rd 1
directories_counter rd 1
files_counter rd 1
directories_counter rd 1
files_size:
.low rd 1
.high rd 1
.low rd 1
.high rd 1
;Ôîðìàò âðåìåíè:
; * +0: byte: ñåêóíäû
; * +1: byte: ìèíóòû
; * +2: byte: ÷àñû
; * +3: byte: çàðåçåðâèðîâàíî (0)
; * íàïðèìåð, 23.59.59 çàïèñûâàåòñÿ êàê (â hex) 3B 3B 17 00
time:
.create:
rd 1
.access:
rd 1
.change:
rd 1
;Ôîðìàò äàòû:
; * +0: byte: äåíü
; * +1: byte: ìåñÿö
; * +2: word: ãîä
; * íàïðèìåð, 25.11.1979 çàïèñûâàåòñÿ êàê (â hex) 19 0B BB 07
date:
.create:
rd 1
.access:
rd 1
.change:
rd 1
;---------------------------------------------------------------------
open_param rd 1
;---------------------------------------------------------------------
@ -90,14 +116,12 @@ align 4
left_start_draw_line rd 1
left_folder_block rd 1
left_start_draw_cursor_line rw 1
;left_panel_clear_all rb 1
left_folder_block_1 rd 1
;---------------------------------------------------------------------
align 4
right_start_draw_line rd 1
right_folder_block rd 1
right_start_draw_cursor_line rw 1
;right_panel_clear_all rb 1
right_folder_block_1 rd 1
;---------------------------------------------------------------------
align 4
@ -197,10 +221,6 @@ type_name:
rb 512
;---------------------------------------------------------------------
align 4
type_size_string:
rb 32
;---------------------------------------------------------------------
align 4
type_files_string:
rb 16
;---------------------------------------------------------------------

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
;*****************************************************************************
; KFM - Kolibri File Manager
; Copyright (c) 2006 - 2012, Marat Zakiyanov aka Mario79, aka Mario
; Copyright (c) 2006 - 2013, Marat Zakiyanov aka Mario79, aka Mario
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
@ -25,7 +25,7 @@
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;*****************************************************************************
; KFM v0.47e 16.04.2012
; KFM v0.47g 24/07/2013
;---------------------------------------------------------------------
use32
org 0x0

View File

@ -1,4 +1,4 @@
header_text db 'Kolibri File Manager v0.47f 04/07/2013',0
header_text db 'Kolibri File Manager v0.47g 24/07/2013',0
;---------------------------------------------------------------------
fbutton_name:
.f1 db '1 Help',0
@ -155,11 +155,23 @@ type_files:
db 'Files:',0
;---------------------------------------------------------------------
type_dir:
db 'Dir.:',0
db 'Directories:',0
;---------------------------------------------------------------------
type_size:
db 'Size:',0
;---------------------------------------------------------------------
type_create:
db 'Create date:',0
;---------------------------------------------------------------------
type_change:
db 'Change date:',0
;---------------------------------------------------------------------
type_access:
db 'Access date:',0
;---------------------------------------------------------------------
type_limiters_data_time:
db '/ / : :',0
;---------------------------------------------------------------------
mouse_left_panel:
db 'Left ',0
mouse_right_panel:
@ -191,8 +203,8 @@ background_tile:
background_stretch:
db '\S '
;---------------------------------------------------------------------
files_information_window_x: dd 100 shl 16 + 250
files_information_window_y: dd 100 shl 16 + 300
files_information_window_x: dd 100 shl 16 + 300
files_information_window_y: dd 100 shl 16 + 200
;---------------------------------------------------------------------
error_window_x: dd 100 shl 16 + 250
error_window_y: dd 100 shl 16 + 80