Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/area_review.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.0
0008 
0009 StandardBackground
0010 {
0011     id: root
0012     tools: Link {
0013             id: goCode
0014 
0015             iconName: "go-previous"
0016             text: i18n("Back to code")
0017             onClicked: kdev.setArea("code")
0018         }
0019     pageIcon: "applications-engineering"
0020 
0021     StandardPage {
0022         id: startingPage
0023         anchors {
0024             fill: parent
0025             leftMargin: root.marginLeft+root.margins
0026             margins: root.margins
0027         }
0028         
0029         Column {
0030             anchors.margins: 30
0031             anchors.fill: parent
0032             spacing: 30
0033             
0034             Item {
0035                 tools: Flow {
0036                     Link {
0037                         iconName: "kompare"
0038                         text: i18n("Review a Patch")
0039                         onClicked: {
0040                             kdev.raiseToolView("EditPatch")
0041                         }
0042                     }
0043                 }
0044             }
0045             
0046             Heading { text: i18n("Review Area") }
0047             
0048             Label {
0049                 width: parent.width
0050                 text: i18n("On the <em>Review</em> area you will be able to find the tools you need to review changes in your projects, either the ones you made or some external patch.")
0051                 wrapMode: Text.WordWrap
0052                 horizontalAlignment: Text.AlignJustify
0053             }
0054             Label {
0055                 width: parent.width
0056                 text: i18n("Also it will help you send the changes to the community you're contributing to, either by committing the changes, sending them by e-mail or putting them on a ReviewBoard service.")
0057                 wrapMode: Text.WordWrap
0058                 horizontalAlignment: Text.AlignJustify
0059             }
0060         }
0061     }
0062 }