2018-10-07 16:32:32 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?><!--
|
|
|
|
|
// /***************************************************************************
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
// ============================================================================
|
|
|
|
|
//
|
2018-12-29 15:26:00 +00:00
|
|
|
// Filename : tabAtaInfo.xeto
|
2018-10-07 16:32:32 +01:00
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
2018-12-29 15:26:00 +00:00
|
|
|
// Component : Device information.
|
2018-10-07 16:32:32 +01:00
|
|
|
//
|
|
|
|
|
// ==[ Description ] ==========================================================
|
|
|
|
|
//
|
2018-12-29 15:26:00 +00:00
|
|
|
// Defines the structure for the ATA device information.
|
2018-10-07 16:32:32 +01:00
|
|
|
//
|
|
|
|
|
// ==[ 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/>.
|
|
|
|
|
//
|
|
|
|
|
// ============================================================================
|
2018-12-29 17:34:38 +00:00
|
|
|
// Copyright © 2011-2019 Natalia Portillo
|
2018-10-07 16:32:32 +01:00
|
|
|
// ****************************************************************************/
|
|
|
|
|
-->
|
|
|
|
|
<TabPage Text="ATA/ATAPI" Visible="False" xmlns="http://schema.picoe.ca/eto.forms"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
|
<StackLayout Orientation="Vertical">
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Center">
|
|
|
|
|
<Label ID="lblAtaIdentify" Text="ATA IDENTIFY DEVICE"/>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
|
|
|
|
<TextArea ID="txtAtaIdentify" ReadOnly="True"/>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Left">
|
|
|
|
|
<StackLayout ID="stkAtaMcpt" Orientation="Vertical">
|
|
|
|
|
<CheckBox ID="chkAtaMcpt" Text="Device is Media Card Pass Through" Enabled="False"/>
|
|
|
|
|
<Label ID="lblAtaMcpt"/>
|
|
|
|
|
<CheckBox ID="chkAtaMcptWriteProtection" Text="Media card is write protected" Enabled="False"/>
|
|
|
|
|
<Label ID="lblAtaMcptSpecificData" Visible="False"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Right" VerticalAlignment="Bottom">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<Button ID="btnSaveAtaBinary" Text="Save binary to file" Click="OnBtnSaveAtaBinary"/>
|
|
|
|
|
<Button ID="btnSaveAtaText" Text="Save text to file" Click="OnBtnSaveAtaText"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</TabPage>
|