再起動ボタンを配置したいQtアプリケーションがありますが、再起動すると、Bluetoothデバイスに自動的に再接続します。これが私のコードです:
// Restart app
void gui::restartapp()
{
int index_combo;
index_combo= ui->devices_infile->currentIndex();
QProcess::startDetached(QApplication::applicationFilePath());
QCoreApplication::exit()
char *dest;
dest = addr_infile[index_combo];
sock = linkup_directmain(dest, sock);
if (sock != 0 && sock >0)
{
ui->console_1->setText("Connected to:");
ui->console_2->setText(name_infile[index_combo]);
}
else if (sock == -1)
{
ui->console_1->setText("Error connecting");
ui->console_2->setText("Check device status");
}
}
ただし、再起動するだけです。何か案が?
前もって感謝します。
アップデート:
私はそれを機能させました。他の誰かがそれを必要とする場合に備えて、後で公開します。