forked from qt-creator/qt-creator
debugger: start work "Target Communication Framework" "frontend"
This commit is contained in:
@@ -40,6 +40,7 @@ class QPushButton;
|
||||
namespace Ui {
|
||||
class AttachCoreDialog;
|
||||
class AttachExternalDialog;
|
||||
class AttachTcfDialog;
|
||||
class StartExternalDialog;
|
||||
class StartRemoteDialog;
|
||||
} // namespace Ui
|
||||
@@ -101,6 +102,31 @@ private:
|
||||
ProcessListFilterModel *m_model;
|
||||
};
|
||||
|
||||
class AttachTcfDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AttachTcfDialog(QWidget *parent);
|
||||
~AttachTcfDialog();
|
||||
|
||||
void setRemoteChannel(const QString &host);
|
||||
void setRemoteArchitecture(const QString &arch);
|
||||
void setRemoteArchitectures(const QStringList &arches);
|
||||
QString remoteChannel() const;
|
||||
QString remoteArchitecture() const;
|
||||
void setServerStartScript(const QString &scriptName);
|
||||
QString serverStartScript() const;
|
||||
void setUseServerStartScript(bool on);
|
||||
bool useServerStartScript() const;
|
||||
|
||||
private slots:
|
||||
void updateState();
|
||||
|
||||
private:
|
||||
Ui::AttachTcfDialog *m_ui;
|
||||
};
|
||||
|
||||
class StartExternalDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
Reference in New Issue
Block a user