Skip to content
GitLab
Menu
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
d469a623
Commit
d469a623
authored
Apr 12, 2010
by
ck
Browse files
Add part missing in bf8227a721e5f7bd1e354ca4533aed4cafe23c80.
parent
e0f79f88
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.h
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
;
...
...
Write
Preview
Supports
Markdown
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