86 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| /*
 | |
|  * EX04WIN.RC
 | |
|  *
 | |
|  *  Header file for ArchiveLib 2.0
 | |
|  *
 | |
|  *  Copyright (c) Greenleaf Software, Inc. 1994 - 1996
 | |
|  *  All Rights Reserved
 | |
|  *
 | |
|  * DESCRIPTION
 | |
|  *
 | |
|  *  This is the RC file used by Windows example program 04.  It
 | |
|  *  has all of the constants defined for use in the RC file that
 | |
|  *  is linked with this example.  Note that the exact same RC
 | |
|  *  is used by both the C++ and C example programs.
 | |
|  *
 | |
|  * REVISION HISTORY
 | |
|  *
 | |
|  *  February 1, 1996  2.0A  : Second release
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef WS_POPUP
 | |
| #include <windows.h>
 | |
| #endif
 | |
| #include "ex04win.h"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Dialog
 | |
| //
 | |
| 
 | |
| ALMainDialog DIALOG 0, 0, 214, 133
 | |
| STYLE WS_CHILD
 | |
| FONT 8, "MS Sans Serif"
 | |
| {
 | |
|  PUSHBUTTON "E&xit", AL_EXIT, 172, 27, 30, 12
 | |
|  LISTBOX AL_INPUT_LIST, 15, 23, 76, 89, LBS_NOTIFY | WS_BORDER | LBS_MULTIPLESEL | LBS_EXTENDEDSEL | WS_BORDER | WS_VSCROLL | WS_TABSTOP
 | |
|  PUSHBUTTON "&Cycle", AL_CYCLE, 100, 27, 30, 12
 | |
|  PUSHBUTTON "&Abort", AL_ABORT, 136, 27, 30, 12
 | |
|  CTEXT "Windows Example 04: Using ALMemoryObject", -1, 9, 5, 203, 12
 | |
|  CTEXT "Select input files", -1, 16, 119, 76, 12
 | |
|  LTEXT "Select input files, then cycle", AL_PROGRESS_TEXT, 102, 59, 97, 13
 | |
|  LTEXT "0%", AL_PROGRESS_BAR, 174, 76, 20, 11
 | |
|  LTEXT "Percent complete:", -1, 102, 76, 66, 11
 | |
|  CONTROL "", -1, "STATIC", SS_BLACKRECT | WS_CHILD | WS_VISIBLE | WS_GROUP, 98, 51, 103, 45
 | |
| }
 | |
| 
 | |
| ALAboutDialog DIALOG 0, 0, 145, 70
 | |
| STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
 | |
| CAPTION "Dialog"
 | |
| FONT 8, "MS Sans Serif"
 | |
| {
 | |
|  DEFPUSHBUTTON "OK", IDOK, 47,51,50,14
 | |
|  ICON "ALIcon", IDC_STATIC, 6,6,18,20
 | |
|  CTEXT "Greenleaf Archive Library 2.0", IDC_STATIC, 31,10,103,12
 | |
|  CTEXT "Copyright (c) 1994-1996", IDC_STATIC, 37, 23, 90, 12
 | |
| }
 | |
| 
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Accelerator
 | |
| //
 | |
| 
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Icon
 | |
| //
 | |
| 
 | |
| ALIcon          ICON    DISCARDABLE     "ALICON.ICO"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Menu
 | |
| //
 | |
| 
 | |
| 
 | |
| 
 | |
| ALAccelerator ACCELERATORS
 | |
| {
 | |
|  "I", AL_GOTO_INPUT, VIRTKEY, ALT
 | |
| }
 | |
| 
 | |
| 
 |