Subversion Repositories Kolibri OS

Rev

Rev 3184 | Rev 3425 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3184 Rev 3423
Line 1... Line 1...
1
;*****************************************************************************
1
;*****************************************************************************
2
; zSea - advanced image viewer for KolibriOS
2
; zSea - advanced image viewer for KolibriOS
3
; Copyright (c) 2008-2011, Marat Zakiyanov aka Mario79, aka Mario
3
; Copyright (c) 2008-2013, Marat Zakiyanov aka Mario79, aka Mario
4
; All rights reserved.
4
; All rights reserved.
5
;
5
;
6
; Redistribution and use in source and binary forms, with or without
6
; Redistribution and use in source and binary forms, with or without
7
; modification, are permitted provided that the following conditions are met:
7
; modification, are permitted provided that the following conditions are met:
8
;	 * Redistributions of source code must retain the above copyright
8
;	 * Redistributions of source code must retain the above copyright
Line 23... Line 23...
23
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
;*****************************************************************************
27
;*****************************************************************************
28
;	v.1.0 rñ4 25.09.2011
28
;	v.1.0 rñ5 26.03.2013
29
;******************************************************************************
29
;******************************************************************************
30
	use32
30
	use32
31
	org 0x0
31
	org 0x0
32
	db 'MENUET01'	; 8 byte id
32
	db 'MENUET01'	; 8 byte id
33
	dd 0x01		; header version
33
	dd 0x01		; header version
Line 40... Line 40...
40
 
40
 
41
include 'lang.inc'
41
include 'lang.inc'
42
;include 'macros.inc'
42
;include 'macros.inc'
43
;include 'editbox_ex.mac'
43
;include 'editbox_ex.mac'
44
;include 'proc32.inc'
-
 
45
 
44
;include 'proc32.inc'
46
include '../../macros.inc'
45
include '../../macros.inc'
47
include '../../develop/libraries/box_lib/trunk/box_lib.mac'
46
include '../../develop/libraries/box_lib/trunk/box_lib.mac'
48
include '../../proc32.inc'
-
 
-
 
47
include '../../proc32.inc'
49
 
48
include 'debug.inc'
50
;include 'load_lib.mac'
49
;include 'load_lib.mac'
51
include '../../develop/libraries/box_lib/load_lib.mac'
50
include '../../develop/libraries/box_lib/load_lib.mac'
52
        @use_library    ;use load lib macros
51
        @use_library    ;use load lib macros
Line 97... Line 96...
97
 
96
 
98
;init_OpenDialog	OpenDialog_data
97
;init_OpenDialog	OpenDialog_data
99
	push    dword OpenDialog_data
98
	push    dword OpenDialog_data
Line -... Line 99...
-
 
99
	call    [OpenDialog_Init]
-
 
100
 
-
 
101
;init_ColorDialog	ColorDialog_data
-
 
102
	push    dword ColorDialog_data
100
	call    [OpenDialog_Init]
103
	call    [ColorDialog_Init]
Line 101... Line 104...
101
 
104
	
102
	call	get_filter_data
105
	call	get_filter_data
103
 
106