Warning, /pim/kube/framework/qml/Icons.qml is written in an unsupported language. File is not indexed.

0001 /*
0002   Copyright (C) 2017 Michael Bohlender, <bohlender@kolabsys.com>
0003   Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsys.com>
0004 
0005   This program is free software; you can redistribute it and/or modify
0006   it under the terms of the GNU General Public License as published by
0007   the Free Software Foundation; either version 2 of the License, or
0008   (at your option) any later version.
0009 
0010   This program is distributed in the hope that it will be useful,
0011   but WITHOUT ANY WARRANTY; without even the implied warranty of
0012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0013   GNU General Public License for more details.
0014 
0015   You should have received a copy of the GNU General Public License along
0016   with this program; if not, write to the Free Software Foundation, Inc.,
0017   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
0018 */
0019 
0020 pragma Singleton
0021 
0022 import QtQuick 2.7
0023 
0024 Item {
0025     function iconName(name, invert) {
0026         if (invert) {
0027             return name + "-inverted"
0028         }
0029         return name
0030     }
0031 
0032     property string error: "error"
0033     property string info_inverted: "documentinfo-inverted"
0034     property string error_inverted: "error-inverted"
0035     property string busy: "view-refresh"
0036     property string busy_inverted: "view-refresh-inverted"
0037     property string noNetworkConnection_inverted: "network-disconnect-inverted"
0038     property string connected: "dialog-ok"
0039     property string connected_inverted: "dialog-ok-inverted"
0040     property string success: "dialog-ok"
0041     property string success_inverted: "dialog-ok-inverted"
0042 
0043     property string markAsRead: "mail-mark-read"
0044     property string markAsUnread: "mail-mark-unread-new"
0045     property string markImportant: "kubeimportant"
0046     property string markImportant_inverted: "kubeimportant-inverted"
0047     property string markUnimportant: "kubeunimportant"
0048     property string markUnimportant_inverted: "kubeunimportant-inverted"
0049     property string isImportant: "kubeimportant"
0050     property string undo: "edit-undo"
0051     property string undo_inverted: "edit-undo-inverted"
0052     property string moveToTrash: "kubetrash"
0053     property string edit: "document-edit"
0054     property string edit_inverted: "document-edit-inverted"
0055     property string replyToSender: "mail-reply-sender"
0056     property string forward: "mail-forward"
0057     property string outbox: "mail-folder-outbox"
0058     property string outbox_inverted: "mail-folder-outbox-inverted"
0059     property string copy: "edit-copy"
0060 
0061     property string menu_inverted: "application-menu-inverted"
0062     property string overflowMenu_inverted: "overflow-menu-inverted"
0063     property string group: "group"
0064     property string user: "im-user"
0065     property string user_inverted: "im-user-inverted"
0066     property string search_inverted: "edit-find-inverted"
0067     property string mail_inverted: "mail-message-inverted"
0068     property string goBack: "go-previous"
0069     property string goBack_inverted: "go-previous-inverted"
0070     property string goNext: "go-next"
0071     property string goNext_inverted: "go-next-inverted"
0072     property string goDown: "go-down"
0073     property string goDown_inverted: "go-down-inverted"
0074     property string goUp: "go-up"
0075     property string goUp_inverted: "go-up-inverted"
0076     property string checkbox: "checkbox"
0077     property string checkbox_inverted: "checkbox-inverted"
0078     property string password_show: "password-show-on"
0079     property string password_hide: "password-show-off"
0080     property string secure: "document-encrypt"
0081     property string insecure: "document-decrypt"
0082     property string signed: "document-sign"
0083     property string key_import_inverted: "view-certificate-import-inverted"
0084 
0085     property string addNew: "list-add"
0086     property string listRemove: "list-remove"
0087     property string remove: "kube-list-remove-inverted"
0088     property string folder: "folder"
0089     property string save: "document-save"
0090     property string save_inverted: "document-save-inverted"
0091 
0092     property string bold: "format-text-bold-symbolic"
0093     property string italic: "format-text-italic-symbolic"
0094     property string underline: "format-text-underline-symbolic"
0095 
0096     property string help: "question-inverted"
0097 }
0098