Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Discover
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
Discover
Commits
18187a11
Commit
18187a11
authored
Sep 15, 2017
by
Aleix Pol Gonzalez
🐧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused files
parent
7fcd1499
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
71 deletions
+0
-71
discover/qml/JustMessageAction.qml
discover/qml/JustMessageAction.qml
+0
-13
discover/qml/MessageAction.qml
discover/qml/MessageAction.qml
+0
-56
discover/resources.qrc
discover/resources.qrc
+0
-2
No files found.
discover/qml/JustMessageAction.qml
deleted
100644 → 0
View file @
7fcd1499
import
QtQuick
.
Controls
1.2
MessageAction
{
property
alias
message
:
action
.
tooltip
property
alias
enabled
:
action
.
enabled
theAction
:
Action
{
id
:
action
enabled
:
false
text
:
i18n
(
"
Got it
"
);
onTriggered
:
{
enabled
=
false
}
}
}
discover/qml/MessageAction.qml
deleted
100644 → 0
View file @
7fcd1499
/***************************************************************************
* Copyright © 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License or (at your option) version 3 or any later version *
* accepted by the membership of KDE e.V. (or its successor approved *
* by the membership of KDE e.V.), which shall act as a proxy *
* defined in Section 14 of version 3 of the license. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
import
QtQuick
2.1
import
QtQuick
.
Controls
1.1
import
QtQuick
.
Layouts
1.1
import
org
.
kde
.
discover
.
app
1.0
Rectangle
{
id
:
msg
property
QtObject
theAction
:
null
Layout.minimumHeight
:
row
.
Layout
.
minimumHeight
visible
:
theAction
.
enabled
color
:
DiscoverSystemPalette
.
highlight
RowLayout
{
id
:
row
anchors
{
fill
:
parent
leftMargin
:
5
rightMargin
:
5
}
Label
{
Layout.fillWidth
:
true
text
:
theAction
.
whatsThis
||
theAction
.
tooltip
color
:
DiscoverSystemPalette
.
highlightedText
}
Button
{
text
:
theAction
.
text
onClicked
:
theAction
.
trigger
()
}
Button
{
iconName
:
"
dialog-close
"
onClicked
:
msg
.
visible
=
false
}
}
}
discover/resources.qrc
View file @
18187a11
...
...
@@ -20,8 +20,6 @@
<file>
qml/ReviewDelegate.qml
</file>
<file>
qml/Heading.qml
</file>
<file>
qml/AddSourceDialog.qml
</file>
<file>
qml/MessageAction.qml
</file>
<file>
qml/JustMessageAction.qml
</file>
<file>
qml/ConditionalLoader.qml
</file>
<file>
qml/LinkButton.qml
</file>
<file>
qml/ApplicationScreenshots.qml
</file>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment