82 lines
5.1 KiB
Plaintext
82 lines
5.1 KiB
Plaintext
/*----------------------------------------------------------------------------*/
|
|
r/* */
|
|
/* Copyright (c) 1995, 2004 IBM Corporation. All rights reserved. */
|
|
/* Copyright (c) 2005-2021 Rexx Language Association. All rights reserved. */
|
|
/* */
|
|
/* This program and the accompanying materials are made available under */
|
|
/* the terms of the Common Public License v1.0 which accompanies this */
|
|
/* distribution. A copy is also available at the following address: */
|
|
/* https://www.oorexx.org/license.html */
|
|
/* */
|
|
/* Redistribution and use in source and binary forms, with or */
|
|
/* without modification, are permitted provided that the following */
|
|
/* conditions are met: */
|
|
/* */
|
|
/* Redistributions of source code must retain the above copyright */
|
|
/* notice, this list of conditions and the following disclaimer. */
|
|
/* Redistributions in binary form must reproduce the above copyright */
|
|
/* notice, this list of conditions and the following disclaimer in */
|
|
/* the documentation and/or other materials provided with the distribution. */
|
|
/* */
|
|
/* Neither the name of Rexx Language Association nor the names */
|
|
/* of its contributors may be used to endorse or promote products */
|
|
/* derived from this software without specific prior written permission. */
|
|
/* */
|
|
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
|
|
/* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
|
|
/* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS */
|
|
/* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
|
|
/* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
|
|
/* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
|
|
/* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, */
|
|
/* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY */
|
|
/* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING */
|
|
/* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
|
|
/* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
|
|
/* */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#include <windows.h>
|
|
#include <winuser.h>
|
|
#include <commctrl.h>
|
|
#include "ldvideo.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
IDD_VIDEO_DLG DIALOG 67, 32, 288, 251
|
|
STYLE DS_MODALFRAME | DS_SETFONT | WS_CAPTION | WS_POPUP | WS_SYSMENU
|
|
CAPTION "Video Archive"
|
|
FONT 10, "MS Shell Dlg"
|
|
{
|
|
EDITTEXT IDC_EDIT_TAPE_NO, 64, 17, 42, 13, ES_AUTOHSCROLL
|
|
PUSHBUTTON "&Search", 3001, 110, 16, 37, 15
|
|
EDITTEXT IDC_EDIT_TAPE_LABEL, 64, 37, 85, 13, ES_AUTOHSCROLL
|
|
EDITTEXT IDC_EDIT_FILM1, 80, 72, 175, 13, ES_AUTOHSCROLL
|
|
EDITTEXT IDC_EDIT_FILM2, 80, 92, 175, 13, ES_AUTOHSCROLL
|
|
EDITTEXT IDC_EDIT_FILM3, 80, 111, 175, 13, ES_AUTOHSCROLL
|
|
EDITTEXT IDC_EDIT_FILM4, 80, 130, 175, 13, ES_AUTOHSCROLL
|
|
COMBOBOX IDC_CB_LOCATION, 80, 168, 119, 43, WS_TABSTOP | WS_VSCROLL | CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_SORT
|
|
LISTBOX IDC_LB_LENT_TO, 80, 188, 119, 49, WS_TABSTOP | WS_HSCROLL | WS_VSCROLL | LBS_NOINTEGRALHEIGHT | LBS_SORT | LBS_NOTIFY
|
|
AUTOCHECKBOX "Long&play", IDC_CK_LONGPLAY, 172, 15, 45, 10
|
|
AUTOCHECKBOX "&Hifi - quality", IDC_CK_HIFI, 172, 28, 53, 10
|
|
AUTOCHECKBOX "&Writeprotect", IDC_CK_WRITEPROTECT, 172, 41, 55, 10
|
|
AUTORADIOBUTTON "C120", IDC_RB_C120, 232, 15, 31, 10, WS_GROUP | WS_TABSTOP
|
|
AUTORADIOBUTTON "C180", IDC_RB_C180, 232, 27, 31, 10
|
|
AUTORADIOBUTTON "C240", IDC_RB_C240, 232, 40, 31, 10
|
|
DEFPUSHBUTTON "OK", 1, 217, 166, 50, 14
|
|
PUSHBUTTON "Cancel", 2, 217, 188, 50, 14
|
|
LTEXT "Tape&number", 2008, 18, 18, 43, 11, SS_LEFT
|
|
LTEXT "Tape label", 2006, 18, 38, 38, 11, SS_LEFT
|
|
LTEXT "Film &1", 2001, 36, 74, 23, 11, SS_LEFT
|
|
LTEXT "Film 2", 2002, 36, 93, 22, 11, SS_LEFT
|
|
LTEXT "Film 3", 2003, 36, 112, 23, 11, SS_LEFT
|
|
LTEXT "Film 4", 2004, 36, 131, 24, 11, SS_LEFT
|
|
LTEXT "&Location", 2005, 36, 169, 32, 11, SS_LEFT
|
|
LTEXT "Lent to", 2007, 36, 188, 26, 11, SS_LEFT
|
|
GROUPBOX "Specification", -1, 12, 4, 145, 51
|
|
GROUPBOX "Titles", -1, 12, 61, 261, 89
|
|
GROUPBOX "Location and Possession", -1, 12, 156, 261, 86
|
|
GROUPBOX "Tape&information", -1, 165, 3, 105, 51, WS_GROUP
|
|
}
|