summaryrefslogtreecommitdiff
path: root/platform/x11
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-06-26 15:59:17 +0100
committerRobin Watts <robin.watts@artifex.com>2015-06-26 19:06:22 +0100
commit2b08c7f7ed2d4bc3874e5d2734c7d4a0ca3ad966 (patch)
tree09f71d07e0c16cd4a64048387ae9c718d57bebd3 /platform/x11
parent7b5720137cef833476d4015cce6402e3c272ccad (diff)
downloadmupdf-2b08c7f7ed2d4bc3874e5d2734c7d4a0ca3ad966.tar.xz
Bug 696053: Update windows mupdf to respect command line flags.
Previously, only the unix executable had been updated to take command line flags; update the windows one in line with it. We have to cope with the argv being in Unicode; add a windows specific version of getoptw for this. Also note that that fprintf's in the windows mupdf exe won't work as GUI apps don't have a console window, and can't write to the parent one. Fixing that is a larger project than I have time for right now.
Diffstat (limited to 'platform/x11')
-rw-r--r--platform/x11/win_main.c69
1 files changed, 51 insertions, 18 deletions
diff --git a/platform/x11/win_main.c b/platform/x11/win_main.c
index 40d91004..538f02f5 100644
--- a/platform/x11/win_main.c
+++ b/platform/x11/win_main.c
@@ -39,6 +39,7 @@ static pdfapp_t gapp;
static wchar_t wbuf[PATH_MAX];
static char filename[PATH_MAX];
+static char layout_css_buf[PATH_MAX];
/*
* Create registry keys to associate MuPDF with PDF and XPS files.
@@ -1191,6 +1192,19 @@ get_system_dpi(void)
return ((hdpi + vdpi) * 96.0 + 0.5) / 200;
}
+static void usage(void)
+{
+ fprintf(stderr, "usage: mupdf [options] file.pdf [page]\n");
+ fprintf(stderr, "\t-p -\tpassword\n");
+ fprintf(stderr, "\t-r -\tresolution\n");
+ fprintf(stderr, "\t-A -\tset anti-aliasing quality in bits (0=off, 8=best)\n");
+ fprintf(stderr, "\t-C -\tRRGGBB (tint color in hexadecimal syntax)\n");
+ fprintf(stderr, "\t-W -\tpage width for EPUB layout\n");
+ fprintf(stderr, "\t-H -\tpage height for EPUB layout\n");
+ fprintf(stderr, "\t-S -\tfont size for EPUB layout\n");
+ exit(1);
+}
+
int WINAPI
WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
@@ -1200,9 +1214,11 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShow
MSG msg;
int code;
fz_context *ctx;
- int arg;
int bps = 0;
int displayRes = get_system_dpi();
+ int c;
+ wchar_t *password = NULL;
+ wchar_t *layout_css = NULL;
ctx = fz_new_context(NULL, NULL, FZ_STORE_DEFAULT);
if (!ctx)
@@ -1211,6 +1227,30 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShow
exit(1);
}
pdfapp_init(ctx, &gapp);
+
+ while ((c = fz_getoptw(argc, argv, L"p:r:A:C:W:H:S:U:b:")) != -1)
+ {
+ switch (c)
+ {
+ case 'C':
+ c = wcstol(fz_optargw, NULL, 16);
+ gapp.tint = 1;
+ gapp.tint_r = (c >> 16) & 255;
+ gapp.tint_g = (c >> 8) & 255;
+ gapp.tint_b = (c) & 255;
+ break;
+ case 'p': password = fz_optargw; break;
+ case 'r': displayRes = _wtoi(fz_optargw); break;
+ case 'A': fz_set_aa_level(ctx, _wtoi(fz_optargw)); break;
+ case 'W': gapp.layout_w = _wtoi(fz_optargw); break;
+ case 'H': gapp.layout_h = _wtoi(fz_optargw); break;
+ case 'S': gapp.layout_em = _wtoi(fz_optargw); break;
+ case 'b': bps = (fz_optargw && *fz_optargw) ? _wtoi(fz_optargw) : 4096; break;
+ case 'U': layout_css = fz_optargw; break;
+ default: usage();
+ }
+ }
+
pdfapp_setresolution(&gapp, displayRes);
GetModuleFileNameA(NULL, argv0, sizeof argv0);
@@ -1218,24 +1258,9 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShow
winopen();
- arg = 1;
- while (arg < argc)
+ if (fz_optindw < argc)
{
- if (!wcscmp(argv[arg], L"-p"))
- {
- if (arg+1 < argc)
- bps = _wtoi(argv[++arg]);
- else
- bps = 4096;
- }
- else
- break;
- arg++;
- }
-
- if (arg < argc)
- {
- wcscpy(wbuf, argv[arg]);
+ wcscpy(wbuf, argv[fz_optindw]);
}
else
{
@@ -1247,6 +1272,14 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShow
if (code == 0)
winerror(&gapp, "cannot convert filename to utf-8");
+ if (layout_css)
+ {
+ code = WideCharToMultiByte(CP_UTF8, 0, layout_css, -1, layout_css_buf, sizeof layout_css_buf, NULL, NULL);
+ if (code == 0)
+ winerror(&gapp, "cannot convert layout_css filename to utf-8");
+ gapp.layout_css = layout_css_buf;
+ }
+
if (bps)
pdfapp_open_progressive(&gapp, filename, 0, bps);
else