1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-06-11 02:29:53 +00:00

Move WPF code from SourceGenWPF to SourceGen

This commit is contained in:
Andy McFadden 2019-07-20 13:28:10 -07:00
parent e3906e021b
commit c64f72d147
117 changed files with 170 additions and 188 deletions

View File

@ -18,7 +18,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Map file offsets to 65xx addresses and vice-versa. Useful for sources with /// Map file offsets to 65xx addresses and vice-versa. Useful for sources with
/// multiple ORG directives. /// multiple ORG directives.

View File

@ -19,7 +19,7 @@ using System.Text;
using Asm65; using Asm65;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Analyzer attribute holder. Contains the output of the instruction and data analyzers. /// Analyzer attribute holder. Contains the output of the instruction and data analyzers.
/// Every byte in the input file has one of these associated with it. /// Every byte in the input file has one of these associated with it.

View File

@ -13,10 +13,10 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Application x:Class="SourceGenWPF.App" <Application x:Class="SourceGen.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SourceGenWPF" xmlns:local="clr-namespace:SourceGen"
StartupUri="WpfGui/MainWindow.xaml"> StartupUri="WpfGui/MainWindow.xaml">
<Application.Resources> <Application.Resources>
<ResourceDictionary> <ResourceDictionary>

View File

@ -14,14 +14,9 @@
* limitations under the License. * limitations under the License.
*/ */
using System; using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows; using System.Windows;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Interaction logic for App.xaml /// Interaction logic for App.xaml
/// </summary> /// </summary>

View File

@ -19,7 +19,7 @@ using System.Diagnostics;
using System.Text; using System.Text;
using System.Web.Script.Serialization; using System.Web.Script.Serialization;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Application settings registry. This holds both user-accessible settings and saved /// Application settings registry. This holds both user-accessible settings and saved
/// values like window widths. /// values like window widths.

View File

@ -23,7 +23,7 @@ using System.Text;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
#region IGenerator #region IGenerator
/// <summary> /// <summary>

View File

@ -23,7 +23,7 @@ using System.Text;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
#region IGenerator #region IGenerator
/// <summary> /// <summary>

View File

@ -23,7 +23,7 @@ using System.Text;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
#region IGenerator #region IGenerator
/// <summary> /// <summary>

View File

@ -17,7 +17,7 @@ using System;
using System.Diagnostics; using System.Diagnostics;
using System.Web.Script.Serialization; using System.Web.Script.Serialization;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
/// <summary> /// <summary>
/// Assembler configuration holder. Serializes and deserializes information held in /// Assembler configuration holder. Serializes and deserializes information held in
/// application settings. /// application settings.

View File

@ -18,7 +18,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
/// <summary> /// <summary>
/// Static information on assemblers supported by SourceGen. This is relevant for both /// Static information on assemblers supported by SourceGen. This is relevant for both
/// assembly source generation and assembler execution. Nothing here is affected /// assembly source generation and assembler execution. Nothing here is affected

View File

