Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
3be78a13
Commit
3be78a13
authored
10 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Fancy palette is temporarily removed from WelcomeView and SimulationView
parent
c2482268
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/coregui/Views/SimulationWidgets/SimulationSetupWidget.cpp
+5
-5
5 additions, 5 deletions
...coregui/Views/SimulationWidgets/SimulationSetupWidget.cpp
GUI/coregui/Views/WelcomeView.cpp
+6
-6
6 additions, 6 deletions
GUI/coregui/Views/WelcomeView.cpp
with
11 additions
and
11 deletions
GUI/coregui/Views/SimulationWidgets/SimulationSetupWidget.cpp
+
5
−
5
View file @
3be78a13
...
...
@@ -97,10 +97,10 @@ SimulationSetupWidget::SimulationSetupWidget(QWidget *parent)
runSimulationButton
->
setMinimumHeight
(
50
);
runSimulationButton
->
setToolTip
(
"Run the simulation using settings above.
\n
"
" Global shortcut ctrl-r can be used to run from sample view."
);
QPalette
palette
=
runSimulationButton
->
palette
();
palette
.
setColor
(
QPalette
::
Button
,
QColor
(
Constants
::
BUTTON_COLOR
));
palette
.
setColor
(
QPalette
::
ButtonText
,
QColor
(
Constants
::
BUTTON_TEXT_COLOR
));
runSimulationButton
->
setPalette
(
palette
);
//
QPalette palette = runSimulationButton->palette();
//
palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
//
palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
//
runSimulationButton->setPalette(palette);
// export simulation to a python script
exportToPyScriptButton
=
new
QPushButton
(
tr
(
"Export to Python Script"
));
...
...
@@ -109,7 +109,7 @@ SimulationSetupWidget::SimulationSetupWidget(QWidget *parent)
exportToPyScriptButton
->
setMinimumHeight
(
50
);
exportToPyScriptButton
->
setToolTip
(
"Export the simulation using settings above to "
"a python script.
\n
"
);
exportToPyScriptButton
->
setPalette
(
palette
);
//
exportToPyScriptButton->setPalette(palette);
simButtonLayout
->
addStretch
();
simButtonLayout
->
addWidget
(
runSimulationButton
);
...
...
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/WelcomeView.cpp
+
6
−
6
View file @
3be78a13
...
...
@@ -56,24 +56,24 @@ WelcomeView::WelcomeView(MainWindow *parent)
m_newProjectButton
->
setMinimumWidth
(
buttonWidth
);
m_newProjectButton
->
setMinimumHeight
(
buttonHeight
);
m_newProjectButton
->
setFont
(
buttonFont
);
QPalette
button_palette
=
m_newProjectButton
->
palette
();
button_palette
.
setColor
(
QPalette
::
Button
,
QColor
(
Constants
::
BUTTON_COLOR
));
button_palette
.
setColor
(
QPalette
::
ButtonText
,
QColor
(
Constants
::
BUTTON_TEXT_COLOR
));
m_newProjectButton
->
setPalette
(
button_palette
);
//
QPalette button_palette = m_newProjectButton->palette();
//
button_palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
//
button_palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
//
m_newProjectButton->setPalette(button_palette);
m_newProjectButton
->
setToolTip
(
"Create new project"
);
m_openProjectButton
=
new
QPushButton
(
tr
(
"Open Project"
));
m_openProjectButton
->
setMinimumWidth
(
buttonWidth
);
m_openProjectButton
->
setMinimumHeight
(
buttonHeight
);
m_openProjectButton
->
setFont
(
buttonFont
);
m_openProjectButton
->
setPalette
(
button_palette
);
//
m_openProjectButton->setPalette(button_palette);
m_openProjectButton
->
setToolTip
(
"Open existing project"
);
m_newUsertButton
=
new
QPushButton
(
tr
(
"New to BornAgain?"
));
m_newUsertButton
->
setMinimumWidth
(
buttonWidth
);
m_newUsertButton
->
setMinimumHeight
(
buttonHeight
);
m_newUsertButton
->
setFont
(
buttonFont
);
m_newUsertButton
->
setPalette
(
button_palette
);
//
m_newUsertButton->setPalette(button_palette);
m_newUsertButton
->
setToolTip
(
"Open BornAgain web site"
);
QVBoxLayout
*
buttonLayout
=
new
QVBoxLayout
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment