Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
6cffd564
Commit
6cffd564
authored
Oct 26, 2009
by
con
Committed by
Daniel Molkentin
Oct 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move the IWelcomePage to the place it belongs.
parent
78be8e27
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
29 additions
and
18 deletions
+29
-18
src/libs/extensionsystem/extensionsystem.pro
src/libs/extensionsystem/extensionsystem.pro
+2
-4
src/libs/utils/iwelcomepage.cpp
src/libs/utils/iwelcomepage.cpp
+6
-1
src/libs/utils/iwelcomepage.h
src/libs/utils/iwelcomepage.h
+4
-3
src/libs/utils/utils.pro
src/libs/utils/utils.pro
+2
-0
src/plugins/projectexplorer/projectwelcomepage.h
src/plugins/projectexplorer/projectwelcomepage.h
+2
-2
src/plugins/qt4projectmanager/gettingstartedwelcomepage.h
src/plugins/qt4projectmanager/gettingstartedwelcomepage.h
+2
-2
src/plugins/welcome/communitywelcomepage.h
src/plugins/welcome/communitywelcomepage.h
+2
-2
src/plugins/welcome/welcome.pri
src/plugins/welcome/welcome.pri
+2
-1
src/plugins/welcome/welcome.pro
src/plugins/welcome/welcome.pro
+3
-2
src/plugins/welcome/welcome_dependencies.pri
src/plugins/welcome/welcome_dependencies.pri
+2
-0
src/plugins/welcome/welcomemode.cpp
src/plugins/welcome/welcomemode.cpp
+2
-1
No files found.
src/libs/extensionsystem/extensionsystem.pro
View file @
6cffd564
...
...
@@ -19,16 +19,14 @@ HEADERS += pluginerrorview.h \
pluginspec_p
.
h
\
pluginview
.
h
\
pluginview_p
.
h
\
optionsparser
.
h
\
iwelcomepage
.
h
optionsparser
.
h
SOURCES
+=
pluginerrorview
.
cpp
\
plugindetailsview
.
cpp
\
iplugin
.
cpp
\
pluginmanager
.
cpp
\
pluginspec
.
cpp
\
pluginview
.
cpp
\
optionsparser
.
cpp
\
iwelcomepage
.
cpp
optionsparser
.
cpp
FORMS
+=
pluginview
.
ui
\
pluginerrorview
.
ui
\
plugindetailsview
.
ui
...
...
src/libs/
extensionsystem
/iwelcomepage.cpp
→
src/libs/
utils
/iwelcomepage.cpp
View file @
6cffd564
#include "iwelcomepage.h"
using
namespace
ExtensionSystem
;
using
namespace
Utils
;
IWelcomePage
::
IWelcomePage
()
{
}
IWelcomePage
::~
IWelcomePage
()
{
}
src/libs/
extensionsystem
/iwelcomepage.h
→
src/libs/
utils
/iwelcomepage.h
View file @
6cffd564
...
...
@@ -2,20 +2,21 @@
#define IWELCOMEPAGE_H
#include "
extensionsystem
_global.h"
#include "
utils
_global.h"
#include <QObject>
namespace
ExtensionSystem
{
namespace
Utils
{
class
IWelcomePagePrivate
;
class
EXTENSIONSYSTEM
_EXPORT
IWelcomePage
:
public
QObject
class
QTCREATOR_UTILS
_EXPORT
IWelcomePage
:
public
QObject
{
Q_OBJECT
public:
IWelcomePage
();
virtual
~
IWelcomePage
();
virtual
QWidget
*
page
()
=
0
;
virtual
QString
title
()
const
=
0
;
...
...
src/libs/utils/utils.pro
View file @
6cffd564
...
...
@@ -33,6 +33,7 @@ SOURCES += reloadpromptutils.cpp \
styledbar
.
cpp
\
stylehelper
.
cpp
\
welcomemodetreewidget
.
cpp
\
iwelcomepage
.
cpp
\
fancymainwindow
.
cpp
\
detailsbutton
.
cpp
\
detailswidget
.
cpp
...
...
@@ -76,6 +77,7 @@ HEADERS += utils_global.h \
styledbar
.
h
\
stylehelper
.
h
\
welcomemodetreewidget
.
h
\
iwelcomepage
.
h
\
fancymainwindow
.
h
\
detailsbutton
.
h
\
detailswidget
.
h
...
...
src/plugins/projectexplorer/projectwelcomepage.h
View file @
6cffd564
...
...
@@ -30,14 +30,14 @@
#ifndef PROJECTWELCOMEPAGE_H
#define PROJECTWELCOMEPAGE_H
#include <
extensionsystem
/iwelcomepage.h>
#include <
utils
/iwelcomepage.h>
namespace
ProjectExplorer
{
namespace
Internal
{
class
ProjectWelcomePageWidget
;
class
ProjectWelcomePage
:
public
ExtensionSystem
::
IWelcomePage
class
ProjectWelcomePage
:
public
Utils
::
IWelcomePage
{
Q_OBJECT
public:
...
...
src/plugins/qt4projectmanager/gettingstartedwelcomepage.h
View file @
6cffd564
...
...
@@ -30,14 +30,14 @@
#ifndef GETTINGSTARTEDWELCOMEPLUGIN_H
#define GETTINGSTARTEDWELCOMEPLUGIN_H
#include <
extensionsystem
/iwelcomepage.h>
#include <
utils
/iwelcomepage.h>
namespace
Qt4ProjectManager
{
namespace
Internal
{
class
GettingStartedWelcomePageWidget
;
class
GettingStartedWelcomePage
:
public
ExtensionSystem
::
IWelcomePage
class
GettingStartedWelcomePage
:
public
Utils
::
IWelcomePage
{
Q_OBJECT
public:
...
...
src/plugins/welcome/communitywelcomepage.h
View file @
6cffd564
...
...
@@ -32,14 +32,14 @@
#include "welcome_global.h"
#include <
extensionsystem
/iwelcomepage.h>
#include <
utils
/iwelcomepage.h>
namespace
Welcome
{
namespace
Internal
{
class
CommunityWelcomePageWidget
;
class
WELCOME_EXPORT
CommunityWelcomePage
:
public
ExtensionSystem
::
IWelcomePage
class
CommunityWelcomePage
:
public
Utils
::
IWelcomePage
{
Q_OBJECT
public:
...
...
src/plugins/welcome/welcome.pri
View file @
6cffd564
include(coreplugin_dependencies.pri)
include(welcome_dependencies.pri)
LIBS *= -l$$qtLibraryTarget(Welcome)
src/plugins/welcome/welcome.pro
View file @
6cffd564
...
...
@@ -2,12 +2,13 @@ TEMPLATE = lib
TARGET
=
Welcome
QT
+=
network
include
(..
/../
qtcreatorplugin
.
pri
)
include
(
..
/../
plugins
/
coreplugin
/
coreplugin
.
pri
)
include
(
welcome_dependencies
.
pri
)
HEADERS
+=
welcomeplugin
.
h
\
welcomemode
.
h
\
rssfetcher
.
h
\
communitywelcomepagewidget
.
h
\
communitywelcomepage
.
h
communitywelcomepage
.
h
\
welcome_global
.
h
SOURCES
+=
welcomeplugin
.
cpp
\
welcomemode
.
cpp
\
rssfetcher
.
cpp
\
...
...
src/plugins/welcome/welcome_dependencies.pri
0 → 100644
View file @
6cffd564
include(../../plugins/coreplugin/coreplugin.pri)
include(../../libs/utils/utils.pri)
src/plugins/welcome/welcomemode.cpp
View file @
6cffd564
...
...
@@ -29,7 +29,6 @@
#include "welcomemode.h"
#include <extensionsystem/pluginmanager.h>
#include <extensionsystem/iwelcomepage.h>
#include <coreplugin/icore.h>
#include <coreplugin/coreconstants.h>
...
...
@@ -39,6 +38,7 @@
#include <utils/styledbar.h>
#include <utils/welcomemodetreewidget.h>
#include <utils/iwelcomepage.h>
#include <QtGui/QMouseEvent>
#include <QtGui/QScrollArea>
...
...
@@ -55,6 +55,7 @@
#include "ui_welcomemode.h"
using
namespace
ExtensionSystem
;
using
namespace
Utils
;
namespace
Welcome
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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