@ -17,7 +17,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
public class AssemblerVersion { public class AssemblerVersion {
/// <summary> /// <summary>
/// Version string reported by the assembler. Retained mostly for debugging. /// Version string reported by the assembler. Retained mostly for debugging.

View File

@ -21,7 +21,7 @@ using System.IO;
using Asm65; using Asm65;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
public class GenCommon { public class GenCommon {
/// <summary> /// <summary>
/// Generates assembly source. /// Generates assembly source.

View File

@ -17,7 +17,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
/// <summary> /// <summary>
/// Common interface for executing assemblers. /// Common interface for executing assemblers.
/// </summary> /// </summary>

View File

@ -19,7 +19,7 @@ using System.ComponentModel;
using Asm65; using Asm65;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
/// <summary> /// <summary>
/// Common interface for generating assembler-specific source code. /// Common interface for generating assembler-specific source code.
/// </summary> /// </summary>

View File

@ -76,7 +76,7 @@ The eventual output of our efforts is a map from the original symbol name to the
name. This must be applied to both labels and operands. name. This must be applied to both labels and operands.
*/ */
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
public class LabelLocalizer { public class LabelLocalizer {
/// <summary> /// <summary>
/// A pairing of an offset with a label string. (Essentially mAnattribs[n].Symbol /// A pairing of an offset with a label string. (Essentially mAnattribs[n].Symbol

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF.AsmGen { namespace SourceGen.AsmGen {
/// <summary> /// <summary>
/// Multi-line string gatherer. Accumulates characters and raw bytes, emitting /// Multi-line string gatherer. Accumulates characters and raw bytes, emitting
/// them when we have a full operand's worth. /// them when we have a full operand's worth.

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.AsmGen.WpfGui.GenAndAsm" <Window x:Class="SourceGen.AsmGen.WpfGui.GenAndAsm"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.AsmGen.WpfGui" xmlns:local="clr-namespace:SourceGen.AsmGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Generate and Assemble" Title="Generate and Assemble"
Width="800" Height="700" MinWidth="600" MinHeight="600" ResizeMode="CanResizeWithGrip" Width="800" Height="700" MinWidth="600" MinHeight="600" ResizeMode="CanResizeWithGrip"

View File

@ -24,9 +24,9 @@ using System.Windows.Controls;
using CommonUtil; using CommonUtil;
using CommonWPF; using CommonWPF;
using SourceGenWPF.WpfGui; using SourceGen.WpfGui;
namespace SourceGenWPF.AsmGen.WpfGui { namespace SourceGen.AsmGen.WpfGui {
/// <summary> /// <summary>
/// Code generation and assembler execution dialog. /// Code generation and assembler execution dialog.
/// </summary> /// </summary>

View File

@ -18,7 +18,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Functions for generation of "auto" labels. /// Functions for generation of "auto" labels.
/// </summary> /// </summary>

View File

@ -18,7 +18,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Holds information about a set of changes. /// Holds information about a set of changes.
/// ///

View File

@ -20,9 +20,9 @@ using System.Diagnostics;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
using PluginCommon; using PluginCommon;
using SourceGenWPF.Sandbox; using SourceGen.Sandbox;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Instruction analyzer. /// Instruction analyzer.
/// ///

View File

@ -19,7 +19,7 @@ using System.Diagnostics;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Auto-detection of structured data. /// Auto-detection of structured data.
/// ///

View File

@ -17,7 +17,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Subclass of Symbol used for symbols defined in the platform or project. /// Subclass of Symbol used for symbols defined in the platform or project.
/// ///

View File

@ -21,9 +21,9 @@ using System.Text;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
using SourceGenWPF.Sandbox; using SourceGen.Sandbox;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// All state for an open project. /// All state for an open project.
/// ///

View File

@ -21,7 +21,7 @@ using System.Diagnostics;
using System.ComponentModel; using System.ComponentModel;
using System.Windows.Media; using System.Windows.Media;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// List of items formatted for display. /// List of items formatted for display.
/// </summary> /// </summary>

View File

@ -21,7 +21,7 @@ using System.Windows.Controls;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Tracks the items selected in the DisplayList, using forwarded SelectionChanged events. /// Tracks the items selected in the DisplayList, using forwarded SelectionChanged events.
/// When enumerated, provides an ordered list of selected indices. /// When enumerated, provides an ordered list of selected indices.

View File

@ -17,7 +17,7 @@ using System;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Manages references to external files, notably symbol files (.sym65) and extension /// Manages references to external files, notably symbol files (.sym65) and extension
/// scripts. Identifiers look like "RT:subdir/file.sym65". /// scripts. Identifiers look like "RT:subdir/file.sym65".

View File

@ -17,7 +17,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Format descriptor for data items and instruction operands. Instances are immutable. /// Format descriptor for data items and instruction operands. Instances are immutable.
/// ///

View File

@ -47,7 +47,7 @@ TODO(maybe): the web viewer accessible from WPF appears to be much better, so we
simple browser window. simple browser window.
*/ */
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Help viewer API. /// Help viewer API.
/// </summary> /// </summary>

View File

@ -20,9 +20,9 @@ using System.Windows.Media;
using System.Text; using System.Text;
using Asm65; using Asm65;
using FormattedParts = SourceGenWPF.DisplayList.FormattedParts; using FormattedParts = SourceGen.DisplayList.FormattedParts;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Converts file data and Anattrib contents into a series of strings and format metadata. /// Converts file data and Anattrib contents into a series of strings and format metadata.
/// </summary> /// </summary>

View File

@ -20,16 +20,16 @@ using System.IO;
using System.Text; using System.Text;
using System.Web.Script.Serialization; using System.Web.Script.Serialization;
using System.Windows; using System.Windows;
using System.Windows.Input;
using Microsoft.Win32; using Microsoft.Win32;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
using CommonWPF; using CommonWPF;
using SourceGenWPF.Sandbox; using SourceGen.Sandbox;
using SourceGenWPF.WpfGui; using SourceGen.WpfGui;
using System.Windows.Input;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// This class manages user interaction. The goal is for this to be relatively /// This class manages user interaction. The goal is for this to be relatively
/// GUI-toolkit-agnostic, with all the WPF stuff tucked into the code-behind files. An /// GUI-toolkit-agnostic, with all the WPF stuff tucked into the code-behind files. An

View File

@ -19,7 +19,7 @@ using System.Diagnostics;
using System.Windows.Media; using System.Windows.Media;
using System.Text; using System.Text;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Representation of a multi-line comment, which is a string plus some format directives. /// Representation of a multi-line comment, which is a string plus some format directives.
/// Used for long comments and notes. /// Used for long comments and notes.

View File

@ -18,7 +18,7 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Text; using System.Text;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Maintains a record of interesting places we've been. /// Maintains a record of interesting places we've been.
/// </summary> /// </summary>

View File

@ -18,13 +18,11 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Reflection;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using CommonUtil; using CommonUtil;
using SourceGenWPF.Sandbox;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Loads and maintains a collection of platform-specific symbols from a ".sym65" file. /// Loads and maintains a collection of platform-specific symbols from a ".sym65" file.
/// </summary> /// </summary>

View File

@ -23,7 +23,7 @@ using System.Windows.Media;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Load and save project data from/to a ".dis65" file. /// Load and save project data from/to a ".dis65" file.
/// ///

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// A collection of project properties. /// A collection of project properties.
/// ///

View File

@ -7,11 +7,11 @@ using System.Windows;
// General Information about an assembly is controlled through the following // General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("SourceGenWPF")] [assembly: AssemblyTitle("SourceGen")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SourceGenWPF")] [assembly: AssemblyProduct("SourceGen")]
[assembly: AssemblyCopyright("Copyright © 2019")] [assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]

View File

@ -8,9 +8,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace SourceGenWPF.Properties { namespace SourceGen.Properties {
using System;
/// <summary> /// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc. /// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary> /// </summary>
@ -18,33 +19,33 @@ namespace SourceGenWPF.Properties {
// class via a tool like ResGen or Visual Studio. // class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen // To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project. // with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources { internal class Resources {
private static global::System.Resources.ResourceManager resourceMan; private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture; private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() { internal Resources() {
} }
/// <summary> /// <summary>
/// Returns the cached ResourceManager instance used by this class. /// Returns the cached ResourceManager instance used by this class.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager { internal static global::System.Resources.ResourceManager ResourceManager {
get { get {
if ((resourceMan == null)) { if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SourceGenWPF.Properties.Resources", typeof(Resources).Assembly); global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SourceGen.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp; resourceMan = temp;
} }
return resourceMan; return resourceMan;
} }
} }
/// <summary> /// <summary>
/// Overrides the current thread's CurrentUICulture property for all /// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class. /// resource lookups using this strongly typed resource class.

View File

@ -8,15 +8,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace SourceGenWPF.Properties { namespace SourceGen.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default { public static Settings Default {
get { get {
return defaultInstance; return defaultInstance;

View File

@ -23,7 +23,7 @@ using System.Web.Script.Serialization;
using Asm65; using Asm65;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Data pseudo-op formatter. Long operands, notably strings and dense hex blocks, may /// Data pseudo-op formatter. Long operands, notably strings and dense hex blocks, may
/// be broken across multiple lines. /// be broken across multiple lines.

View File

Before

Width:  |  Height:  |  Size: 527 KiB

After

Width:  |  Height:  |  Size: 527 KiB

View File

@ -11,7 +11,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SourceGenWPF.Res"> xmlns:local="clr-namespace:SourceGen.Res">
<!-- Fade the icon when the associated button is disabled. <!-- Fade the icon when the associated button is disabled.
cf. https://stackoverflow.com/a/2530941/294248 --> cf. https://stackoverflow.com/a/2530941/294248 -->

View File

Before

Width:  |  Height:  |  Size: 342 KiB

After

Width:  |  Height:  |  Size: 342 KiB

View File

Before

Width:  |  Height:  |  Size: 139 KiB

After

Width:  |  Height:  |  Size: 139 KiB

View File

@ -19,7 +19,7 @@ limitations under the License.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.Res"> xmlns:local="clr-namespace:SourceGen.Res">
<system:String x:Key="str_AbbrevAddress">Addr</system:String> <system:String x:Key="str_AbbrevAddress">Addr</system:String>
<system:String x:Key="str_AbbrevConstant">Const</system:String> <system:String x:Key="str_AbbrevConstant">Const</system:String>

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Windows; using System.Windows;
namespace SourceGenWPF.Res { namespace SourceGen.Res {
/// <summary> /// <summary>
/// This is a bridge between the XAML definitions and the C# code that uses the strings. /// This is a bridge between the XAML definitions and the C# code that uses the strings.
/// FindResource() throws an exception if the resource isn't found, so typos and missing /// FindResource() throws an exception if the resource isn't found, so typos and missing

View File

@ -17,7 +17,7 @@ using System;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Facilitates access to the contents of the RuntimeData directory, which is located /// Facilitates access to the contents of the RuntimeData directory, which is located
/// relative to the executable process pathname. /// relative to the executable process pathname.

View File

@ -22,7 +22,7 @@ using System.Security.Permissions;
using System.Timers; using System.Timers;
using PluginCommon; using PluginCommon;
namespace SourceGenWPF.Sandbox { namespace SourceGen.Sandbox {
/// <summary> /// <summary>
/// This is a host-side object that manages the plugin AppDomain. /// This is a host-side object that manages the plugin AppDomain.
/// </summary> /// </summary>

View File

@ -19,12 +19,11 @@ using System.Diagnostics;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
using System.Text;
using CommonUtil; using CommonUtil;
using PluginCommon; using PluginCommon;
namespace SourceGenWPF.Sandbox { namespace SourceGen.Sandbox {
/// <summary> /// <summary>
/// This manages the PluginDll directory, which holds the compiled form of the extension /// This manages the PluginDll directory, which holds the compiled form of the extension
/// scripts. When a script is requested, this checks to see if the compiled form /// scripts. When a script is requested, this checks to see if the compiled form

View File

@ -22,7 +22,7 @@ using System.Text;
using CommonUtil; using CommonUtil;
using PluginCommon; using PluginCommon;
namespace SourceGenWPF.Sandbox { namespace SourceGen.Sandbox {
/// <summary> /// <summary>
/// Maintains a collection of IPlugin instances, or communicates with the remote /// Maintains a collection of IPlugin instances, or communicates with the remote
/// PluginManager that holds the collection. Whether the plugins are instantiated /// PluginManager that holds the collection. Whether the plugins are instantiated

View File

@ -18,7 +18,7 @@ using System.Diagnostics;
using System.Runtime.Remoting.Lifetime; using System.Runtime.Remoting.Lifetime;
using System.Security.Permissions; using System.Security.Permissions;
namespace SourceGenWPF.Sandbox { namespace SourceGen.Sandbox {
/// <summary> /// <summary>
/// This wraps a MarshalByRefObject instance with a "sponsor". This /// This wraps a MarshalByRefObject instance with a "sponsor". This
/// is necessary because objects created by the host in the plugin /// is necessary because objects created by the host in the plugin

View File

@ -6,8 +6,8 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{30C35BBC-B9ED-4723-8F9D-597D51CCB13A}</ProjectGuid> <ProjectGuid>{30C35BBC-B9ED-4723-8F9D-597D51CCB13A}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>SourceGenWPF</RootNamespace> <RootNamespace>SourceGen</RootNamespace>
<AssemblyName>SourceGenWPF</AssemblyName> <AssemblyName>SourceGen</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Symbolic representation of a value. Instances are immutable. /// Symbolic representation of a value. Instances are immutable.
/// </summary> /// </summary>

View File

@ -20,7 +20,7 @@ using System.Diagnostics;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// List of all symbols, arranged primarily by label, but also accessible by value. All /// List of all symbols, arranged primarily by label, but also accessible by value. All
/// symbols have a unique label. /// symbols have a unique label.

View File

@ -19,7 +19,7 @@ using System.Diagnostics;
using Asm65; using Asm65;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Helper functions for extracting values from a SystemDef instance. /// Helper functions for extracting values from a SystemDef instance.
/// </summary> /// </summary>

View File

@ -23,7 +23,7 @@ using System.Web.Script.Serialization;
using Asm65; using Asm65;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Target system definition, read from a config file. /// Target system definition, read from a config file.
/// </summary> /// </summary>

View File

@ -22,9 +22,9 @@ using System.Text.RegularExpressions;
using System.Windows.Media; using System.Windows.Media;
using CommonUtil; using CommonUtil;
using SourceGenWPF.AsmGen; using SourceGen.AsmGen;
namespace SourceGenWPF.Tests { namespace SourceGen.Tests {
/// <summary> /// <summary>
/// Source code generation regression test. /// Source code generation regression test.
/// ///

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Windows.Media; using System.Windows.Media;
namespace SourceGenWPF.Tests { namespace SourceGen.Tests {
/// <summary> /// <summary>
/// Progress message, with colorful text. This is generated by the worker thread and /// Progress message, with colorful text. This is generated by the worker thread and
/// passed to the UI thread. /// passed to the UI thread.

View File

@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.Tests.WpfGui.GenTestRunner" <Window x:Class="SourceGen.Tests.WpfGui.GenTestRunner"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.Tests.WpfGui" xmlns:local="clr-namespace:SourceGen.Tests.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Source Generation Test" Title="Source Generation Test"
Width="640" Height="480" MinWidth="640" MinHeight="480" Width="640" Height="480" MinWidth="640" MinHeight="480"

View File

@ -26,7 +26,7 @@ using System.Windows.Media;
using CommonWPF; using CommonWPF;
namespace SourceGenWPF.Tests.WpfGui { namespace SourceGen.Tests.WpfGui {
/// <summary> /// <summary>
/// Source generation test runner. /// Source generation test runner.
/// </summary> /// </summary>

View File

@ -15,17 +15,13 @@
*/ */
using System; using System;
using System.Collections; using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Asm65; using Asm65;
namespace SourceGenWPF.Tools { namespace SourceGen.Tools {
/// <summary> /// <summary>
/// Generates formatted hex dump lines, and makes them available as a list. The result /// Generates formatted hex dump lines, and makes them available as a list. The result
/// is suitable for use with WPF ItemsSource. Items are generated on demand, providing /// is suitable for use with WPF ItemsSource. Items are generated on demand, providing

View File

@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.Tools.WpfGui.AsciiChart" <Window x:Class="SourceGen.Tools.WpfGui.AsciiChart"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.Tools.WpfGui" xmlns:local="clr-namespace:SourceGen.Tools.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="ASCII Chart" Title="ASCII Chart"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -20,7 +20,7 @@ using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input; using System.Windows.Input;
namespace SourceGenWPF.Tools.WpfGui { namespace SourceGen.Tools.WpfGui {
/// <summary> /// <summary>
/// ASCII chart. /// ASCII chart.
/// </summary> /// </summary>

View File

@ -14,16 +14,15 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.Tools.WpfGui.HexDumpViewer" <Window x:Class="SourceGen.Tools.WpfGui.HexDumpViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Hex Dump Viewer" Title="Hex Dump Viewer"
Icon="/SourceGenWPF;component/Res/SourceGenIcon.ico"
Width="542" Height="600" MinWidth="542" MinHeight="180" Width="542" Height="600" MinWidth="542" MinHeight="180"
ShowInTaskbar="True" ShowInTaskbar="True"
Loaded="Window_Loaded"> Loaded="Window_Loaded">

View File

@ -14,16 +14,15 @@
* limitations under the License. * limitations under the License.
*/ */
using System; using System;
using System.Collections;
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input;
using Asm65; using Asm65;
namespace SourceGenWPF.Tools.WpfGui { namespace SourceGen.Tools.WpfGui {
/// <summary> /// <summary>
/// Hex dump viewer. /// Hex dump viewer.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.Tools.WpfGui.ShowText" <Window x:Class="SourceGen.Tools.WpfGui.ShowText"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.Tools.WpfGui" xmlns:local="clr-namespace:SourceGen.Tools.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="(title)" Title="(title)"
Width="708" Height="500" MinWidth="100" MinHeight="100" ResizeMode="CanResizeWithGrip" Width="708" Height="500" MinWidth="100" MinHeight="100" ResizeMode="CanResizeWithGrip"

View File

@ -20,7 +20,7 @@ using System.Runtime.CompilerServices;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
namespace SourceGenWPF.Tools.WpfGui { namespace SourceGen.Tools.WpfGui {
/// <summary> /// <summary>
/// Simple text display dialog. Can be modal or modeless. /// Simple text display dialog. Can be modal or modeless.
/// </summary> /// </summary>

View File

@ -65,7 +65,7 @@ NOTE: all re-analysis requirements are symmetric for undo/redo. Undoing a chang
the same level of work as doing the change. the same level of work as doing the change.
*/ */
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// A single change. /// A single change.
/// </summary> /// </summary>

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace SourceGenWPF { namespace SourceGen {
/// <summary> /// <summary>
/// Weak reference to a symbol for use in an operand or data statement. The reference /// Weak reference to a symbol for use in an operand or data statement. The reference
/// is by name; if the symbol disappears or changes value, the reference can be ignored. /// is by name; if the symbol disappears or changes value, the reference can be ignored.

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.AboutBox" <Window x:Class="SourceGen.WpfGui.AboutBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="About SourceGen" Title="About SourceGen"
Width="720" Height="600" ResizeMode="NoResize" Width="720" Height="600" ResizeMode="NoResize"
@ -38,7 +38,7 @@ limitations under the License.
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Image Grid.Column="0" Grid.Row="0" <Image Grid.Column="0" Grid.Row="0"
Source="/SourceGenWPF;component/Res/Logo.png"/> Source="/SourceGen;component/Res/Logo.png"/>
<StackPanel Grid.Column="1" Grid.Row="0" Margin="8,12,0,0"> <StackPanel Grid.Column="1" Grid.Row="0" Margin="8,12,0,0">
<TextBlock Text="6502bench SourceGen" FontSize="30"/> <TextBlock Text="6502bench SourceGen" FontSize="30"/>

View File

@ -17,7 +17,7 @@ using System;
using System.IO; using System.IO;
using System.Windows; using System.Windows;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// "About" dialog. /// "About" dialog.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.DataFileLoadIssue" <Window x:Class="SourceGen.WpfGui.DataFileLoadIssue"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Data File Load Issue" Title="Data File Load Issue"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Windows; using System.Windows;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Report a problem encountered while loading a data file. /// Report a problem encountered while loading a data file.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.DiscardChanges" <Window x:Class="SourceGen.WpfGui.DiscardChanges"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Discard Changes?" Title="Discard Changes?"
FocusManager.FocusedElement="{Binding ElementName=cancelButton}" FocusManager.FocusedElement="{Binding ElementName=cancelButton}"

View File

@ -16,7 +16,7 @@
using System; using System;
using System.Windows; using System.Windows;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Prompt the user before discarding changes. /// Prompt the user before discarding changes.
/// ///

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditAddress" <Window x:Class="SourceGen.WpfGui.EditAddress"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Set Address" Title="Set Address"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -20,7 +20,7 @@ using System.Runtime.CompilerServices;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Edit Address dialog. /// Edit Address dialog.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditAppSettings" <Window x:Class="SourceGen.WpfGui.EditAppSettings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Application Settings" Title="Edit Application Settings"
Width="700" Height="440" ResizeMode="NoResize" Width="700" Height="440" ResizeMode="NoResize"

View File

@ -26,11 +26,11 @@ using Microsoft.Win32;
using CommonUtil; using CommonUtil;
using AssemblerInfo = SourceGenWPF.AsmGen.AssemblerInfo; using AssemblerInfo = SourceGen.AsmGen.AssemblerInfo;
using AssemblerConfig = SourceGenWPF.AsmGen.AssemblerConfig; using AssemblerConfig = SourceGen.AsmGen.AssemblerConfig;
using ExpressionMode = Asm65.Formatter.FormatConfig.ExpressionMode; using ExpressionMode = Asm65.Formatter.FormatConfig.ExpressionMode;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Application settings dialog. /// Application settings dialog.
/// </summary> /// </summary>

View File

@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditComment" <Window x:Class="SourceGen.WpfGui.EditComment"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Comment" Title="Edit Comment"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -14,16 +14,14 @@
* limitations under the License. * limitations under the License.
*/ */
using System; using System;
using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Media; using System.Windows.Media;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Comment editor. /// Comment editor.
/// </summary> /// </summary>

View File

@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditDataOperand" <Window x:Class="SourceGen.WpfGui.EditDataOperand"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Data Operand" Title="Edit Data Operand"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -18,13 +18,12 @@ using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using CommonUtil; using CommonUtil;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Data operand editor. /// Data operand editor.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditDefSymbol" <Window x:Class="SourceGen.WpfGui.EditDefSymbol"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Symbol" Title="Edit Symbol"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -24,7 +24,7 @@ using System.Windows.Media;
using Asm65; using Asm65;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Symbol edit dialog. /// Symbol edit dialog.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditInstructionOperand" <Window x:Class="SourceGen.WpfGui.EditInstructionOperand"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Instruction Operand" Title="Edit Instruction Operand"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -23,7 +23,7 @@ using System.Windows.Controls;
using Asm65; using Asm65;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Instruction operand editor. /// Instruction operand editor.
/// ///

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditLabel" <Window x:Class="SourceGen.WpfGui.EditLabel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Label" Title="Edit Label"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -20,7 +20,7 @@ using System.Runtime.CompilerServices;
using System.Windows; using System.Windows;
using System.Windows.Media; using System.Windows.Media;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Edit a label. /// Edit a label.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditLongComment" <Window x:Class="SourceGen.WpfGui.EditLongComment"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Long Comment" Title="Edit Long Comment"
Width="584" Height="700" MinWidth="584" MinHeight="600" ResizeMode="CanResizeWithGrip" Width="584" Height="700" MinWidth="584" MinHeight="600" ResizeMode="CanResizeWithGrip"

View File

@ -23,7 +23,7 @@ using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input; using System.Windows.Input;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Long comment editor. /// Long comment editor.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditNote" <Window x:Class="SourceGen.WpfGui.EditNote"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Note" Title="Edit Note"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

View File

@ -18,13 +18,12 @@ using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input; using System.Windows.Input;
using System.Windows.Media; using System.Windows.Media;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Note editor. /// Note editor.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditProjectProperties" <Window x:Class="SourceGen.WpfGui.EditProjectProperties"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Edit Project Properties" Title="Edit Project Properties"
Width="600" Height="400" ResizeMode="NoResize" Width="600" Height="400" ResizeMode="NoResize"

View File

@ -30,7 +30,7 @@ using Asm65;
using CommonUtil; using CommonUtil;
using CommonWPF; using CommonWPF;
namespace SourceGenWPF.WpfGui { namespace SourceGen.WpfGui {
/// <summary> /// <summary>
/// Project properties dialog. /// Project properties dialog.
/// </summary> /// </summary>

View File

@ -14,12 +14,12 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<Window x:Class="SourceGenWPF.WpfGui.EditStatusFlags" <Window x:Class="SourceGen.WpfGui.EditStatusFlags"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SourceGenWPF.WpfGui" xmlns:local="clr-namespace:SourceGen.WpfGui"
mc:Ignorable="d" mc:Ignorable="d"
Title="Override Status Flags" Title="Override Status Flags"
SizeToContent="WidthAndHeight" ResizeMode="NoResize" SizeToContent="WidthAndHeight" ResizeMode="NoResize"

Some files were not shown because too many files have changed in this diff Show More