- Timestamp:
- Sep 24, 2010, 4:27:46 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mainwindow.cpp
r135 r138 266 266 QString html = solutionText->document()->toHtml("UTF-8"), 267 267 img = fi.completeBaseName() + "." + format; 268 html.replace(QRegExp("font-family:([^;]*);"), "font-family:\\1, 'DejaVu Sans Mono', 'Courier New', Courier, monospace;"); 268 269 html.replace(QRegExp("<img\\s+src=\"tspsg://graph.pic\""), QString("<img src=\"%1\" alt=\"%2\"").arg(img, tr("Solution Graph"))); 269 270 … … 278 279 if (format == "svg") { 279 280 QSvgGenerator svg; 280 svg.setSize(QSize(graph.width() , graph.height()));281 svg.setSize(QSize(graph.width() + 2, graph.height() + 2)); 281 282 svg.setResolution(graph.logicalDpiX()); 282 283 svg.setFileName(fi.path() + "/" + img); … … 289 290 } else { 290 291 #endif // NOSVG 291 QImage i(graph.width() , graph.height(), QImage::Format_ARGB32);292 QImage i(graph.width() + 2, graph.height() + 2, QImage::Format_ARGB32); 292 293 i.fill(0x00FFFFFF); 293 294 QPainter p; … … 893 894 pic.end(); 894 895 895 QImage i(graph.width() + 1, graph.height() + 1, QImage::Format_RGB32);896 QImage i(graph.width() + 2, graph.height() + 2, QImage::Format_RGB32); 896 897 i.fill(0xFFFFFF); 897 898 pic.begin(&i); … … 1514 1515 actionHelpContextual->setIcon(GET_ICON("help-contextual")); 1515 1516 actionHelpAbout->setIcon(GET_ICON("help-about")); 1517 actionHelpAboutQt->setIcon(QIcon(":/images/icons/"ICON_SIZE"/qtlogo."ICON_FORMAT)); 1516 1518 #endif 1517 1519 // Buttons
Note: See TracChangeset
for help on using the changeset viewer.