diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-04-17 00:40:43 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-04-17 09:25:03 +0100 |
commit | 4069e52998d2cb2b54e65e8a8b418868ffa73bee (patch) | |
tree | 423024feca20fdb07224ecb40c807dbb3fbd4644 /apps/win_res.rc | |
parent | 00851c1b04215f2e5688836be57e4efdb198483b (diff) | |
download | mupdf-4069e52998d2cb2b54e65e8a8b418868ffa73bee.tar.xz |
Add Meta interface to fz_document.
Use this to reintroduce "Document Properties..." in mupdf viewer.
Diffstat (limited to 'apps/win_res.rc')
-rw-r--r-- | apps/win_res.rc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/win_res.rc b/apps/win_res.rc index 75b94ebe..f87de7d0 100644 --- a/apps/win_res.rc +++ b/apps/win_res.rc @@ -13,6 +13,42 @@ BEGIN LTEXT "Password:", 5, 17, 22, 40, 10, 0x00000 END +IDD_DLOGINFO DIALOG 50, 50, 300, 145 +STYLE 128 | 0x80000000 +CAPTION " Document Properties " +FONT 8, "MS Shell Dlg" +BEGIN + DEFPUSHBUTTON "Okay", 1, 300-10-50, 145-7-14, 50, 14, 0x50010001 + + LTEXT "File:", -1, 10, 10, 50, 10, 0 + LTEXT "Format:", -1, 10, 20, 50, 10, 0 + LTEXT "Encryption:", -1, 10, 30, 50, 10, 0 + LTEXT "Permissions:", -1, 10, 40, 50, 10, 0 + + LTEXT "<file", 0x10, 60, 10, 230, 10, 0 + LTEXT "<version", 0x11, 60, 20, 230, 10, 0 + LTEXT "<encryption", 0x12, 60, 30, 230, 10, 0 + LTEXT "<permissions", 0x13, 60, 40, 230, 10, 0 + + LTEXT "Title:", -1, 10, 55, 50, 10, 0 + LTEXT "Author:", -1, 10, 65, 50, 10, 0 + LTEXT "Subject:", -1, 10, 75, 50, 10, 0 + LTEXT "Keywords:", -1, 10, 85, 50, 10, 0 + LTEXT "Creator:", -1, 10, 95, 50, 10, 0 + LTEXT "Producer:", -1, 10, 105, 50, 10, 0 + LTEXT "Created:", -1, 10, 115, 50, 10, 0 + LTEXT "Modified:", -1, 10, 125, 50, 10, 0 + + LTEXT "", 0x20, 60, 55, 230, 10, 0 + LTEXT "", 0x21, 60, 65, 230, 10, 0 + LTEXT "", 0x22, 60, 75, 230, 10, 0 + LTEXT "", 0x23, 60, 85, 230, 10, 0 + LTEXT "", 0x24, 60, 95, 230, 10, 0 + LTEXT "", 0x25, 60, 105, 230, 10, 0 + LTEXT "", 0x26, 60, 115, 100, 10, 0 + LTEXT "", 0x27, 60, 125, 100, 10, 0 +END + IDD_DLOGABOUT DIALOG 50, 50, 200, 220 STYLE 128 | 0x80000000 CAPTION " About MuPDF " |