mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
60 lines
3.2 KiB
Plaintext
60 lines
3.2 KiB
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?><!--
|
||
|
|
// /***************************************************************************
|
||
|
|
// The Disc Image Chef
|
||
|
|
// ============================================================================
|
||
|
|
//
|
||
|
|
// Filename : frmMediaScan.xeto
|
||
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||
|
|
//
|
||
|
|
// Component : Media surface scan window.
|
||
|
|
//
|
||
|
|
// ==[ Description ] ==========================================================
|
||
|
|
//
|
||
|
|
// Defines the structure for the media scan GUI window.
|
||
|
|
//
|
||
|
|
// ==[ License ] ==============================================================
|
||
|
|
//
|
||
|
|
// This program is free software: you can redistribute it and/or modify
|
||
|
|
// it under the terms of the GNU General public License as
|
||
|
|
// published by the Free Software Foundation, either version 3 of the
|
||
|
|
// License, or (at your option) any later version.
|
||
|
|
//
|
||
|
|
// This program is distributed in the hope that it will be useful,
|
||
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
// GNU General public License for more details.
|
||
|
|
//
|
||
|
|
// You should have received a copy of the GNU General public License
|
||
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
//
|
||
|
|
// ============================================================================
|
||
|
|
// Copyright © 2011-2018 Natalia Portillo
|
||
|
|
// ****************************************************************************/
|
||
|
|
-->
|
||
|
|
<Form xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
Title="Media scan" ClientSize="600, 450" Padding="10">
|
||
|
|
<StackLayout Orientation="Vertical" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
|
||
|
|
<Label ID="lblTotalTime" Text="Took a total of {0} seconds ({1} processing commands)."/>
|
||
|
|
<Label ID="lblAvgSpeed" Text="Average speed: {0:F3} MiB/sec."/>
|
||
|
|
<Label ID="lblMaxSpeed" Text="Fastest speed burst: {0:F3} MiB/sec."/>
|
||
|
|
<Label ID="lblMinSpeed" Text="Slowest speed burst: {0:F3} MiB/sec."/>
|
||
|
|
<Label ID="lblA" Text="{0} sectors took less than 3 ms."/>
|
||
|
|
<Label ID="lblB" Text="{0} sectors took less than 10 ms but more than 3 ms."/>
|
||
|
|
<Label ID="lblC" Text="{0} sectors took less than 50 ms but more than 10 ms."/>
|
||
|
|
<Label ID="lblD" Text="{0} sectors took less than 150 ms but more than 50 ms."/>
|
||
|
|
<Label ID="lblE" Text="{0} sectors took less than 500 ms but more than 150 ms."/>
|
||
|
|
<Label ID="lblF" Text="{0} sectors took more than 500 ms."/>
|
||
|
|
<Label ID="lblUnreadableSectors" Text="{0} sectors could not be read."/>
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem HorizontalAlignment="Right">
|
||
|
|
<Button ID="btnCancel" Click="OnBtnCancelClick" Text="Cancel"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem HorizontalAlignment="Right">
|
||
|
|
<Button ID="btnStop" Click="OnBtnStopClick" Text="Stop"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem HorizontalAlignment="Right">
|
||
|
|
<Button ID="btnScan" Click="OnBtnScanClick" Text="Scan"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
</StackLayout>
|
||
|
|
</Form>
|