Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
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
Container Registry
Model registry
Operate
Environments
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
Tobias Hunger
qt-creator
Commits
d469a623
Commit
d469a623
authored
14 years ago
by
ck
Browse files
Options
Downloads
Patches
Plain Diff
Add part missing in bf8227a721e5f7bd1e354ca4533aed4cafe23c80.
parent
e0f79f88
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.h
+10
-5
10 additions, 5 deletions
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.h
with
10 additions
and
5 deletions
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.h
+
10
−
5
View file @
d469a623
...
...
@@ -67,9 +67,13 @@ public:
virtual
~
AbstractMaemoRunControl
();
protected:
virtual
bool
isRunning
()
const
;
void
startDeployment
(
bool
forDebugging
);
void
deploy
();
void
stopDeployment
();
void
stopRunning
(
bool
forDebugging
);
void
run
(
const
QString
&
remoteCall
);
void
handleError
(
const
QString
&
errString
);
bool
isDeploying
()
const
;
const
QString
executableOnHost
()
const
;
...
...
@@ -89,9 +93,13 @@ protected:
private:
virtual
void
handleDeploymentFinished
(
bool
success
)
=
0
;
virtual
void
handleExecutionAboutToStart
(
const
MaemoSshRunner
*
runner
)
=
0
;
void
kill
(
const
QStringList
&
apps
);
QFutureInterface
<
void
>
m_progress
;
QScopedPointer
<
MaemoSshDeployer
>
sshDeployer
;
QScopedPointer
<
MaemoSshRunner
>
sshRunner
;
QScopedPointer
<
MaemoSshRunner
>
sshStopper
;
struct
Deployable
{
...
...
@@ -113,7 +121,6 @@ public:
~
MaemoRunControl
();
void
start
();
void
stop
();
bool
isRunning
()
const
;
private
slots
:
void
executionFinished
();
...
...
@@ -121,10 +128,9 @@ private slots:
private:
virtual
void
handleDeploymentFinished
(
bool
success
);
virtual
void
handleExecutionAboutToStart
(
const
MaemoSshRunner
*
runner
);
void
startExecution
();
QScopedPointer
<
MaemoSshRunner
>
sshRunner
;
QScopedPointer
<
MaemoSshRunner
>
sshStopper
;
bool
stoppedByUser
;
};
...
...
@@ -148,14 +154,13 @@ private slots:
private:
virtual
void
handleDeploymentFinished
(
bool
success
);
virtual
void
handleExecutionAboutToStart
(
const
MaemoSshRunner
*
runner
);
QString
gdbServerPort
()
const
;
void
startGdbServer
();
void
gdbServerStartFailed
(
const
QString
&
reason
);
void
startDebugging
();
QScopedPointer
<
MaemoSshRunner
>
sshRunner
;
QScopedPointer
<
MaemoSshRunner
>
sshStopper
;
Debugger
::
DebuggerManager
*
debuggerManager
;
QSharedPointer
<
Debugger
::
DebuggerStartParameters
>
startParams
;
int
inferiorPid
;
...
...
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