-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e34962
commit 1cfdd7b
Showing
7 changed files
with
417 additions
and
33 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,59 @@ | ||
<RCC> | ||
<qresource prefix="/"> | ||
<file>Arrow Link Right.svg</file> | ||
<file>Back.svg</file> | ||
<file>Bubble.svg</file> | ||
<file>AcceptInvitationImage.svg</file> | ||
<file>AcceptInvitationLogoImage.svg</file> | ||
<file>Calendar.svg</file> | ||
<file>Hide.svg</file> | ||
<file>Search.svg</file> | ||
<file>Show.svg</file> | ||
<file>X Mark.svg</file> | ||
<file>Error.svg</file> | ||
<file>Archaeology.svg</file> | ||
<file>Arrow Down.svg</file> | ||
<file>Arrow Link Right.svg</file> | ||
<file>Arrow Up.svg</file> | ||
<file>QR Code.svg</file> | ||
<file>Back.svg</file> | ||
<file>Briefcase.svg</file> | ||
<file>Bubble.svg</file> | ||
<file>Calendar.svg</file> | ||
<file>Checkmark.svg</file> | ||
<file>CloseButton.svg</file> | ||
<file>UploadImage.svg</file> | ||
<file>ReachedDataLimitImage.svg</file> | ||
<file>Close.svg</file> | ||
<file>Waiting.svg</file> | ||
<file>CloseButton.svg</file> | ||
<file>Delete.svg</file> | ||
<file>Done.svg</file> | ||
<file>Download.svg</file> | ||
<file>Edit.svg</file> | ||
<file>Electricity.svg</file> | ||
<file>Engineering.svg</file> | ||
<file>Environmental.svg</file> | ||
<file>Error.svg</file> | ||
<file>Facebook.svg</file> | ||
<file>Hide.svg</file> | ||
<file>Info.svg</file> | ||
<file>Linkedin.svg</file> | ||
<file>Mastodon.svg</file> | ||
<file>More.svg</file> | ||
<file>MorePhotos.svg</file> | ||
<file>Mouth.svg</file> | ||
<file>Natural Resources.svg</file> | ||
<file>Other.svg</file> | ||
<file>Others.svg</file> | ||
<file>ProjectButtonMore.svg</file> | ||
<file>QGIS.svg</file> | ||
<file>QR Code.svg</file> | ||
<file>ReachedDataLimitImage.svg</file> | ||
<file>Reddit.svg</file> | ||
<file>Search.svg</file> | ||
<file>Show.svg</file> | ||
<file>Social media.svg</file> | ||
<file>State and Local.svg</file> | ||
<file>Stop.svg</file> | ||
<file>Download.svg</file> | ||
<file>Info.svg</file> | ||
<file>Subscriptions.svg</file> | ||
<file>Sync.svg</file> | ||
<file>MorePhotos.svg</file> | ||
<file>Teacher.svg</file> | ||
<file>Telecommunication.svg</file> | ||
<file>Terms.svg</file> | ||
<file>Tractor.svg</file> | ||
<file>Transportation.svg</file> | ||
<file>UploadImage.svg</file> | ||
<file>Waiting.svg</file> | ||
<file>Water resources.svg</file> | ||
<file>X Mark.svg</file> | ||
<file>X Twitter.svg</file> | ||
<file>Youtube.svg</file> | ||
</qresource> | ||
</RCC> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/*************************************************************************** | ||
* * | ||
* 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) any later version. * | ||
* * | ||
***************************************************************************/ | ||
|
||
import QtQuick | ||
import QtQuick.Controls | ||
import QtQuick.Controls.Basic | ||
|
||
import "../../app/qml/components" | ||
|
||
Column { | ||
spacing: 5 | ||
id: root | ||
|
||
property var source | ||
property var text | ||
|
||
Label { | ||
text: root.text | ||
} | ||
|
||
Rectangle { | ||
width: 50 | ||
height: 50 | ||
// color: root.color | ||
border.color: "gray" | ||
|
||
MMIcon { | ||
width: parent.width | ||
height: parent.height | ||
source: root.source | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.