Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-qt-ui
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-qt-ui
Merge requests
!7
Features 3090
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Features 3090
features-3090
into
develop
Overview
1
Commits
7
Pipelines
0
Changes
4
Merged
konstantin.kukharenko
requested to merge
features-3090
into
develop
5 years ago
Overview
1
Commits
7
Pipelines
0
Changes
4
Expand
👍
0
👎
0
Merge request reports
Compare
develop
version 1
2905255b
5 years ago
develop (base)
and
version 1
latest version
d9c6dfd0
7 commits,
5 years ago
version 1
2905255b
6 commits,
5 years ago
4 files
+
78
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
controls/CustomComboBox.cpp
0 → 100644
+
45
−
0
Options
#include
"CustomComboBox.h"
/** @brief constructor
* @param a_parent object parent
*/
CustomComboBox
::
CustomComboBox
(
QWidget
*
parent
)
:
QComboBox
(
parent
)
{
}
/** @brief Reimplemented QComboBox::setObjectName method. Updates stylesheets.
* @param text Text
*/
void
CustomComboBox
::
setObjectName
(
const
QString
&
name
)
{
QComboBox
::
setObjectName
(
name
);
}
/** @brief Reimplemented QComboBox::enterEvent is sent to the widget when the mouse cursor enters the widget.
* @param event
*/
void
CustomComboBox
::
enterEvent
(
QEvent
*
event
)
{
Q_UNUSED
(
event
);
setProperty
(
"hoverState"
,
1
);
style
()
->
unpolish
(
this
);
style
()
->
polish
(
this
);
update
();
}
/** @brief Reimplemented QComboBox::leaveEvent is sent to the widget when the mouse cursor leaves the widget.
* @param event
*/
void
CustomComboBox
::
leaveEvent
(
QEvent
*
event
)
{
Q_UNUSED
(
event
);
setProperty
(
"hoverState"
,
0
);
style
()
->
unpolish
(
this
);
style
()
->
polish
(
this
);
update
();
}
Loading