[UWP] Basic console panel

This commit is contained in:
Paul Rouget 2020-06-17 11:36:04 +02:00 committed by Josh Matthews
parent 2560e78f11
commit bd8c7d6f4d
9 changed files with 400 additions and 33 deletions

View file

@ -7,11 +7,7 @@
#include "BrowserPage.h" #include "BrowserPage.h"
#include "BrowserPage.g.cpp" #include "BrowserPage.g.cpp"
#include "DefaultUrl.h" #include "DefaultUrl.h"
#include "Devtools/Client.h"
#include "winrt/Microsoft.UI.Xaml.Controls.h"
#include "winrt/Microsoft.UI.Xaml.XamlTypeInfo.h"
#include "winrt/Windows.UI.Text.h"
#include "winrt/Windows.UI.Xaml.Documents.h" // For Run.Text()
using namespace std::placeholders; using namespace std::placeholders;
using namespace winrt::Windows::Foundation; using namespace winrt::Windows::Foundation;
@ -21,7 +17,9 @@ using namespace winrt::Windows::UI::ViewManagement;
using namespace winrt::Windows::ApplicationModel::Core; using namespace winrt::Windows::ApplicationModel::Core;
using namespace winrt::Windows::ApplicationModel::Resources; using namespace winrt::Windows::ApplicationModel::Resources;
using namespace winrt::Windows::UI::Notifications; using namespace winrt::Windows::UI::Notifications;
using namespace winrt::Windows::Data::Json;
using namespace winrt::Windows::Data::Xml::Dom; using namespace winrt::Windows::Data::Xml::Dom;
using namespace winrt::servo;
namespace winrt::ServoApp::implementation { namespace winrt::ServoApp::implementation {
@ -46,6 +44,7 @@ void BrowserPage::BindServoEvents() {
reloadButton().Visibility(Visibility::Collapsed); reloadButton().Visibility(Visibility::Collapsed);
stopButton().IsEnabled(true); stopButton().IsEnabled(true);
stopButton().Visibility(Visibility::Visible); stopButton().Visibility(Visibility::Visible);
devtoolsButton().IsEnabled(true);
}); });
servoControl().OnLoadEnded([=] { servoControl().OnLoadEnded([=] {
urlbarLoadingIndicator().IsActive(false); urlbarLoadingIndicator().IsActive(false);
@ -64,22 +63,20 @@ void BrowserPage::BindServoEvents() {
urlTextbox().GotFocus(std::bind(&BrowserPage::OnURLFocused, this, _1)); urlTextbox().GotFocus(std::bind(&BrowserPage::OnURLFocused, this, _1));
servoControl().OnMediaSessionMetadata( servoControl().OnMediaSessionMetadata(
[=](hstring title, hstring artist, hstring album) {}); [=](hstring title, hstring artist, hstring album) {});
servoControl().OnMediaSessionPlaybackStateChange( servoControl().OnMediaSessionPlaybackStateChange([=](const auto &,
[=](const auto &, int state) { int state) {
if (state == servo::Servo::MediaSessionPlaybackState::None) { if (state == Servo::MediaSessionPlaybackState::None) {
mediaControls().Visibility(Visibility::Collapsed); mediaControls().Visibility(Visibility::Collapsed);
return; return;
} }
mediaControls().Visibility(Visibility::Visible); mediaControls().Visibility(Visibility::Visible);
playButton().Visibility( playButton().Visibility(state == Servo::MediaSessionPlaybackState::Paused
state == servo::Servo::MediaSessionPlaybackState::Paused ? Visibility::Visible
? Visibility::Visible : Visibility::Collapsed);
: Visibility::Collapsed); pauseButton().Visibility(state == Servo::MediaSessionPlaybackState::Paused
pauseButton().Visibility( ? Visibility::Collapsed
state == servo::Servo::MediaSessionPlaybackState::Paused : Visibility::Visible);
? Visibility::Collapsed });
: Visibility::Visible);
});
servoControl().OnDevtoolsStatusChanged( servoControl().OnDevtoolsStatusChanged(
[=](DevtoolsStatus status, unsigned int port) { [=](DevtoolsStatus status, unsigned int port) {
mDevtoolsStatus = status; mDevtoolsStatus = status;
@ -276,11 +273,49 @@ void BrowserPage::OnPrefererenceSearchboxEdited(
} }
} }
void BrowserPage::OnDevtoolsMessage(DevtoolsMessageLevel level, hstring source,
hstring body) {
Dispatcher().RunAsync(CoreDispatcherPriority::Low, [=] {
// Temporary text-based logs. Should use gridview.
auto paragraph = Documents::Paragraph();
auto run1 = Documents::Run();
if (level == DevtoolsMessageLevel::Warn) {
run1.Text(L"warn: ");
} else if (level == DevtoolsMessageLevel::Error) {
run1.Text(L"error: ");
} else if (level == DevtoolsMessageLevel::None) {
run1.Text(L"");
}
paragraph.Inlines().Append(run1);
auto run2 = Documents::Run();
run2.Text(body);
paragraph.Inlines().Append(run2);
auto run3 = Documents::Run();
run3.Text(L" " + source);
paragraph.Inlines().Append(run3);
DevtoolsConsoleOutput().Blocks().Append(paragraph);
// Scroll to last message
auto offset = DevtoolsConsoleScrollViewer().ExtentHeight();
DevtoolsConsoleScrollViewer().ChangeView(nullptr, offset, nullptr);
});
}
void BrowserPage::OnDevtoolsDetached() {}
void BrowserPage::OnDevtoolsButtonClicked(IInspectable const &, void BrowserPage::OnDevtoolsButtonClicked(IInspectable const &,
RoutedEventArgs const &) { RoutedEventArgs const &) {
if (toolbox().Visibility() == Visibility::Visible) { if (toolbox().Visibility() == Visibility::Visible) {
prefList().Children().Clear(); prefList().Children().Clear();
toolbox().Visibility(Visibility::Collapsed); toolbox().Visibility(Visibility::Collapsed);
DevtoolsConsoleOutput().Blocks().Clear();
if (mDevtoolsClient != nullptr) {
mDevtoolsClient->Stop();
}
return; return;
} }
@ -290,10 +325,16 @@ void BrowserPage::OnDevtoolsButtonClicked(IInspectable const &,
auto resourceLoader = ResourceLoader::GetForCurrentView(); auto resourceLoader = ResourceLoader::GetForCurrentView();
if (mDevtoolsStatus == DevtoolsStatus::Running) { if (mDevtoolsStatus == DevtoolsStatus::Running) {
hstring port = to_hstring(mDevtoolsPort);
if (mDevtoolsClient == nullptr) {
DevtoolsDelegate *dd = static_cast<DevtoolsDelegate *>(this);
mDevtoolsClient =
std::make_unique<DevtoolsClient>(L"localhost", port, *dd);
}
mDevtoolsClient->Run();
std::wstring message = std::wstring message =
resourceLoader.GetString(L"devtoolsStatus/Running").c_str(); resourceLoader.GetString(L"devtoolsStatus/Running").c_str();
std::wstring formatted = std::wstring formatted = format(message, port.c_str());
format(message, std::to_wstring(mDevtoolsPort).c_str());
DevtoolsStatusMessage().Text(formatted); DevtoolsStatusMessage().Text(formatted);
} else if (mDevtoolsStatus == DevtoolsStatus::Failed) { } else if (mDevtoolsStatus == DevtoolsStatus::Failed) {
DevtoolsStatusMessage().Text( DevtoolsStatusMessage().Text(
@ -317,12 +358,12 @@ void BrowserPage::OnURLEdited(IInspectable const &,
void BrowserPage::OnMediaControlsPlayClicked(IInspectable const &, void BrowserPage::OnMediaControlsPlayClicked(IInspectable const &,
RoutedEventArgs const &) { RoutedEventArgs const &) {
servoControl().SendMediaSessionAction( servoControl().SendMediaSessionAction(
static_cast<int32_t>(servo::Servo::MediaSessionActionType::Play)); static_cast<int32_t>(Servo::MediaSessionActionType::Play));
} }
void BrowserPage::OnMediaControlsPauseClicked(IInspectable const &, void BrowserPage::OnMediaControlsPauseClicked(IInspectable const &,
RoutedEventArgs const &) { RoutedEventArgs const &) {
servoControl().SendMediaSessionAction( servoControl().SendMediaSessionAction(
static_cast<int32_t>(servo::Servo::MediaSessionActionType::Pause)); static_cast<int32_t>(Servo::MediaSessionActionType::Pause));
} }
} // namespace winrt::ServoApp::implementation } // namespace winrt::ServoApp::implementation

View file

@ -5,18 +5,20 @@
#pragma once #pragma once
#include "BrowserPage.g.h" #include "BrowserPage.g.h"
#include "ServoControl\ServoControl.h" #include "ServoControl/ServoControl.h"
#include "Devtools/Client.h"
namespace winrt::ServoApp::implementation { namespace winrt::ServoApp::implementation {
using namespace winrt::Windows; using namespace winrt::Windows;
using namespace winrt::Windows::Data::Json;
using namespace winrt::Windows::Foundation; using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::UI::Xaml; using namespace winrt::Windows::UI::Xaml;
static const hstring SERVO_SCHEME = L"fxr"; static const hstring SERVO_SCHEME = L"fxr";
static const hstring SERVO_SCHEME_SLASH_SLASH = L"fxr://"; static const hstring SERVO_SCHEME_SLASH_SLASH = L"fxr://";
struct BrowserPage : BrowserPageT<BrowserPage> { struct BrowserPage : BrowserPageT<BrowserPage>, public servo::DevtoolsDelegate {
public: public:
BrowserPage(); BrowserPage();
@ -41,6 +43,8 @@ public:
RoutedEventArgs const &); RoutedEventArgs const &);
void OnPrefererenceSearchboxEdited(IInspectable const &, void OnPrefererenceSearchboxEdited(IInspectable const &,
Input::KeyRoutedEventArgs const &); Input::KeyRoutedEventArgs const &);
void OnDevtoolsMessage(servo::DevtoolsMessageLevel, hstring, hstring);
void OnDevtoolsDetached();
private: private:
void UpdatePref(ServoApp::Pref, Controls::Control); void UpdatePref(ServoApp::Pref, Controls::Control);
@ -48,6 +52,7 @@ private:
void BuildPrefList(); void BuildPrefList();
DevtoolsStatus mDevtoolsStatus = DevtoolsStatus::Stopped; DevtoolsStatus mDevtoolsStatus = DevtoolsStatus::Stopped;
unsigned int mDevtoolsPort = 0; unsigned int mDevtoolsPort = 0;
std::unique_ptr<servo::DevtoolsClient> mDevtoolsClient;
}; };
} // namespace winrt::ServoApp::implementation } // namespace winrt::ServoApp::implementation

View file

@ -130,7 +130,7 @@
</TextBox.KeyboardAccelerators> </TextBox.KeyboardAccelerators>
</TextBox> </TextBox>
<StackPanel Orientation="Horizontal" Grid.Column="2"> <StackPanel Orientation="Horizontal" Grid.Column="2">
<Button Style="{StaticResource NavigationBarButton}" x:Name="devtoolsButton" x:Uid="devtoolsButton" IsTabStop="true" Click="OnDevtoolsButtonClicked"> <Button Style="{StaticResource NavigationBarButton}" x:Name="devtoolsButton" IsEnabled="false" x:Uid="devtoolsButton" IsTabStop="true" Click="OnDevtoolsButtonClicked">
<Image Source="Assets/UI/devtools.png" Height="18"></Image> <Image Source="Assets/UI/devtools.png" Height="18"></Image>
</Button> </Button>
<ProgressRing x:Name="urlbarLoadingIndicator" Margin="10,0"/> <ProgressRing x:Name="urlbarLoadingIndicator" Margin="10,0"/>
@ -149,6 +149,12 @@
</Button> </Button>
</Grid> </Grid>
</muxc:TabView.TabStripFooter> </muxc:TabView.TabStripFooter>
<muxc:TabViewItem x:Uid="devtoolsTabConsole" IsClosable="False">
<ScrollViewer x:Name="DevtoolsConsoleScrollViewer" VerticalScrollMode="Enabled" HorizontalScrollMode="Enabled">
<RichTextBlock x:Name="DevtoolsConsoleOutput" FontSize="10" FontFamily="Consolas" LineHeight="14">
</RichTextBlock>
</ScrollViewer>
</muxc:TabViewItem>
<muxc:TabViewItem x:Uid="devtoolsTabServer" IsClosable="False"> <muxc:TabViewItem x:Uid="devtoolsTabServer" IsClosable="False">
<TextBlock x:Name="DevtoolsStatusMessage" Margin="10"></TextBlock> <TextBlock x:Name="DevtoolsStatusMessage" Margin="10"></TextBlock>
</muxc:TabViewItem> </muxc:TabViewItem>

View file

@ -0,0 +1,237 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#include "pch.h"
#include "strutils.h"
#include "Client.h"
using namespace winrt::Windows::Data::Json;
using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::Networking;
using namespace winrt::Windows::Storage::Streams;
namespace winrt::servo {
void DevtoolsClient::Stop() {
if (mReceiving && mReceiveOp.has_value() &&
mReceiveOp->Status() != AsyncStatus::Completed) {
mReceiveOp->Cancel();
}
}
void DevtoolsClient::Run() {
if (mReceiving) {
throw hresult_error(E_FAIL, L"Already running");
}
mReceiving = true;
auto socket = Sockets::StreamSocket();
auto hostname = HostName(mHostname);
auto connecting = socket.ConnectAsync(hostname, mPort);
connecting.Completed([=](const auto &, const auto &) {
mDataReader = DataReader(socket.InputStream());
mDataWriter = DataWriter(socket.OutputStream());
mReceiveOp = {Loop()};
mReceiveOp->Completed([=](const auto &, const auto &) {
mReceiveOp = {};
mDataReader->DetachStream();
mDataWriter->DetachStream();
mReceiving = false;
mDelegate.OnDevtoolsDetached();
});
});
}
IAsyncAction DevtoolsClient::Loop() {
auto cancellation = co_await winrt::get_cancellation_token();
cancellation.callback([=] {
if (mReaderOp.Status() != AsyncStatus::Completed) {
mReaderOp.Cancel();
}
});
while (!cancellation()) {
unsigned int len = 0;
while (!cancellation()) {
mReaderOp = mDataReader->LoadAsync(1);
co_await mReaderOp;
hstring c = mDataReader->ReadString(1);
if (c == L":")
break;
try {
unsigned int digit = std::stoi(c.c_str());
len = 10 * len + digit;
} catch (...) {
throw hresult_error(E_FAIL, L"Can't parse message header:" + c);
}
if (len >= 10000) {
throw hresult_error(E_FAIL, L"Message length too long");
}
}
if (cancellation()) {
break;
}
hstring request = L"";
mReaderOp = mDataReader->LoadAsync(len);
auto bytesLoaded = co_await mReaderOp;
request = request + mDataReader->ReadString(bytesLoaded);
JsonObject json;
if (!JsonObject::TryParse(request, json)) {
throw hresult_error(E_FAIL, L"Can't parse message: " + request);
}
HandleMessage(json);
}
}
void DevtoolsClient::HandleMessage(JsonObject obj) {
// Basic devtools protocol implementation:
// https://docs.firefox-dev.tools/backend/protocol.html
if (obj.HasKey(L"from") && obj.GetNamedString(L"from") == L"root") {
if (obj.HasKey(L"applicationType")) {
// First message. Ask for the current tab
JsonObject out;
out.Insert(L"to", JsonValue::CreateStringValue(L"root"));
out.Insert(L"type", JsonValue::CreateStringValue(L"getTab"));
Send(out);
return;
} else if (obj.HasKey(L"tab")) {
// Got the current tab.
auto tab = obj.GetNamedObject(L"tab");
if (tab.HasKey(L"actor")) {
// Attach to tab, and ask for cached messaged
JsonObject msg1;
msg1.Insert(L"to", tab.GetNamedValue(L"actor"));
msg1.Insert(L"type", JsonValue::CreateStringValue(L"attach"));
Send(msg1);
JsonObject msg2;
msg2.Insert(L"to", tab.GetNamedValue(L"consoleActor"));
msg2.Insert(L"type",
JsonValue::CreateStringValue(L"getCachedMessages"));
JsonArray types;
types.Append(JsonValue::CreateStringValue(L"PageError"));
types.Append(JsonValue::CreateStringValue(L"ConsoleAPI"));
msg2.Insert(L"messageTypes", types);
Send(msg2);
return;
}
}
} else if (obj.HasKey(L"type")) { // Not from root
if (obj.GetNamedString(L"type") == L"pageError") {
// Got a page error
HandlePageError(obj.GetNamedObject(L"pageError"));
return;
} else if (obj.GetNamedString(L"type") == L"consoleAPICall") {
// console.* calls
auto message = obj.GetNamedObject(L"message");
HandleConsoleMessage(message);
return;
} else if (obj.GetNamedString(L"type") == L"tabAttached") {
// Ignore
return;
} else if (obj.GetNamedString(L"type") == L"networkEvent") {
// Ignore
return;
} else if (obj.GetNamedString(L"type") == L"tabNavigated") {
// Ignore
return;
} else if (obj.GetNamedString(L"type") == L"networkEventUpdate") {
// FIXME: log if there is a non-200 HTTP response
return;
}
} else if (obj.HasKey(L"messages")) {
// Response to getCachedMessages
for (auto messageValue : obj.GetNamedArray(L"messages")) {
auto message = messageValue.GetObject();
if (message.GetNamedString(L"_type") == L"ConsoleAPI") {
HandleConsoleMessage(message);
} else if (message.GetNamedString(L"_type") == L"PageError") {
HandlePageError(message);
} else {
HandleNonHandledMessage(message);
}
}
return;
}
HandleNonHandledMessage(obj);
}
DevtoolsMessageLevel DevtoolsClient::ParseLevel(JsonObject message) {
if (message.GetNamedBoolean(L"error", false)) {
return DevtoolsMessageLevel::Error;
}
if (message.GetNamedBoolean(L"warning", false)) {
return DevtoolsMessageLevel::Warn;
}
if (message.GetNamedBoolean(L"exception", false)) {
return DevtoolsMessageLevel::Error;
}
auto level = message.GetNamedString(L"level", L"");
if (level == L"warn") {
return DevtoolsMessageLevel::Warn;
} else if (level == L"error") {
return DevtoolsMessageLevel::Error;
}
return DevtoolsMessageLevel::None;
}
hstring DevtoolsClient::ParseSource(JsonObject message) {
auto source = message.GetNamedString(L"filename", L"<>");
if (message.HasKey(L"lineNumber")) {
source = source + L":" + to_hstring(message.GetNamedNumber(L"lineNumber"));
}
if (message.HasKey(L"columnNumber")) {
source =
source + L":" + to_hstring(message.GetNamedNumber(L"columnNumber"));
}
return source;
}
void DevtoolsClient::HandlePageError(JsonObject message) {
auto source = ParseSource(message);
auto body = message.GetNamedString(L"errorMessage", L"");
auto level = ParseLevel(message);
mDelegate.OnDevtoolsMessage(level, source, body);
}
void DevtoolsClient::HandleConsoleMessage(JsonObject message) {
auto source = ParseSource(message);
auto level = ParseLevel(message);
hstring body = L"";
for (auto arg : message.GetNamedArray(L"arguments")) {
body = body + arg.Stringify();
}
mDelegate.OnDevtoolsMessage(level, source, body);
}
void DevtoolsClient::HandleNonHandledMessage(JsonObject message) {
auto level = DevtoolsMessageLevel::Warn;
auto body = L"Unhandled devtools message: " + message.Stringify();
mDelegate.OnDevtoolsMessage(level, L"", body);
}
void DevtoolsClient::SendPendingObjects() {
if (mPendingObjects.empty() || mSending) {
return;
}
mSending = true;
auto obj = mPendingObjects.front();
mPendingObjects.erase(mPendingObjects.begin());
hstring msg = obj.Stringify();
hstring size = to_hstring(msg.size());
hstring request = size + L":" + msg;
mDataWriter->WriteString(request);
mDataWriter->StoreAsync().Completed([=](const auto &, const auto &) {
mDataWriter->FlushAsync().Completed([=](const auto &, const auto &) {
mSending = false;
SendPendingObjects();
});
});
}
void DevtoolsClient::Send(JsonObject obj) {
mPendingObjects.push_back(obj);
SendPendingObjects();
}
} // namespace winrt::servo

View file

@ -0,0 +1,57 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#pragma once
#include "pch.h"
namespace winrt::servo {
using namespace winrt::Windows::Storage::Streams;
using namespace winrt::Windows::Data::Json;
using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::Networking::Sockets;
class DevtoolsDelegate;
enum DevtoolsMessageLevel { Error, Warn, None };
class DevtoolsClient {
public:
DevtoolsClient(hstring hostname, hstring port, DevtoolsDelegate &d)
: mDelegate(d), mHostname(hostname), mPort(port){};
~DevtoolsClient() { Stop(); }
void Run();
void Stop();
void Send(JsonObject);
private:
hstring mPort;
hstring mHostname;
DevtoolsDelegate &mDelegate;
std::optional<DataReader> mDataReader;
std::optional<DataWriter> mDataWriter;
std::optional<IAsyncAction> mReceiveOp;
std::vector<JsonObject> mPendingObjects;
IAsyncOperation<unsigned int> mReaderOp;
bool mSending = false;
bool mReceiving = false;
void SendPendingObjects();
IAsyncAction Loop();
DevtoolsMessageLevel ParseLevel(JsonObject);
hstring ParseSource(JsonObject);
void HandleMessage(JsonObject);
void HandlePageError(JsonObject);
void HandleConsoleMessage(JsonObject);
void HandleNonHandledMessage(JsonObject);
};
class DevtoolsDelegate {
public:
virtual void OnDevtoolsMessage(DevtoolsMessageLevel, hstring, hstring) = 0;
virtual void OnDevtoolsDetached() = 0;
};
} // namespace winrt::servo

View file

@ -119,6 +119,7 @@
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="Devtools\Client.h" />
<ClInclude Include="strutils.h" /> <ClInclude Include="strutils.h" />
<ClInclude Include="pch.h" /> <ClInclude Include="pch.h" />
<ClInclude Include="App.h"> <ClInclude Include="App.h">
@ -913,6 +914,7 @@
<Image Include="Assets\Wide310x150Logo.scale-400.png" /> <Image Include="Assets\Wide310x150Logo.scale-400.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="Devtools\Client.cpp" />
<ClCompile Include="pch.cpp"> <ClCompile Include="pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader> <PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile> </ClCompile>
@ -964,4 +966,4 @@
<Error Condition="!Exists('..\packages\ANGLE.WindowsStore.Servo.2.1.19\build\native\ANGLE.WindowsStore.Servo.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ANGLE.WindowsStore.Servo.2.1.19\build\native\ANGLE.WindowsStore.Servo.targets'))" /> <Error Condition="!Exists('..\packages\ANGLE.WindowsStore.Servo.2.1.19\build\native\ANGLE.WindowsStore.Servo.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ANGLE.WindowsStore.Servo.2.1.19\build\native\ANGLE.WindowsStore.Servo.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.UI.Xaml.2.4.2\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.UI.Xaml.2.4.2\build\native\Microsoft.UI.Xaml.targets'))" /> <Error Condition="!Exists('..\packages\Microsoft.UI.Xaml.2.4.2\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.UI.Xaml.2.4.2\build\native\Microsoft.UI.Xaml.targets'))" />
</Target> </Target>
</Project> </Project>

View file

@ -21,6 +21,9 @@
<ClCompile Include="ServoControl\ServoControl.cpp"> <ClCompile Include="ServoControl\ServoControl.cpp">
<Filter>ServoControl</Filter> <Filter>ServoControl</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="Devtools\Client.cpp">
<Filter>Devtools</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="pch.h" /> <ClInclude Include="pch.h" />
@ -37,6 +40,9 @@
</ClInclude> </ClInclude>
<ClInclude Include="DefaultUrl.h" /> <ClInclude Include="DefaultUrl.h" />
<ClInclude Include="strutils.h" /> <ClInclude Include="strutils.h" />
<ClInclude Include="Devtools\Client.h">
<Filter>Devtools</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Image Include="Assets\Wide310x150Logo.scale-200.png"> <Image Include="Assets\Wide310x150Logo.scale-200.png">
@ -896,6 +902,9 @@
<Filter Include="Strings\fr-FR"> <Filter Include="Strings\fr-FR">
<UniqueIdentifier>{b7d3273d-a27c-4176-87a1-3d5222b796b3}</UniqueIdentifier> <UniqueIdentifier>{b7d3273d-a27c-4176-87a1-3d5222b796b3}</UniqueIdentifier>
</Filter> </Filter>
<Filter Include="Devtools">
<UniqueIdentifier>{12da8b9d-c14a-4be1-8328-c4e729fdfd3b}</UniqueIdentifier>
</Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="PropertySheet.props" /> <None Include="PropertySheet.props" />

View file

@ -111,6 +111,9 @@
<data name="devtoolsTabServer.[using:Microsoft.UI.Xaml.Controls]TabViewItem.Header" xml:space="preserve"> <data name="devtoolsTabServer.[using:Microsoft.UI.Xaml.Controls]TabViewItem.Header" xml:space="preserve">
<value>Devtools Server</value> <value>Devtools Server</value>
</data> </data>
<data name="devtoolsTabConsole.[using:Microsoft.UI.Xaml.Controls]TabViewItem.Header" xml:space="preserve">
<value>Console</value>
</data>
<data name="devtoolsTabPrefs.[using:Microsoft.UI.Xaml.Controls]TabViewItem.Header" xml:space="preserve"> <data name="devtoolsTabPrefs.[using:Microsoft.UI.Xaml.Controls]TabViewItem.Header" xml:space="preserve">
<value>Preferences</value> <value>Preferences</value>
</data> </data>

View file

@ -14,6 +14,7 @@
#include <d3d11_4.h> #include <d3d11_4.h>
#include <DirectXColors.h> #include <DirectXColors.h>
#include <dwrite_2.h> #include <dwrite_2.h>
#include <sstream>
#include <Windows.Graphics.Directx.Direct3D11.Interop.h> #include <Windows.Graphics.Directx.Direct3D11.Interop.h>
#include <windows.h> #include <windows.h>
#include <WindowsNumerics.h> #include <WindowsNumerics.h>
@ -36,6 +37,7 @@
#include <winrt/Windows.Gaming.Input.h> #include <winrt/Windows.Gaming.Input.h>
#include <winrt/Windows.Graphics.Display.h> #include <winrt/Windows.Graphics.Display.h>
#include <winrt/Windows.Graphics.Holographic.h> #include <winrt/Windows.Graphics.Holographic.h>
#include <winrt/Windows.Networking.Sockets.h>
#include <winrt/Windows.Perception.People.h> #include <winrt/Windows.Perception.People.h>
#include <winrt/Windows.Perception.Spatial.h> #include <winrt/Windows.Perception.Spatial.h>
#include <winrt/Windows.Storage.h> #include <winrt/Windows.Storage.h>
@ -49,14 +51,19 @@
#include <winrt/Windows.UI.Xaml.Controls.Primitives.h> #include <winrt/Windows.UI.Xaml.Controls.Primitives.h>
#include <winrt/Windows.UI.Xaml.Data.h> #include <winrt/Windows.UI.Xaml.Data.h>
#include <winrt/Windows.UI.Xaml.h> #include <winrt/Windows.UI.Xaml.h>
#include <winrt/Windows.UI.Xaml.Documents.h>
#include <winrt/Windows.UI.Xaml.Input.h> #include <winrt/Windows.UI.Xaml.Input.h>
#include <winrt/Windows.UI.Xaml.Interop.h> #include <winrt/Windows.UI.Xaml.Interop.h>
#include <winrt/Windows.UI.Xaml.Markup.h> #include <winrt/Windows.UI.Xaml.Markup.h>
#include <winrt/Windows.UI.Xaml.Navigation.h> #include <winrt/Windows.UI.Xaml.Navigation.h>
#include <winrt/Windows.UI.Notifications.h> #include <winrt/Windows.UI.Notifications.h>
#include <winrt/Windows.UI.Text.h>
#include <winrt/Windows.Data.Xml.Dom.h> #include <winrt/Windows.Data.Xml.Dom.h>
#include <winrt/Windows.Storage.Streams.h>
#include <winrt/Windows.Data.Json.h>
#include "winrt/Microsoft.UI.Xaml.Automation.Peers.h" #include <winrt/Microsoft.UI.Xaml.Automation.Peers.h>
#include "winrt/Microsoft.UI.Xaml.Controls.Primitives.h" #include <winrt/Microsoft.UI.Xaml.Controls.h>
#include "winrt/Microsoft.UI.Xaml.Media.h" #include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
#include "winrt/Microsoft.UI.Xaml.XamlTypeInfo.h" #include <winrt/Microsoft.UI.Xaml.Media.h>
#include <winrt/Microsoft.UI.Xaml.XamlTypeInfo.h>