| 1127 | } |
| 1128 | |
| 1129 | void AdaptixWidget::LoadShellUI(const QString &AgentId) |
| 1130 | { |
| 1131 | QReadLocker locker(&AgentsMapLock); |
| 1132 | if( !AgentsMap.contains(AgentId) ) |
| 1133 | return; |
| 1134 | |
| 1135 | auto agent = AgentsMap[AgentId]; |
| 1136 | locker.unlock(); |
| 1137 | if (agent) |
| 1138 | this->PlaceDock(dockBottom, agent->GetShell()->dock() ); |
| 1139 | } |
| 1140 | |
| 1141 | void AdaptixWidget::ShowTunnelCreator(const QString &AgentId, const bool socks4, const bool socks5, const bool lportfwd, const bool rportfwd) |
| 1142 | { |
no test coverage detected