Completed rename from RainmeterEditor to RainmeterStudio
2
.gitignore
vendored
@ -4,6 +4,7 @@ Certificate.bat
|
|||||||
|
|
||||||
## Ignore Visual Studio temporary files, build results, and
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
## files generated by popular Visual Studio add-ons.
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
!Build/
|
||||||
|
|
||||||
# User-specific files
|
# User-specific files
|
||||||
*.suo
|
*.suo
|
||||||
@ -17,7 +18,6 @@ Certificate.bat
|
|||||||
[Rr]eleases/
|
[Rr]eleases/
|
||||||
x64/
|
x64/
|
||||||
x86/
|
x86/
|
||||||
build/
|
|
||||||
bld/
|
bld/
|
||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -61,7 +61,7 @@
|
|||||||
<WCFMetadata Include="Service References\" />
|
<WCFMetadata Include="Service References\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\RainmeterEditor\RainmeterStudio.csproj">
|
<ProjectReference Include="..\RainmeterStudio\RainmeterStudio.csproj">
|
||||||
<Project>{438d0136-4a27-4e4d-a617-fface4554236}</Project>
|
<Project>{438d0136-4a27-4e4d-a617-fface4554236}</Project>
|
||||||
<Name>RainmeterStudio</Name>
|
<Name>RainmeterStudio</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -3,8 +3,8 @@ using System.Text;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using RainmeterEditor.Storage;
|
using RainmeterStudio.Storage;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace RainmeterStudio.Tests.Storage
|
namespace RainmeterStudio.Tests.Storage
|
||||||
|
@ -72,7 +72,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PluginWin7Audio", "Plugins\
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PluginWindowMessage", "Plugins\PluginWindowMessage\PluginWindowMessage.vcxproj", "{B9184DBA-C6B7-44FE-8BBD-0852DB22D2E4}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PluginWindowMessage", "Plugins\PluginWindowMessage\PluginWindowMessage.vcxproj", "{B9184DBA-C6B7-44FE-8BBD-0852DB22D2E4}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainmeterStudio", "RainmeterEditor\RainmeterStudio.csproj", "{438D0136-4A27-4E4D-A617-FFACE4554236}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainmeterStudio", "RainmeterStudio\RainmeterStudio.csproj", "{438D0136-4A27-4E4D-A617-FFACE4554236}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainmeterStudio.Tests", "RainmeterStudio.Tests\RainmeterStudio.Tests.csproj", "{845F4BD4-6822-4D92-9DDB-15FD18A47E5A}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainmeterStudio.Tests", "RainmeterStudio.Tests\RainmeterStudio.Tests.csproj", "{845F4BD4-6822-4D92-9DDB-15FD18A47E5A}"
|
||||||
EndProject
|
EndProject
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<Application x:Class="RainmeterEditor.App"
|
<Application x:Class="RainmeterStudio.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"
|
||||||
StartupUri="UI/MainWindow.xaml"
|
StartupUri="UI/MainWindow.xaml"
|
@ -4,10 +4,10 @@ using System.Configuration;
|
|||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using RainmeterEditor.Business;
|
using RainmeterStudio.Business;
|
||||||
using RainmeterEditor.Documents.Text;
|
using RainmeterStudio.Documents.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor
|
namespace RainmeterStudio
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for App.xaml
|
/// Interaction logic for App.xaml
|
@ -2,10 +2,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
using RainmeterEditor.Model.Events;
|
using RainmeterStudio.Model.Events;
|
||||||
|
|
||||||
namespace RainmeterEditor.Business
|
namespace RainmeterStudio.Business
|
||||||
{
|
{
|
||||||
public class DocumentManager
|
public class DocumentManager
|
||||||
{
|
{
|
@ -2,9 +2,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Business
|
namespace RainmeterStudio.Business
|
||||||
{
|
{
|
||||||
public class ProjectManager
|
public class ProjectManager
|
||||||
{
|
{
|
@ -2,9 +2,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Ini
|
namespace RainmeterStudio.Documents.Ini
|
||||||
{
|
{
|
||||||
/*public class IniDocument : IDocument
|
/*public class IniDocument : IDocument
|
||||||
{
|
{
|
@ -2,9 +2,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Ini
|
namespace RainmeterStudio.Documents.Ini
|
||||||
{
|
{
|
||||||
/*public class IniSkinDesigner : IDocumentEditor
|
/*public class IniSkinDesigner : IDocumentEditor
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
<UserControl x:Class="RainmeterEditor.Documents.Ini.IniSkinDesignerControl"
|
<UserControl x:Class="RainmeterStudio.Documents.Ini.IniSkinDesignerControl"
|
||||||
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
@ -12,7 +12,7 @@ using System.Windows.Media.Imaging;
|
|||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Ini
|
namespace RainmeterStudio.Documents.Ini
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for IniSkinDesignerControl.xaml
|
/// Interaction logic for IniSkinDesignerControl.xaml
|
@ -3,9 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Ini
|
namespace RainmeterStudio.Documents.Ini
|
||||||
{
|
{
|
||||||
/*public class IniSkinDesignerFactory : IDocumentEditorFactory
|
/*public class IniSkinDesignerFactory : IDocumentEditorFactory
|
||||||
{
|
{
|
@ -3,9 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Text
|
namespace RainmeterStudio.Documents.Text
|
||||||
{
|
{
|
||||||
public class TextDocument : IDocument
|
public class TextDocument : IDocument
|
||||||
{
|
{
|
@ -3,9 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Text
|
namespace RainmeterStudio.Documents.Text
|
||||||
{
|
{
|
||||||
public class TextEditor : IDocumentEditor
|
public class TextEditor : IDocumentEditor
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
<UserControl x:Class="RainmeterEditor.Documents.Text.TextEditorControl"
|
<UserControl x:Class="RainmeterStudio.Documents.Text.TextEditorControl"
|
||||||
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
@ -12,7 +12,7 @@ using System.Windows.Media.Imaging;
|
|||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Text
|
namespace RainmeterStudio.Documents.Text
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for TextEditorControl.xaml
|
/// Interaction logic for TextEditorControl.xaml
|
@ -3,10 +3,10 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Business;
|
using RainmeterStudio.Business;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Text
|
namespace RainmeterStudio.Documents.Text
|
||||||
{
|
{
|
||||||
public class TextEditorFactory : IDocumentEditorFactory
|
public class TextEditorFactory : IDocumentEditorFactory
|
||||||
{
|
{
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Documents.Text
|
namespace RainmeterStudio.Documents.Text
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Storage for text files
|
/// Storage for text files
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Interop
|
namespace RainmeterStudio.Interop
|
||||||
{
|
{
|
||||||
public class NativeLibrary : IDisposable
|
public class NativeLibrary : IDisposable
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public class DocumentFormat
|
public class DocumentFormat
|
||||||
{
|
{
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model.Events
|
namespace RainmeterStudio.Model.Events
|
||||||
{
|
{
|
||||||
public class DocumentOpenedEventArgs : EventArgs
|
public class DocumentOpenedEventArgs : EventArgs
|
||||||
{
|
{
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public interface IDocument
|
public interface IDocument
|
||||||
{
|
{
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public abstract class IDocumentEditor : IDisposable
|
public abstract class IDocumentEditor : IDisposable
|
||||||
{
|
{
|
@ -2,9 +2,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Storage;
|
using RainmeterStudio.Storage;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public interface IDocumentEditorFactory
|
public interface IDocumentEditorFactory
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public interface IDocumentStorage
|
public interface IDocumentStorage
|
||||||
{
|
{
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public class Project
|
public class Project
|
||||||
{
|
{
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public class Property
|
public class Property
|
||||||
{
|
{
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public class RainmeterConfig
|
public class RainmeterConfig
|
||||||
{
|
{
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reference to a file or folder
|
/// Reference to a file or folder
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
|
|
||||||
namespace RainmeterEditor.Model
|
namespace RainmeterStudio.Model
|
||||||
{
|
{
|
||||||
public class Tree<T>
|
public class Tree<T>
|
||||||
{
|
{
|
@ -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("RainmeterEditor")]
|
[assembly: AssemblyTitle("RainmeterStudio")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("RainmeterEditor")]
|
[assembly: AssemblyProduct("RainmeterStudio")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2014")]
|
[assembly: AssemblyCopyright("Copyright © 2014")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace RainmeterEditor.Properties {
|
namespace RainmeterStudio.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ namespace RainmeterEditor.Properties {
|
|||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RainmeterEditor.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RainmeterStudio.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace RainmeterEditor.Properties {
|
namespace RainmeterStudio.Properties {
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
@ -3,9 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Interop;
|
using RainmeterStudio.Interop;
|
||||||
|
|
||||||
namespace RainmeterEditor
|
namespace RainmeterStudio
|
||||||
{
|
{
|
||||||
class Rainmeter
|
class Rainmeter
|
||||||
{
|
{
|
@ -7,7 +7,7 @@
|
|||||||
<ProjectGuid>{438D0136-4A27-4E4D-A617-FFACE4554236}</ProjectGuid>
|
<ProjectGuid>{438D0136-4A27-4E4D-A617-FFACE4554236}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>RainmeterEditor</RootNamespace>
|
<RootNamespace>RainmeterStudio</RootNamespace>
|
||||||
<AssemblyName>RainmeterEditor</AssemblyName>
|
<AssemblyName>RainmeterEditor</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 345 B After Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 565 B |
Before Width: | Height: | Size: 724 B After Width: | Height: | Size: 724 B |
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 742 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace RainmeterEditor.Resources {
|
namespace RainmeterStudio.Resources {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ namespace RainmeterEditor.Resources {
|
|||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RainmeterEditor.Resources.Strings", typeof(Strings).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RainmeterStudio.Resources.Strings", typeof(Strings).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
Before Width: | Height: | Size: 317 KiB After Width: | Height: | Size: 317 KiB |
@ -4,9 +4,9 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.Storage
|
namespace RainmeterStudio.Storage
|
||||||
{
|
{
|
||||||
public class ProjectStorage
|
public class ProjectStorage
|
||||||
{
|
{
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace RainmeterEditor.Storage
|
namespace RainmeterStudio.Storage
|
||||||
{
|
{
|
||||||
public static class SkinDirectory
|
public static class SkinDirectory
|
||||||
{
|
{
|
@ -5,7 +5,7 @@ using System.Text;
|
|||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
|
|
||||||
namespace RainmeterEditor.UI
|
namespace RainmeterStudio.UI
|
||||||
{
|
{
|
||||||
public class Command : ICommand
|
public class Command : ICommand
|
||||||
{
|
{
|
@ -2,15 +2,15 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using RainmeterEditor.Business;
|
using RainmeterStudio.Business;
|
||||||
using RainmeterEditor.UI.Dialogs;
|
using RainmeterStudio.UI.Dialogs;
|
||||||
using RainmeterEditor.Model.Events;
|
using RainmeterStudio.Model.Events;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
|
|
||||||
namespace RainmeterEditor.UI.Controller
|
namespace RainmeterStudio.UI.Controller
|
||||||
{
|
{
|
||||||
public class DocumentController
|
public class DocumentController
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
<Window x:Class="RainmeterEditor.UI.Dialogs.CreateDocumentDialog"
|
<Window x:Class="RainmeterStudio.UI.Dialogs.CreateDocumentDialog"
|
||||||
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"
|
||||||
Title="Create..." Height="250" Width="400"
|
Title="Create..." Height="250" Width="400"
|
@ -11,10 +11,10 @@ using System.Windows.Input;
|
|||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
using RainmeterEditor.Business;
|
using RainmeterStudio.Business;
|
||||||
using RainmeterEditor.Model;
|
using RainmeterStudio.Model;
|
||||||
|
|
||||||
namespace RainmeterEditor.UI.Dialogs
|
namespace RainmeterStudio.UI.Dialogs
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for CreateDocumentDialog.xaml
|
/// Interaction logic for CreateDocumentDialog.xaml
|
@ -1,7 +1,7 @@
|
|||||||
<Window x:Class="RainmeterEditor.UI.MainWindow"
|
<Window x:Class="RainmeterStudio.UI.MainWindow"
|
||||||
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:ui="clr-namespace:RainmeterEditor.UI"
|
xmlns:ui="clr-namespace:RainmeterStudio.UI"
|
||||||
xmlns:ad="clr-namespace:Xceed.Wpf.AvalonDock;assembly=Xceed.Wpf.AvalonDock"
|
xmlns:ad="clr-namespace:Xceed.Wpf.AvalonDock;assembly=Xceed.Wpf.AvalonDock"
|
||||||
xmlns:adlayout="clr-namespace:Xceed.Wpf.AvalonDock.Layout;assembly=Xceed.Wpf.AvalonDock"
|
xmlns:adlayout="clr-namespace:Xceed.Wpf.AvalonDock.Layout;assembly=Xceed.Wpf.AvalonDock"
|
||||||
Title="Rainmeter Studio" Height="350" Width="525"
|
Title="Rainmeter Studio" Height="350" Width="525"
|
@ -11,11 +11,11 @@ using System.Windows.Media;
|
|||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
using RainmeterEditor.Model.Events;
|
using RainmeterStudio.Model.Events;
|
||||||
using RainmeterEditor.UI.Controller;
|
using RainmeterStudio.UI.Controller;
|
||||||
using Xceed.Wpf.AvalonDock.Layout;
|
using Xceed.Wpf.AvalonDock.Layout;
|
||||||
|
|
||||||
namespace RainmeterEditor.UI
|
namespace RainmeterStudio.UI
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for MainWindow.xaml
|
/// Interaction logic for MainWindow.xaml
|
@ -1,4 +1,4 @@
|
|||||||
<UserControl x:Class="RainmeterEditor.UI.SkinsPanel"
|
<UserControl x:Class="RainmeterStudio.UI.SkinsPanel"
|
||||||
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
@ -11,10 +11,10 @@ using System.Windows.Media;
|
|||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
using RainmeterEditor.Interop;
|
using RainmeterStudio.Interop;
|
||||||
using RainmeterEditor.Storage;
|
using RainmeterStudio.Storage;
|
||||||
|
|
||||||
namespace RainmeterEditor.UI
|
namespace RainmeterStudio.UI
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaction logic for SkinsPanel.xaml
|
/// Interaction logic for SkinsPanel.xaml
|
19
packages/AvalonDock.2.0.2000/AvalonDock.2.0.2000.nuspec
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>AvalonDock</id>
|
||||||
|
<version>2.0.2000</version>
|
||||||
|
<title>AvalonDock</title>
|
||||||
|
<authors>Xceed Software Inc.</authors>
|
||||||
|
<owners>Xceed Software Inc.</owners>
|
||||||
|
<licenseUrl>http://avalondock.codeplex.com/license</licenseUrl>
|
||||||
|
<projectUrl>http://avalondock.codeplex.com/</projectUrl>
|
||||||
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
|
<description>AvalonDock is a docking windows control for WPF that lets you create customizable layouts using a full featured window docking system similar to what is found in many popular integrated development environements (IDEs) such as Visual Studio. It includes themes and samples to get you started.</description>
|
||||||
|
<summary>Powerful and free WPF docking windows control.</summary>
|
||||||
|
<releaseNotes>v2.0.2000 is a bug-fix release</releaseNotes>
|
||||||
|
<copyright>Copyright (c) 2007-2013 Xceed Software Inc.</copyright>
|
||||||
|
<language>en-US</language>
|
||||||
|
<tags>WPF Docking</tags>
|
||||||
|
</metadata>
|
||||||
|
</package>
|