714dd74636
git-svn-id: svn://10.65.10.50/trunk@5350 c028cbd2-c16b-5b4b-a496-9718f37d4682
87 lines
2.4 KiB
Plaintext
Executable File
87 lines
2.4 KiB
Plaintext
Executable File
/*
|
|
* EX24WIN.RC
|
|
*
|
|
* Header file for ArchiveLib 1.0
|
|
*
|
|
* Copyright (c) Greenleaf Software, Inc. 1994
|
|
* All Rights Reserved
|
|
*
|
|
* DESCRIPTION
|
|
*
|
|
* This is the RC file used by Windows example program 00. 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
|
|
*
|
|
* June 10, 1994 1.0A : First release
|
|
*
|
|
*/
|
|
|
|
#ifndef WS_POPUP
|
|
#include <windows.h>
|
|
#endif
|
|
#include "ex24win.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Dialog
|
|
//
|
|
|
|
ALMAINDIALOG DIALOG 11, 30, 197, 129
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
FONT 8, "MS Sans Serif"
|
|
{
|
|
EDITTEXT AL_ARCHIVE_NAME, 53, 27, 77, 12
|
|
PUSHBUTTON "&Compress", AL_COMPRESS, 147,28,42,12
|
|
PUSHBUTTON "E&xit", AL_EXIT, 147, 66, 42, 12
|
|
LTEXT "Archive:", IDC_STATIC, 3,28,33,8
|
|
EDITTEXT AL_INPUT_FILES, 53,46,77,12, ES_AUTOHSCROLL
|
|
LTEXT "Input files:", IDC_STATIC, 3,46,42,8
|
|
LTEXT "AL_PROGRESS_TEXT", AL_PROGRESS_TEXT, 57,64,82,10
|
|
PUSHBUTTON "About", AL_ABOUT, 147, 47, 42, 12
|
|
CTEXT "Windows example 24: Use wildcards to build an archive", IDC_STATIC, 6,8,185,9
|
|
RTEXT "File:", IDC_STATIC, 8,64,42,10
|
|
RTEXT "File progress:", IDC_STATIC, 9, 82, 48, 10
|
|
RTEXT "Job progress:", IDC_STATIC, 9, 101, 48, 10
|
|
CONTROL "", AL_FILE_PROGRESS, "ALGauge", 0 | WS_CHILD | WS_VISIBLE, 64, 82, 67, 15
|
|
CONTROL "", AL_JOB_PROGRESS, "ALGauge", 0 | WS_CHILD | WS_VISIBLE, 64, 101, 67, 15
|
|
}
|
|
|
|
ALABOUTDIALOG DIALOG DISCARDABLE 0, 0, 145, 70
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Dialog"
|
|
FONT 8, "MS Sans Serif"
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK",IDOK,47,51,50,14
|
|
ICON "ALIcon",IDC_STATIC,6,6,18,20
|
|
CTEXT "Greenleaf Archive Library",IDC_STATIC,31,10,103,12
|
|
CTEXT "Copyright (c) 1994-1995",IDC_STATIC,21,28,103,12
|
|
END
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Icon
|
|
//
|
|
|
|
ALICON ICON DISCARDABLE "ALICON.ICO"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Menu
|
|
//
|
|
|
|
ALMENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "&File"
|
|
BEGIN
|
|
MENUITEM "E&xit", AL_EXIT
|
|
END
|
|
POPUP "&Help"
|
|
BEGIN
|
|
MENUITEM "&About", AL_ABOUT
|
|
END
|
|
END
|
|
|