Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f697224a
Commit
f697224a
authored
May 11, 2009
by
Daniel Molkentin
Browse files
First iteration of reworked welcome screen.
parent
581dca0a
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/core.qrc
View file @
f697224a
...
...
@@ -57,5 +57,7 @@
<file>images/welcomemode/product_logo.png</file>
<file>images/welcomemode/qt_logo.png</file>
<file>images/welcomemode/rc_combined.png</file>
<file>images/welcomemode/background_center_frame.png</file>
<file>images/welcomemode/center_frame_header.png</file>
</qresource>
</RCC>
src/plugins/coreplugin/welcomemode.cpp
View file @
f697224a
...
...
@@ -106,6 +106,13 @@ WelcomeMode::WelcomeMode() :
updateWelcomePage
(
WelcomePageData
());
QButtonGroup
*
btnGrp
=
new
QButtonGroup
(
this
);
btnGrp
->
addButton
(
m_d
->
ui
.
gettingStartedSectButton
,
0
);
btnGrp
->
addButton
(
m_d
->
ui
.
developSectButton
,
1
);
btnGrp
->
addButton
(
m_d
->
ui
.
communitySectButton
,
2
);
connect
(
btnGrp
,
SIGNAL
(
buttonClicked
(
int
)),
m_d
->
ui
.
stackedWidget
,
SLOT
(
setCurrentIndex
(
int
)));
connect
(
m_d
->
ui
.
gettingStartedButton
,
SIGNAL
(
clicked
()),
SIGNAL
(
requestHelp
()));
connect
(
m_d
->
ui
.
feedbackButton
,
SIGNAL
(
clicked
()),
SLOT
(
slotFeedback
()));
connect
(
m_d
->
ui
.
restoreSessionButton
,
SIGNAL
(
clicked
()),
SLOT
(
slotRestoreLastSession
()));
...
...
src/plugins/coreplugin/welcomemode.ui
View file @
f697224a
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment