Skip to content
Snippets Groups Projects

Feature 2798

Merged konstantin.kukharenko requested to merge feature-2798 into master
Files
3
+ 16
16
@@ -2,37 +2,37 @@ import QtQuick 2.0
import QtQuick.Controls 2.0
Button {
///@detalis heightButton Button height
///@detalis heightButton Button height.
property int heightButton: 36 * pt
///@detalis widthButton Button width
///@detalis widthButton Button width.
property int widthButton: 120 * pt
///@detalis normalImageButton the picture on the Button is in normal state
///@detalis normalImageButton The picture on the Button is in normal state.
property string normalImageButton: "qrc:/res/icons/new-wallet_icon_dark.png"
///@detalis hoverImageButton the image on the Button is in the mouseover state
///@detalis hoverImageButton The image on the Button is in the mouseover state.
property string hoverImageButton: "qrc:/res/icons/new-wallet_icon_dark_hover.png"
///@detalis widthImageButton image width
///@detalis widthImageButton Image width.
property int widthImageButton: 28 * pt
///@detalis heightImageButton image height
///@detalis heightImageButton Image height.
property int heightImageButton: 28 * pt
///@detalis indentImageLeftButton: indentation of the image from the left edge
///@detalis indentImageLeftButton: Indentation of the image from the left edge.
property int indentImageLeftButton: 10 * pt
///@detalis colorBackgroundNormal Button background color in normal state
///@detalis colorBackgroundNormal Button background color in normal state.
property string colorBackgroundNormal:"#070023"
///@detalis colorBackgroundHover Button background color in hover state
///@detalis colorBackgroundHover Button background color in hover state.
property string colorBackgroundHover: "#D51F5D"
///@detalis textButton: text Button
///@detalis textButton Text button.
property string textButton: "New Wallet"
///@detalis colorButtonTextNormal Button text color in normal state
///@detalis colorButtonTextNormal Button text color in normal state.
property string colorButtonTextNormal: "#FFFFFF"
///@detalis colorButtonTextHover Button text color in hover state
///@detalis colorButtonTextHover Button text color in hover state.
property string colorButtonTextHover: "#FFFFFF"
///@detalis indentTextRight: indentation of the text from the right edge
///@detalis indentTextRight: Indentation of the text from the right edge.
property int indentTextRight: 20 * pt
///@detalis fontSizeButton: font size
///@detalis fontSizeButton Font size.
property int fontSizeButton: 14 * pt
///@detalis existenceImage: indicates the presence of an image
///@detalis existenceImage Indicates the presence of an image.
property bool existenceImage:true
///@detalis horizontalAligmentText: horizontal alignment
///@detalis horizontalAligmentText Horizontal alignment.
property alias horizontalAligmentText:templateText.horizontalAlignment
id: dapButton
Loading