Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/area_debug.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 import QtQuick.Layouts 1.1
0009 import QtQuick.Controls 1.2
0010 
0011 StandardBackground
0012 {
0013     id: root
0014     tools: Link {
0015             id: goCode
0016 
0017             iconName: "go-previous"
0018             text: i18n("Back to code")
0019             onClicked: kdev.setArea("code")
0020         }
0021     pageIcon: "tools-report-bug"
0022 
0023     StandardPage {
0024         id: startingPage
0025         anchors {
0026             fill: parent
0027             leftMargin: root.marginLeft+root.margins
0028             margins: root.margins
0029         }
0030 
0031         Column {
0032             anchors.margins: 30
0033             anchors.fill: parent
0034             spacing: 30
0035             
0036             RowLayout {
0037                 Link { iconName: "configure"; text: i18n("Configure a new Launcher"); onClicked: kdev.retrieveMenuAction("run/configure_launches").trigger() }
0038                 Link { iconName: "audio-input-line"; text: i18n("Attach to Process"); onClicked: kdev.retrieveMenuAction("run/debug_attach").trigger() }
0039                 Link { iconName: "debug-run"; text: i18n("Debug your program"); onClicked: kdev.retrieveMenuAction("run/run_debug").trigger() }
0040             }
0041             Heading { text: i18n("Debug Area") }
0042             Label {
0043                 width: parent.width
0044                 text: i18n("On the <em>Debug</em> area you will be able to see and analyze how your program works on execution. On the <em>Run</em> menu you will find all the possible options.")
0045                 wrapMode: Text.WordWrap
0046                 horizontalAlignment: Text.AlignJustify
0047             }
0048             Label {
0049                 width: parent.width
0050                 text: i18n("As you can see, here you can just execute your application or debug it if you need further runtime information. You can select what is going to be run by configuring the launches and selecting the one you want to use in the <em>Current Launch Configuration</em> sub-menu.")
0051                 wrapMode: Text.WordWrap
0052                 horizontalAlignment: Text.AlignJustify
0053             }
0054         }
0055     }
0056 }