Completed rename from RainmeterEditor to RainmeterStudio

This commit is contained in:
2014-07-26 10:12:56 +03:00
parent f1b984768a
commit 6eec29a3a7
117 changed files with 10407 additions and 6247 deletions

2
.gitignore vendored
View File

@ -4,6 +4,7 @@ Certificate.bat
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
!Build/
# User-specific files
*.suo
@ -17,7 +18,6 @@ Certificate.bat
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 51 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -61,7 +61,7 @@
<WCFMetadata Include="Service References\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RainmeterEditor\RainmeterStudio.csproj">
<ProjectReference Include="..\RainmeterStudio\RainmeterStudio.csproj">
<Project>{438d0136-4a27-4e4d-a617-fface4554236}</Project>
<Name>RainmeterStudio</Name>
</ProjectReference>

View File

@ -3,8 +3,8 @@ using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using RainmeterEditor.Storage;
using RainmeterEditor.Model;
using RainmeterStudio.Storage;
using RainmeterStudio.Model;
using System.IO;
namespace RainmeterStudio.Tests.Storage

View File

@ -72,7 +72,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PluginWin7Audio", "Plugins\
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PluginWindowMessage", "Plugins\PluginWindowMessage\PluginWindowMessage.vcxproj", "{B9184DBA-C6B7-44FE-8BBD-0852DB22D2E4}"
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
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainmeterStudio.Tests", "RainmeterStudio.Tests\RainmeterStudio.Tests.csproj", "{845F4BD4-6822-4D92-9DDB-15FD18A47E5A}"
EndProject

View File

@ -1,4 +1,4 @@
<Application x:Class="RainmeterEditor.App"
<Application x:Class="RainmeterStudio.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="UI/MainWindow.xaml"

View File

