1/* browse.c: tape browser dialog box
2   Copyright (c) 2008 Marek Januszewski
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License along
15   with this program; if not, write to the Free Software Foundation, Inc.,
16   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18   Author contact information:
19
20   E-mail: philip-fuse@shadowmagic.org.uk
21
22*/
23
24#include "browse.h"
25
26IDD_BROWSE DIALOGEX 0,0,230,153
27STYLE DS_3DLOOK | DS_CENTER | DS_MODALFRAME | DS_FIXEDSYS | WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP | WS_SYSMENU
28EXSTYLE WS_EX_APPWINDOW
29CAPTION "Fuse - Browse Tape"
30FONT 8,"Ms Shell Dlg 2",400,0,1
31BEGIN
32  CONTROL         "",IDC_BROWSE_LV,"SysListView32",
33                  WS_CHILD | WS_VISIBLE | LVS_REPORT
34                  | LVS_SINGLESEL | LVS_SHOWSELALWAYS,
35                  0,0,225,120, WS_EX_CLIENTEDGE
36  CTEXT           "Tape modified",IDC_BROWSE_MODIFIED,0,125,225,8,SS_CENTERIMAGE
37  DEFPUSHBUTTON   "&Close",IDCLOSE,175,135,50,14
38END
39
40win32bmp_tape_marker       BITMAP "ui/win32/icons/tape_marker.bmp"
41win32bmp_tape_marker_mask  BITMAP "ui/win32/icons/tape_marker_mask.bmp"
42