X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FPrinterParams.h;h=3cee570d55228adf62f2eae08ee4e8eb2cb2149d;hb=15271fce0705ea5611647b5b3d1e993362ff5284;hp=90ce2f9a008eec7926883f324bb4aa3f449e57a5;hpb=797d87b4513088a66b17c7ac653b84e36ea80458;p=lyx.git diff --git a/src/PrinterParams.h b/src/PrinterParams.h index 90ce2f9a00..3cee570d55 100644 --- a/src/PrinterParams.h +++ b/src/PrinterParams.h @@ -21,8 +21,10 @@ #ifdef ENABLE_ASSERTIONS #include "support/LAssert.h" +extern bool containsOnly(string const &, char const *); #endif + /** This struct contains (or should contain) all the parameters required for printing a buffer. Some work still needs to be done on this struct and @@ -33,7 +35,7 @@ */ struct PrinterParams { /// - enum Target{ + enum Target { /// PRINTER, /// @@ -82,6 +84,47 @@ struct PrinterParams { // Override document settings for duplex. // bool duplex; + /** Test that all the fields contain valid entries. It's unlikely + that the internal code will get this wrong (at least for the + xforms code anyway) however new ports and external scripts + might drive the wrong values in. + */ + void testInvariant() const + { +#ifdef ENABLE_ASSERTIONS + if (!from_page.empty()) { + // Assert(from_page == number or empty) + lyx::Assert(containsOnly(from_page, + "1234567890")); + } + if (to_page) { + // Assert(to_page == empty + // or number iff from_page set) + lyx::Assert(!from_page.empty()); + } + switch (target) { + case PRINTER: +// Assert(!printer_name.empty()); + break; + case FILE: + lyx::Assert(!file_name.empty()); + break; + default: + lyx::Assert(false); + break; + } + switch (which_pages) { + case ALL: + case ODD: + case EVEN: + break; + default: + lyx::Assert(false); + break; + } +#endif + } + /// PrinterParams(Target const & t = PRINTER, string const & pname = lyxrc.printer, @@ -118,54 +161,6 @@ struct PrinterParams { { testInvariant(); } - -// do we need these? -// friend bool operator==(PrinterParams const &, PrinterParams const &); -// friend bool operator<(PrinterParams const &, PrinterParams const &); - - /** Test that all the fields contain valid entries. It's unlikely - that the internal code will get this wrong (at least for the - xforms code anyway) however new ports and external scripts - might drive the wrong values in. - */ - void testInvariant() const - { -#ifdef ENABLE_ASSERTIONS - extern bool containsOnly(string const &, char const *); - if (!from_page.empty()) { - // Assert(from_page == number or empty) - Assert(containsOnly(from_page, "1234567890")); - } - if (to_page) { - // Assert(to_page == empty - // or number iff from_page set) - Assert(!from_page.empty()); - } - switch (target) { - case PRINTER: -// Assert(!printer_name.empty()); - break; - case FILE: - Assert(!file_name.empty()); - break; - default: - Assert(false); - break; - } - switch (which_pages) { - case ALL: - case ODD: - case EVEN: - break; - default: - Assert(false); - break; - } -#endif - } }; #endif - - -