Warning, /rolisteam/rolisteam/src/libraries/charactersheet/qml/Rolisteam/PageButton.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 
0004 Button {
0005     id:root
0006     property bool readOnly: false
0007     property string tooltip: ""
0008     property bool next: false
0009     property bool showImage: true
0010 
0011     display: showImage ? AbstractButton.TextBesideIcon : AbstractButton.TextOnly
0012 
0013     icon.color: "transparent"
0014     icon.source: root.next ? "image://rcs/nextpagebtn.png" : "image://rcs/previouspagebtn.png"
0015 }