Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-qt-ui-qml
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
libdap-qt-ui-qml
Merge requests
!14
Features 2603
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Features 2603
features-2603
into
develop
Overview
0
Commits
9
Pipelines
0
Changes
3
Merged
tatiana.novikova
requested to merge
features-2603
into
develop
5 years ago
Overview
0
Commits
9
Pipelines
0
Changes
3
Expand
[*] Update calculating and deleting the unnecessary part of text at comboBox
👍
0
👎
0
Merge request reports
Viewing commit
9abd54c4
Prev
Next
Show latest version
3 files
+
112
−
99
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
9abd54c4
[*] Made design changes and fixed warning.
· 9abd54c4
littletux89@gmail.com
authored
5 years ago
widgets/DapButtonForm.ui.qml
+
8
−
10
Options
@@ -12,9 +12,9 @@ Button
///@detalis hoverImageButton The image on the Button is in the mouseover state.
property
string
hoverImageButton
///@detalis widthImageButton Image width.
property
int
widthImageButton
property
int
widthImageButton
:
0
*
pt
///@detalis heightImageButton Image height.
property
int
heightImageButton
property
int
heightImageButton
:
0
*
pt
///@detalis indentImageLeftButton: Indentation of the image from the left edge.
property
int
indentImageLeftButton
///@detalis colorBackgroundNormal Button background color in normal state.
@@ -31,8 +31,6 @@ Button
property
int
indentTextRight
///@detalis fontButton Font setting.
property
alias
fontButton
:
buttonText
.
font
///@detalis existenceImage Indicates the presence of an image.
property
bool
existenceImage
:
true
///@detalis horizontalAligmentText Horizontal alignment.
property
alias
horizontalAligmentText
:
buttonText
.
horizontalAlignment
///@detalis colorBackgroundButton This property overrides the background color.
@@ -72,12 +70,12 @@ Button
Image
{
id
:
iconNewWallet
anchors.verticalCenter
:
if
(
existenceImage
)
parent
.
verticalCenter
anchors.left
:
if
(
existenceImage
)
parent
.
left
anchors.leftMargin
:
if
(
existenceImage
)
indentImageLeftButton
source
:
if
(
existenceImage
)
dapButton
.
hovered
?
hoverImageButton
:
normalImageButton
width
:
if
(
existenceImage
)
widthImageButton
height
:
if
(
existenceImage
)
heightImageButton
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.left
:
parent
.
left
anchors.leftMargin
:
indentImageLeftButton
source
:
dapButton
.
hovered
?
hoverImageButton
:
normalImageButton
width
:
widthImageButton
height
:
heightImageButton
}
}
}
Loading