Changeset 0a4e16b182 in tspsg for src/mainwindow.cpp
- Timestamp:
- May 31, 2011, 2:01:38 PM (13 years ago)
- Branches:
- appveyor, imgbot, master, readme
- Children:
- b2be4c19a1
- Parents:
- 9f5cc00f29
- git-author:
- Oleksii Serdiuk <contacts@…> (05/31/11 14:01:38)
- git-committer:
- Oleksii Serdiuk <contacts@…> (06/29/12 19:46:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mainwindow.cpp
r9f5cc00f29 r0a4e16b182 1283 1283 fmt_lastparagraph.setLeftMargin(10); 1284 1284 1285 settings->beginGroup("Output/Colors"); 1286 1285 1287 fmt_table.setTopMargin(5); 1286 1288 fmt_table.setRightMargin(10); 1287 1289 fmt_table.setBottomMargin(0); 1288 1290 fmt_table.setLeftMargin(10); 1289 fmt_table.setBorder(0); 1290 fmt_table.setBorderStyle(QTextFrameFormat::BorderStyle_None); 1291 fmt_table.setCellSpacing(5); 1291 fmt_table.setBorder(1); 1292 fmt_table.setBorderBrush(QBrush(QColor(settings->value("TableBorder", DEF_TABLE_COLOR).toString()))); 1293 fmt_table.setBorderStyle(QTextFrameFormat::BorderStyle_Solid); 1294 fmt_table.setCellSpacing(0); 1295 fmt_table.setCellPadding(2); 1292 1296 1293 1297 fmt_cell.setAlignment(Qt::AlignHCenter); 1294 1298 1295 settings->beginGroup("Output/Colors"); 1296 1297 QColor color = qvariant_cast<QColor>(settings->value("Text", DEF_TEXT_COLOR)); 1299 QColor color = QColor(settings->value("Text", DEF_TEXT_COLOR).toString()); 1298 1300 QColor hilight; 1299 1301 if (color.value() < 192) … … 1305 1307 fmt_default.setForeground(QBrush(color)); 1306 1308 1307 fmt_selected.setForeground(QBrush( qvariant_cast<QColor>(settings->value("Selected", DEF_SELECTED_COLOR))));1309 fmt_selected.setForeground(QBrush(QColor(settings->value("Selected", DEF_SELECTED_COLOR).toString()))); 1308 1310 fmt_selected.setFontWeight(QFont::Bold); 1309 1311 1310 fmt_alternate.setForeground(QBrush( qvariant_cast<QColor>(settings->value("Alternate", DEF_ALTERNATE_COLOR))));1312 fmt_alternate.setForeground(QBrush(QColor(settings->value("Alternate", DEF_ALTERNATE_COLOR).toString()))); 1311 1313 fmt_alternate.setFontWeight(QFont::Bold); 1312 1314 fmt_altlist.setForeground(QBrush(hilight));
Note: See TracChangeset
for help on using the changeset viewer.