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

116 lines
6.2 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?><!--
// /***************************************************************************
// The Disc Image Chef
// ============================================================================
//
// Filename : pnlDeviceInfo.xeto
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Device information panel.
//
// ==[ Description ] ==========================================================
//
// Defines the structure for the device information panel.
//
// ==[ 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
// ****************************************************************************/
-->
2018-10-07 23:06:06 +01:00
<Panel xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DiscImageChef.Gui.Controls;assembly=DiscImageChef.Gui">
<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-14 19:10:30 +01:00
<Button ID="btnEntropy" Text="Calculate entropy" Click="OnBtnEntropy"/>
</StackLayout>
</Panel>