]> git.sesse.net Git - kdenlive/commitdiff
indent
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 5 Jan 2010 12:22:50 +0000 (12:22 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 5 Jan 2010 12:22:50 +0000 (12:22 +0000)
svn path=/trunk/kdenlive/; revision=4204

src/titledocument.cpp
src/titlewidget.cpp

index c959e04bbc1c0f8c62319b11c0d58a6913cac44d..18c6066203fb909eb48cea0ae3e8140fa1c4b37c 100644 (file)
@@ -273,22 +273,22 @@ int TitleDocument::loadFromXml(QDomDocument doc, QGraphicsRectItem* startv, QGra
                         font.setPixelSize(txtProperties.namedItem("font-pixel-size").nodeValue().toInt());
                     QColor col(stringToColor(txtProperties.namedItem("font-color").nodeValue()));
                     QGraphicsTextItem *txt = m_scene->addText(items.item(i).namedItem("content").firstChild().nodeValue(), font);
-               if (txtProperties.namedItem("font-outline").nodeValue().toDouble()>0.0){
-               txt->setData(101,txtProperties.namedItem("font-outline").nodeValue().toDouble());
-               txt->setData(102,stringToColor( txtProperties.namedItem( "font-outline-color" ).nodeValue() ));
-                                       QTextCursor cursor(txt->document());
-                                       cursor.select(QTextCursor::Document);
-                                       QTextCharFormat format;
-                                       format.setTextOutline(
-                                                       QPen(QColor( stringToColor( txtProperties.namedItem( "font-outline-color" ).nodeValue() ) ),
-                                                       txtProperties.namedItem("font-outline").nodeValue().toDouble())
-                                       );
-                                       format.setForeground(QBrush(col));
-                                       cursor.mergeCharFormat(format);
-                               } else {
-                                       txt->setDefaultTextColor( col );
-                               }
+                    if (txtProperties.namedItem("font-outline").nodeValue().toDouble() > 0.0) {
+                        txt->setData(101, txtProperties.namedItem("font-outline").nodeValue().toDouble());
+                        txt->setData(102, stringToColor(txtProperties.namedItem("font-outline-color").nodeValue()));
+                        QTextCursor cursor(txt->document());
+                        cursor.select(QTextCursor::Document);
+                        QTextCharFormat format;
+                        format.setTextOutline(
+                            QPen(QColor(stringToColor(txtProperties.namedItem("font-outline-color").nodeValue())),
+                                 txtProperties.namedItem("font-outline").nodeValue().toDouble())
+                        );
+                        format.setForeground(QBrush(col));
+
+                        cursor.mergeCharFormat(format);
+                    } else {
+                        txt->setDefaultTextColor(col);
+                    }
                     txt->setTextInteractionFlags(Qt::NoTextInteraction);
                     if (txtProperties.namedItem("alignment").isNull() == false) {
                         txt->setTextWidth(txt->boundingRect().width());
index 9cf416fb52230353444429d24179b0816e6903d1..1b1384b5cdc69ad2194dfbaefab5ab42a994a16d 100644 (file)
@@ -805,25 +805,25 @@ void TitleWidget::selectionChanged()
             setFontBoxWeight(font.weight());
 
             QColor color = i->defaultTextColor();
-           QTextCursor cursor(i->document());
-           cursor.select(QTextCursor::Document);
-           color=cursor.charFormat().foreground().color();
+            QTextCursor cursor(i->document());
+            cursor.select(QTextCursor::Document);
+            color = cursor.charFormat().foreground().color();
             fontColorButton->setColor(color);
             textAlpha->setValue(color.alpha());
 
-           if (!i->data(101).isNull()){
-                       textOutline->blockSignals(true);
-               textOutline->setValue(i->data(101).toDouble()*10);
-                       textOutline->blockSignals(false);
-           }
-           if (!i->data(102).isNull()){
-                       textOutlineColor->blockSignals(true);
-                       textOutlineAlpha->blockSignals(true);
-               textOutlineColor->setColor(i->data(102).toString());
-               textOutlineAlpha->setValue(QColor(i->data(102).toString()).alpha());
-                       textOutlineColor->blockSignals(false);
-                       textOutlineAlpha->blockSignals(false);
-           }
+            if (!i->data(101).isNull()) {
+                textOutline->blockSignals(true);
+                textOutline->setValue(i->data(101).toDouble()*10);
+                textOutline->blockSignals(false);
+            }
+            if (!i->data(102).isNull()) {
+                textOutlineColor->blockSignals(true);
+                textOutlineAlpha->blockSignals(true);
+                textOutlineColor->setColor(i->data(102).toString());
+                textOutlineAlpha->setValue(QColor(i->data(102).toString()).alpha());
+                textOutlineColor->blockSignals(false);
+                textOutlineAlpha->blockSignals(false);
+            }
             QTextCursor cur = i->textCursor();
             QTextBlockFormat format = cur.blockFormat();
             if (i->textWidth() == -1) buttonAlignNone->setChecked(true);
@@ -1312,9 +1312,9 @@ void TitleWidget::slotUpdateText()
     QColor color = fontColorButton->color();
     color.setAlpha(textAlpha->value());
 
-    QColor outlineColor=textOutlineColor->color();
+    QColor outlineColor = textOutlineColor->color();
     outlineColor.setAlpha(textOutlineAlpha->value());
-    double outlineWidth=textOutline->value()/10.0;
+    double outlineWidth = textOutline->value() / 10.0;
     QGraphicsTextItem* item = NULL;
     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
     if (l.size() == 1 && l.at(0)->type() == TEXTITEM) {
@@ -1336,18 +1336,18 @@ void TitleWidget::slotUpdateText()
 
     {
         item->setFont(font);
-       if (outlineWidth>0.0){
-                                       item->setData(101,outlineWidth);
-                                       item->setData(102,outlineColor);
-                                       QTextCursor cursor(item->document());
-                                       cursor.select(QTextCursor::Document);
-                                       QTextCharFormat format;
-                                       format.setTextOutline( QPen(outlineColor,outlineWidth ));
-                                       format.setForeground(QBrush(color));
-                                       cursor.mergeCharFormat(format); 
-       }else{
-               item->setDefaultTextColor(color);
-       }
+        if (outlineWidth > 0.0) {
+            item->setData(101, outlineWidth);
+            item->setData(102, outlineColor);
+            QTextCursor cursor(item->document());
+            cursor.select(QTextCursor::Document);
+            QTextCharFormat format;
+            format.setTextOutline(QPen(outlineColor, outlineWidth));
+            format.setForeground(QBrush(color));
+            cursor.mergeCharFormat(format);
+        } else {
+            item->setDefaultTextColor(color);
+        }
         cur.select(QTextCursor::Document);
         cur.setBlockFormat(format);
         item->setTextCursor(cur);