1/*
2    SPDX-FileCopyrightText: 2011 Aleix Pol <aleixpol@kde.org>
3
4    SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7import QtQuick 2.0
8
9StandardBackground
10{
11    id: root
12    tools: Link {
13            id: goCode
14
15            iconName: "go-previous"
16            text: i18n("Back to code")
17            onClicked: kdev.setArea("code")
18        }
19    pageIcon: "applications-engineering"
20
21    StandardPage {
22        id: startingPage
23        anchors {
24            fill: parent
25            leftMargin: root.marginLeft+root.margins
26            margins: root.margins
27        }
28
29        Column {
30            anchors.margins: 30
31            anchors.fill: parent
32            spacing: 30
33
34            Item {
35                tools: Flow {
36                    Link {
37                        iconName: "kompare"
38                        text: i18n("Review a Patch")
39                        onClicked: {
40                            kdev.raiseToolView("EditPatch")
41                        }
42                    }
43                }
44            }
45
46            Heading { text: i18n("Review Area") }
47
48            Label {
49                width: parent.width
50                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.")
51                wrapMode: Text.WordWrap
52                horizontalAlignment: Text.AlignJustify
53            }
54            Label {
55                width: parent.width
56                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.")
57                wrapMode: Text.WordWrap
58                horizontalAlignment: Text.AlignJustify
59            }
60        }
61    }
62}
63