ui/network: move to selfdrive/ui/qt/network/ (#29656)

* move to ui/qt/network

* wifimanager->wifi_manager
pull/29661/head
Dean Lee 2 years ago committed by GitHub
parent 4005b6adde
commit 125bd2cd9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      release/files_common
  2. 2
      selfdrive/ui/SConscript
  3. 2
      selfdrive/ui/qt/network/networking.cc
  4. 2
      selfdrive/ui/qt/network/networking.h
  5. 0
      selfdrive/ui/qt/network/networkmanager.h
  6. 2
      selfdrive/ui/qt/network/wifi_manager.cc
  7. 2
      selfdrive/ui/qt/network/wifi_manager.h
  8. 2
      selfdrive/ui/qt/offroad/settings.cc
  9. 2
      selfdrive/ui/qt/setup/setup.cc
  10. 2
      selfdrive/ui/qt/setup/updater.cc

@ -318,6 +318,8 @@ selfdrive/ui/tests/test_translations.py
selfdrive/ui/qt/*.cc selfdrive/ui/qt/*.cc
selfdrive/ui/qt/*.h selfdrive/ui/qt/*.h
selfdrive/ui/qt/network/*.cc
selfdrive/ui/qt/network/*.h
selfdrive/ui/qt/offroad/*.cc selfdrive/ui/qt/offroad/*.cc
selfdrive/ui/qt/offroad/*.h selfdrive/ui/qt/offroad/*.h
selfdrive/ui/qt/offroad/*.qml selfdrive/ui/qt/offroad/*.qml

@ -24,7 +24,7 @@ widgets_src = ["ui.cc", "qt/widgets/input.cc", "qt/widgets/drive_stats.cc", "qt/
"qt/widgets/ssh_keys.cc", "qt/widgets/toggle.cc", "qt/widgets/controls.cc", "qt/widgets/ssh_keys.cc", "qt/widgets/toggle.cc", "qt/widgets/controls.cc",
"qt/widgets/offroad_alerts.cc", "qt/widgets/prime.cc", "qt/widgets/keyboard.cc", "qt/widgets/offroad_alerts.cc", "qt/widgets/prime.cc", "qt/widgets/keyboard.cc",
"qt/widgets/scrollview.cc", "qt/widgets/cameraview.cc", "#third_party/qrcode/QrCode.cc", "qt/widgets/scrollview.cc", "qt/widgets/cameraview.cc", "#third_party/qrcode/QrCode.cc",
"qt/request_repeater.cc", "qt/qt_window.cc", "qt/offroad/networking.cc", "qt/offroad/wifiManager.cc"] "qt/request_repeater.cc", "qt/qt_window.cc", "qt/network/networking.cc", "qt/network/wifi_manager.cc"]
qt_env['CPPDEFINES'] = [] qt_env['CPPDEFINES'] = []
if maps: if maps:

@ -1,4 +1,4 @@
#include "selfdrive/ui/qt/offroad/networking.h" #include "selfdrive/ui/qt/network/networking.h"
#include <algorithm> #include <algorithm>

@ -2,7 +2,7 @@
#include <vector> #include <vector>
#include "selfdrive/ui/qt/offroad/wifiManager.h" #include "selfdrive/ui/qt/network/wifi_manager.h"
#include "selfdrive/ui/qt/widgets/input.h" #include "selfdrive/ui/qt/widgets/input.h"
#include "selfdrive/ui/qt/widgets/ssh_keys.h" #include "selfdrive/ui/qt/widgets/ssh_keys.h"
#include "selfdrive/ui/qt/widgets/toggle.h" #include "selfdrive/ui/qt/widgets/toggle.h"

@ -1,4 +1,4 @@
#include "selfdrive/ui/qt/offroad/wifiManager.h" #include "selfdrive/ui/qt/network/wifi_manager.h"
#include "selfdrive/ui/ui.h" #include "selfdrive/ui/ui.h"
#include "selfdrive/ui/qt/widgets/prime.h" #include "selfdrive/ui/qt/widgets/prime.h"

@ -4,7 +4,7 @@
#include <QtDBus> #include <QtDBus>
#include <QTimer> #include <QTimer>
#include "selfdrive/ui/qt/offroad/networkmanager.h" #include "selfdrive/ui/qt/network/networkmanager.h"
enum class SecurityType { enum class SecurityType {
OPEN, OPEN,

@ -8,7 +8,7 @@
#include <QDebug> #include <QDebug>
#include "selfdrive/ui/qt/offroad/networking.h" #include "selfdrive/ui/qt/network/networking.h"
#include "common/params.h" #include "common/params.h"
#include "common/watchdog.h" #include "common/watchdog.h"

@ -15,7 +15,7 @@
#include "system/hardware/hw.h" #include "system/hardware/hw.h"
#include "selfdrive/ui/qt/api.h" #include "selfdrive/ui/qt/api.h"
#include "selfdrive/ui/qt/qt_window.h" #include "selfdrive/ui/qt/qt_window.h"
#include "selfdrive/ui/qt/offroad/networking.h" #include "selfdrive/ui/qt/network/networking.h"
#include "selfdrive/ui/qt/util.h" #include "selfdrive/ui/qt/util.h"
#include "selfdrive/ui/qt/widgets/input.h" #include "selfdrive/ui/qt/widgets/input.h"

@ -6,7 +6,7 @@
#include "selfdrive/ui/qt/util.h" #include "selfdrive/ui/qt/util.h"
#include "selfdrive/ui/qt/qt_window.h" #include "selfdrive/ui/qt/qt_window.h"
#include "selfdrive/ui/qt/setup/updater.h" #include "selfdrive/ui/qt/setup/updater.h"
#include "selfdrive/ui/qt/offroad/networking.h" #include "selfdrive/ui/qt/network/networking.h"
Updater::Updater(const QString &updater_path, const QString &manifest_path, QWidget *parent) Updater::Updater(const QString &updater_path, const QString &manifest_path, QWidget *parent)
: updater(updater_path), manifest(manifest_path), QStackedWidget(parent) { : updater(updater_path), manifest(manifest_path), QStackedWidget(parent) {

Loading…
Cancel
Save