Move GUI elements to folders.

This commit is contained in:
2018-09-09 01:07:46 +01:00
parent 285f83d232
commit 91522b7b04
15 changed files with 29 additions and 18 deletions

View File

@@ -1304,16 +1304,26 @@
</e>
<e p="DiscImageChef.Gui" t="IncludeRecursive">
<e p="ConsoleHandler.cs" t="Include" />
<e p="Dialogs" t="Include">
<e p="dlgEncodings.xeto" t="Include" />
<e p="dlgEncodings.xeto.cs" t="Include" />
<e p="dlgPlugins.xeto" t="Include" />
<e p="dlgPlugins.xeto.cs" t="Include" />
</e>
<e p="DiscImageChef.Gui.csproj" t="IncludeRecursive" />
<e p="Forms" t="Include">
<e p="frmConsole.xeto" t="Include" />
<e p="frmConsole.xeto.cs" t="Include" />
<e p="frmMain.xeto" t="Include" />
<e p="frmMain.xeto.cs" t="Include" />
</e>
<e p="Panels" t="Include">
<e p="pnlDeviceInfo.xeto" t="Include" />
<e p="pnlDeviceInfo.xeto.cs" t="Include" />
<e p="pnlScsiInfo.xeto" t="Include" />
<e p="pnlScsiInfo.xeto.cs" t="Include" />
</e>
<e p="bin" t="ExcludeRecursive" />
<e p="dlgEncodings.xeto" t="Include" />
<e p="dlgEncodings.xeto.cs" t="Include" />
<e p="dlgPlugins.xeto" t="Include" />
<e p="dlgPlugins.xeto.cs" t="Include" />
<e p="frmConsole.xeto" t="Include" />
<e p="frmConsole.xeto.cs" t="Include" />
<e p="frmMain.xeto" t="Include" />
<e p="frmMain.xeto.cs" t="Include" />
<e p="obj" t="ExcludeRecursive">
<e p="Debug" t="Include">
<e p="net461" t="Include">
@@ -1324,10 +1334,6 @@
</e>
</e>
</e>
<e p="pnlDeviceInfo.xeto" t="Include" />
<e p="pnlDeviceInfo.xeto.cs" t="Include" />
<e p="pnlScsiInfo.xeto" t="Include" />
<e p="pnlScsiInfo.xeto.cs" t="Include" />
</e>
<e p="DiscImageChef.Gui.XamMac" t="IncludeRecursive">
<e p="DiscImageChef.Gui.XamMac.csproj" t="IncludeRecursive" />

View File

@@ -30,6 +30,7 @@
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
using AppKit;
using DiscImageChef.Gui.Forms;
using Eto.Forms;
namespace DiscImageChef.Gui.XamMac

View File

@@ -38,7 +38,7 @@ using System.Text;
using Eto.Forms;
using Eto.Serialization.Xaml;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Dialogs
{
public class dlgEncodings : Dialog
{

View File

@@ -39,7 +39,7 @@ using DiscImageChef.Partitions;
using Eto.Forms;
using Eto.Serialization.Xaml;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Dialogs
{
public class dlgPlugins : Dialog
{

View File

@@ -29,6 +29,7 @@
// ----------------------------------------------------------------------------
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
using System;
using System.ComponentModel;
using System.IO;
@@ -41,7 +42,7 @@ using Eto.Serialization.Xaml;
using PlatformID = DiscImageChef.CommonTypes.Interop.PlatformID;
using Version = DiscImageChef.CommonTypes.Interop.Version;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Forms
{
public class frmConsole : Form
{

View File

@@ -36,10 +36,12 @@ using System.Linq;
using DiscImageChef.Console;
using DiscImageChef.Core.Media.Info;
using DiscImageChef.Devices;
using DiscImageChef.Gui.Dialogs;
using DiscImageChef.Gui.Panels;
using Eto.Forms;
using Eto.Serialization.Xaml;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Forms
{
public class frmMain : Form
{

View File

@@ -46,7 +46,7 @@ using Eto.Serialization.Xaml;
using DeviceInfo = DiscImageChef.Core.Devices.Info.DeviceInfo;
using Tuple = DiscImageChef.Decoders.PCMCIA.Tuple;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Panels
{
public class pnlDeviceInfo : Panel
{

View File

@@ -50,7 +50,7 @@ using DDS = DiscImageChef.Decoders.DVD.DDS;
using DMI = DiscImageChef.Decoders.Xbox.DMI;
using Spare = DiscImageChef.Decoders.DVD.Spare;
namespace DiscImageChef.Gui
namespace DiscImageChef.Gui.Panels
{
public class pnlScsiInfo : Panel
{

View File

@@ -36,6 +36,7 @@ using CommandLine;
using DiscImageChef.Commands;
using DiscImageChef.Console;
using DiscImageChef.Gui;
using DiscImageChef.Gui.Forms;
using DiscImageChef.Settings;
using Eto;
using Eto.Forms;