@ -4,10 +4,10 @@ using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using RainmeterEditor.Business;
using RainmeterEditor.Documents.Text;
using RainmeterStudio.Business;
using RainmeterStudio.Documents.Text;
namespace RainmeterEditor
namespace RainmeterStudio
{
/// <summary>
/// Interaction logic for App.xaml

View File

@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterEditor.Model.Events;
using RainmeterStudio.Model;
using RainmeterStudio.Model.Events;
namespace RainmeterEditor.Business
namespace RainmeterStudio.Business
{
public class DocumentManager
{

View File

@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Business
namespace RainmeterStudio.Business
{
public class ProjectManager
{

View File

@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Ini
namespace RainmeterStudio.Documents.Ini
{
/*public class IniDocument : IDocument
{

View File

@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Ini
namespace RainmeterStudio.Documents.Ini
{
/*public class IniSkinDesigner : IDocumentEditor
{

View File

@ -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:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

View File

@ -12,7 +12,7 @@ using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace RainmeterEditor.Documents.Ini
namespace RainmeterStudio.Documents.Ini
{
/// <summary>
/// Interaction logic for IniSkinDesignerControl.xaml

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Ini
namespace RainmeterStudio.Documents.Ini
{
/*public class IniSkinDesignerFactory : IDocumentEditorFactory
{

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Text
namespace RainmeterStudio.Documents.Text
{
public class TextDocument : IDocument
{

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Text
namespace RainmeterStudio.Documents.Text
{
public class TextEditor : IDocumentEditor
{

View File

@ -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:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

View File

@ -12,7 +12,7 @@ using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace RainmeterEditor.Documents.Text
namespace RainmeterStudio.Documents.Text
{
/// <summary>
/// Interaction logic for TextEditorControl.xaml

View File

@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using RainmeterEditor.Business;
using RainmeterEditor.Model;
using RainmeterStudio.Business;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Text
namespace RainmeterStudio.Documents.Text
{
public class TextEditorFactory : IDocumentEditorFactory
{

View File

@ -1,8 +1,8 @@
using System;
using System.IO;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Documents.Text
namespace RainmeterStudio.Documents.Text
{
/// <summary>
/// Storage for text files

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace RainmeterEditor.Interop
namespace RainmeterStudio.Interop
{
public class NativeLibrary : IDisposable
{

View File

@ -1,6 +1,6 @@
using System.Windows.Media;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public class DocumentFormat
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterEditor.Model.Events
namespace RainmeterStudio.Model.Events
{
public class DocumentOpenedEventArgs : EventArgs
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public interface IDocument
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Windows;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public abstract class IDocumentEditor : IDisposable
{

View File

@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Storage;
using RainmeterStudio.Storage;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public interface IDocumentEditorFactory
{

View File

@ -1,4 +1,4 @@
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public interface IDocumentStorage
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public class Project
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public class Property
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public class RainmeterConfig
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
/// <summary>
/// Reference to a file or folder

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace RainmeterEditor.Model
namespace RainmeterStudio.Model
{
public class Tree<T>
{

View File

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

View File

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace RainmeterEditor.Properties {
namespace RainmeterStudio.Properties {
using System;
@ -39,7 +39,7 @@ namespace RainmeterEditor.Properties {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
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;
}
return resourceMan;

View File

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace RainmeterEditor.Properties {
namespace RainmeterStudio.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using RainmeterEditor.Interop;
using RainmeterStudio.Interop;
namespace RainmeterEditor
namespace RainmeterStudio
{
class Rainmeter
{

View File

@ -7,7 +7,7 @@
<ProjectGuid>{438D0136-4A27-4E4D-A617-FFACE4554236}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>RainmeterEditor</RootNamespace>
<RootNamespace>RainmeterStudio</RootNamespace>
<AssemblyName>RainmeterEditor</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>

View File

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 343 B

View File

Before

Width:  |  Height:  |  Size: 375 B

After

Width:  |  Height:  |  Size: 375 B

View File

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 345 B

View File

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 349 B

View File

Before

Width:  |  Height:  |  Size: 565 B

After

Width:  |  Height:  |  Size: 565 B

View File

Before

Width:  |  Height:  |  Size: 724 B

After

Width:  |  Height:  |  Size: 724 B

View File

Before

Width:  |  Height:  |  Size: 742 B

After

Width:  |  Height:  |  Size: 742 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace RainmeterEditor.Resources {
namespace RainmeterStudio.Resources {
using System;
@ -39,7 +39,7 @@ namespace RainmeterEditor.Resources {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
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;
}
return resourceMan;

View File

Before

Width:  |  Height:  |  Size: 317 KiB

After

Width:  |  Height:  |  Size: 317 KiB

View File

@ -4,9 +4,9 @@ using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using RainmeterEditor.Model;
using RainmeterStudio.Model;
namespace RainmeterEditor.Storage
namespace RainmeterStudio.Storage
{
public class ProjectStorage
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace RainmeterEditor.Storage
namespace RainmeterStudio.Storage
{
public static class SkinDirectory
{

View File

@ -5,7 +5,7 @@ using System.Text;
using System.Windows.Input;
using System.Windows.Media;
namespace RainmeterEditor.UI
namespace RainmeterStudio.UI
{
public class Command : ICommand
{

View File

@ -2,15 +2,15 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Business;
using RainmeterEditor.UI.Dialogs;
using RainmeterEditor.Model.Events;
using RainmeterEditor.Model;
using RainmeterStudio.Business;
using RainmeterStudio.UI.Dialogs;
using RainmeterStudio.Model.Events;
using RainmeterStudio.Model;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media.Imaging;
namespace RainmeterEditor.UI.Controller
namespace RainmeterStudio.UI.Controller
{
public class DocumentController
{

View File

@ -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:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Create..." Height="250" Width="400"

View File

@ -11,10 +11,10 @@ using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using RainmeterEditor.Business;
using RainmeterEditor.Model;
using RainmeterStudio.Business;
using RainmeterStudio.Model;
namespace RainmeterEditor.UI.Dialogs
namespace RainmeterStudio.UI.Dialogs
{
/// <summary>
/// Interaction logic for CreateDocumentDialog.xaml

View File

@ -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: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:adlayout="clr-namespace:Xceed.Wpf.AvalonDock.Layout;assembly=Xceed.Wpf.AvalonDock"
Title="Rainmeter Studio" Height="350" Width="525"

View File

@ -11,11 +11,11 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using RainmeterEditor.Model.Events;
using RainmeterEditor.UI.Controller;
using RainmeterStudio.Model.Events;
using RainmeterStudio.UI.Controller;
using Xceed.Wpf.AvalonDock.Layout;
namespace RainmeterEditor.UI
namespace RainmeterStudio.UI
{
/// <summary>
/// Interaction logic for MainWindow.xaml

View File

@ -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:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

View File

@ -11,10 +11,10 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using RainmeterEditor.Interop;
using RainmeterEditor.Storage;
using RainmeterStudio.Interop;
using RainmeterStudio.Storage;
namespace RainmeterEditor.UI
namespace RainmeterStudio.UI
{
/// <summary>
/// Interaction logic for SkinsPanel.xaml

View 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>

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