mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-12-26 05:18:21 +01:00
Make block quote bar a thick orange so it stands out.
This commit is contained in:
parent
d4e3bbcf16
commit
48e6597337
@ -40,7 +40,7 @@ typedef enum doccolor_e // Document color enumeration
|
|||||||
{
|
{
|
||||||
DOCCOLOR_BLACK, // #000
|
DOCCOLOR_BLACK, // #000
|
||||||
DOCCOLOR_RED, // #900
|
DOCCOLOR_RED, // #900
|
||||||
DOCCOLOR_GREEN, // #090
|
DOCCOLOR_ORANGE, // #CC0
|
||||||
DOCCOLOR_BLUE, // #00C
|
DOCCOLOR_BLUE, // #00C
|
||||||
DOCCOLOR_LTGRAY, // #EEE
|
DOCCOLOR_LTGRAY, // #EEE
|
||||||
DOCCOLOR_GRAY // #555
|
DOCCOLOR_GRAY // #555
|
||||||
@ -624,11 +624,14 @@ format_block(docdata_t *dd, // I - Document data
|
|||||||
|
|
||||||
if (deffont == DOCFONT_ITALIC)
|
if (deffont == DOCFONT_ITALIC)
|
||||||
{
|
{
|
||||||
// Add a gray bar to the left of block quotes...
|
// Add an orange bar to the left of block quotes...
|
||||||
set_color(dd, DOCCOLOR_GREEN);
|
set_color(dd, DOCCOLOR_ORANGE);
|
||||||
|
pdfioContentSave(dd->st);
|
||||||
|
pdfioContentSetLineWidth(dd->st, 3.0);
|
||||||
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
||||||
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
||||||
pdfioContentStroke(dd->st);
|
pdfioContentStroke(dd->st);
|
||||||
|
pdfioContentRestore(dd->st);
|
||||||
}
|
}
|
||||||
|
|
||||||
num_frags = 0;
|
num_frags = 0;
|
||||||
@ -689,11 +692,14 @@ format_block(docdata_t *dd, // I - Document data
|
|||||||
|
|
||||||
if (deffont == DOCFONT_ITALIC)
|
if (deffont == DOCFONT_ITALIC)
|
||||||
{
|
{
|
||||||
// Add a gray bar to the left of block quotes...
|
// Add an orange bar to the left of block quotes...
|
||||||
set_color(dd, DOCCOLOR_GREEN);
|
set_color(dd, DOCCOLOR_ORANGE);
|
||||||
|
pdfioContentSave(dd->st);
|
||||||
|
pdfioContentSetLineWidth(dd->st, 3.0);
|
||||||
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
||||||
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
||||||
pdfioContentStroke(dd->st);
|
pdfioContentStroke(dd->st);
|
||||||
|
pdfioContentRestore(dd->st);
|
||||||
}
|
}
|
||||||
|
|
||||||
num_frags = 0;
|
num_frags = 0;
|
||||||
@ -741,11 +747,14 @@ format_block(docdata_t *dd, // I - Document data
|
|||||||
|
|
||||||
if (deffont == DOCFONT_ITALIC)
|
if (deffont == DOCFONT_ITALIC)
|
||||||
{
|
{
|
||||||
// Add a gray bar to the left of block quotes...
|
// Add an orange bar to the left of block quotes...
|
||||||
set_color(dd, DOCCOLOR_GREEN);
|
set_color(dd, DOCCOLOR_ORANGE);
|
||||||
|
pdfioContentSave(dd->st);
|
||||||
|
pdfioContentSetLineWidth(dd->st, 3.0);
|
||||||
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
pdfioContentPathMoveTo(dd->st, left - 6.0, dd->y - (LINE_HEIGHT - 1.0) * fsize);
|
||||||
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
pdfioContentPathLineTo(dd->st, left - 6.0, dd->y + fsize);
|
||||||
pdfioContentStroke(dd->st);
|
pdfioContentStroke(dd->st);
|
||||||
|
pdfioContentRestore(dd->st);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1573,9 +1582,9 @@ set_color(docdata_t *dd, // I - Document data
|
|||||||
pdfioContentSetFillColorDeviceRGB(dd->st, 0.6, 0.0, 0.0);
|
pdfioContentSetFillColorDeviceRGB(dd->st, 0.6, 0.0, 0.0);
|
||||||
pdfioContentSetStrokeColorDeviceRGB(dd->st, 0.6, 0.0, 0.0);
|
pdfioContentSetStrokeColorDeviceRGB(dd->st, 0.6, 0.0, 0.0);
|
||||||
break;
|
break;
|
||||||
case DOCCOLOR_GREEN :
|
case DOCCOLOR_ORANGE :
|
||||||
pdfioContentSetFillColorDeviceRGB(dd->st, 0.0, 0.6, 0.0);
|
pdfioContentSetFillColorDeviceRGB(dd->st, 1.0, 0.5, 0.0);
|
||||||
pdfioContentSetStrokeColorDeviceRGB(dd->st, 0.0, 0.6, 0.0);
|
pdfioContentSetStrokeColorDeviceRGB(dd->st, 1.0, 0.5, 0.0);
|
||||||
break;
|
break;
|
||||||
case DOCCOLOR_BLUE :
|
case DOCCOLOR_BLUE :
|
||||||
pdfioContentSetFillColorDeviceRGB(dd->st, 0.0, 0.0, 0.8);
|
pdfioContentSetFillColorDeviceRGB(dd->st, 0.0, 0.0, 0.8);
|
||||||
|
Loading…
Reference in New Issue
Block a user