Files
Aaru/Aaru.Gui/Panels/pnlImageInfo.xeto

126 lines
6.8 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?><!--
// /***************************************************************************
// The Disc Image Chef
// ============================================================================
//
2018-12-29 15:26:00 +00:00
// Filename : pnlImageInfo.xeto
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
2018-12-29 15:26:00 +00:00
// Component : Image information.
//
// ==[ Description ] ==========================================================
//
2018-12-29 15:26:00 +00:00
// Defines the structure for the image information.
//
// ==[ 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/>.
//
// ============================================================================
2020-01-03 17:51:30 +00:00
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
-->
2020-02-28 00:25:03 +00:00
<Panel xmlns:local="clr-namespace:Aaru.Gui.Controls;assembly=Aaru.Gui"
xmlns="http://schema.picoe.ca/eto.forms">
<StackLayout Orientation="Vertical">
2018-10-07 23:06:06 +01:00
<StackLayoutItem HorizontalAlignment="Center" VerticalAlignment="Top">
<ImageView ID="imgMediaLogo" Visible="False"/>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Center" VerticalAlignment="Top">
<local:SvgImageView ID="svgMediaLogo" Visible="False"/>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Center">
<Label ID="lblImageInfo" Text="Image information"/>
</StackLayoutItem>
2018-10-07 12:45:57 +01:00
<Label ID="lblImagePath" Visible="False"/>
<Label ID="lblFilter" Visible="False"/>
<Label ID="lblImageFormat" Visible="False"/>
<TabControl ID="tabInfos">
<TabPage Text="General">
<StackLayout Orientation="Vertical">
<Label ID="lblApplication" Visible="False"/>
<Label ID="lblImageSize" Visible="False"/>
<Label ID="lblSectors" Visible="False"/>
<Label ID="lblCreator" Visible="False"/>
<Label ID="lblCreationTime" Visible="False"/>
<Label ID="lblLastModificationTime" Visible="False"/>
<Label ID="lblMediaType" Visible="False"/>
<Label ID="lblHasPartitions" Visible="False"/>
<Label ID="lblHasSessions" Visible="False"/>
<GroupBox Text="Comments:" Visible="False" ID="grpComments">
<TextArea ID="txtComments" ReadOnly="True"/>
</GroupBox>
<GroupBox Text="Media information" Visible="False" ID="grpMediaInfo">
<StackLayout Orientation="Vertical">
<Label ID="lblMediaSequence" Visible="False"/>
<Label ID="lblMediaTitle" Visible="False"/>
<Label ID="lblMediaManufacturer" Visible="False"/>
<Label ID="lblMediaModel" Visible="False"/>
<Label ID="lblMediaSerialNumber" Visible="False"/>
<Label ID="lblMediaBarcode" Visible="False"/>
<Label ID="lblMediaPartNumber" Visible="False"/>
</StackLayout>
</GroupBox>
<GroupBox Text="Drive information" Visible="False" ID="grpDriveInfo">
<StackLayout Orientation="Vertical">
<Label ID="lblDriveManufacturer" Visible="False"/>
<Label ID="lblDriveModel" Visible="False"/>
<Label ID="lblDriveSerialNumber" Visible="False"/>
<Label ID="lblDriveFirmwareRevision" Visible="False"/>
<Label ID="lblMediaGeometry" Visible="False"/>
</StackLayout>
</GroupBox>
<GroupBox Text="Readable media tags" ID="grpMediaTags">
<TreeGridView ID="treeMediaTags"/>
</GroupBox>
<GroupBox Text="Readable sector tags" ID="grpSectorTags">
<TreeGridView ID="treeSectorTags"/>
</GroupBox>
</StackLayout>
</TabPage>
2018-10-07 22:36:42 +01:00
<TabPage ID="tabSessions" Text="Sessions" Visible="False">
<StackLayout Orientation="Vertical">
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
<TreeGridView ID="treeSessions"/>
</StackLayoutItem>
</StackLayout>
</TabPage>
2018-10-07 22:44:54 +01:00
<TabPage ID="tabTracks" Text="Tracks" Visible="False">
<StackLayout Orientation="Vertical">
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
<TreeGridView ID="treeTracks"/>
</StackLayoutItem>
</StackLayout>
</TabPage>
2018-10-07 22:57:48 +01:00
<TabPage ID="tabDumpHardware" Text="Dump hardware" Visible="False">
<StackLayout Orientation="Vertical">
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
<TreeGridView ID="treeDumpHardware"/>
</StackLayoutItem>
</StackLayout>
</TabPage>
</TabControl>
2018-10-17 22:12:51 +01:00
<StackLayoutItem HorizontalAlignment="Right" Expand="True">
<StackLayout Orientation="Horizontal">
<Button ID="btnEntropy" Text="Calculate entropy" Click="OnBtnEntropy"/>
<Button ID="btnVerify" Text="Verify" Click="OnBtnVerify"/>
2018-10-18 22:24:40 +01:00
<Button ID="btnChecksum" Text="Checksum" Click="OnBtnChecksum"/>
2018-10-23 23:59:33 +01:00
<Button ID="btnConvert" Text="Convert to..." Click="OnBtnConvert"/>
<Button ID="btnCreateSidecar" Text="Create CICM XML sidecar..." Click="OnBtnCreateSidecar"/>
<Button ID="btnViewSectors" Text="View sectors" Click="OnBtnViewSectors"/>
2018-11-18 23:01:16 +00:00
<Button ID="btnDecodeMediaTags" Text="Decode media tags" Click="OnBtnDecodeMediaTags"/>
2018-10-17 22:12:51 +01:00
</StackLayout>
</StackLayoutItem>
</StackLayout>
</Panel>