X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=e556fe494ad1b180f49bf5e95e005161438ab652;hp=31ccf2eb9922d0f8c4a9f11d8ec73bf91aa83d0a;hb=58a6719da2337b3e6e20b581885f170bbe5fc480;hpb=1d179b93f6a1b2a4fe3823c26fba862c24bc5d6e diff --git a/src/main.cpp b/src/main.cpp index 31ccf2e..e556fe4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,6 +10,7 @@ #include bool ignore_sigfpe = false; +const char *script_filename; void sigfpe_handler(int sig) { @@ -154,6 +155,12 @@ int main(int argc, char ** argv) hide_control_panel = true; window_visible = !window_visible; break; + case 's': + hide_control_panel = true; + if (++i >= argc) + Fatal("Expected filename after -s switch"); + script_filename = argv[i]; + break; } } @@ -177,10 +184,7 @@ int main(int argc, char ** argv) { doc.AddText(input_text, bounds.h/Real(2), bounds.x, bounds.y+bounds.h/Real(2)); } - else - { - doc.Add(RECT_OUTLINE, Rect(0,0,0,0),0); // hack to stop segfault if document is empty (:S) - } + #ifndef CONTROLPANEL_DISABLED