Skip to content

Commit

Permalink
Namespace refactoring (remove experimental)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtuttle committed Feb 28, 2015
1 parent 3ee62bf commit 3ced309
Show file tree
Hide file tree
Showing 26 changed files with 43 additions and 43 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ Copyright (c) 2015 frog design inc. / Robert Tuttle <[email protected]

A remote touch injection client for Windows 8 using standard TUIO+OSC protocols, variable input calibration, and integrated hosted Wi-Fi networking for devices.

https://github.com/frog-opensource/touchproxy (frog-opensource)
https://github.com/frog/touchproxy

Features
--------------------

- Works with any standard TUIO tracker app or service as a remote multitouch input panel.
http://www.tuio.org/
Apps are currently available for:

- Apps are currently available for:
- iOS (https://itunes.apple.com/us/app/tuiopad/id412446962)
- Android (https://play.google.com/store/apps/details?id=tuioDroid.impl)
- Many other platforms and environments (http://www.tuio.org/?software)
Expand All @@ -29,7 +30,7 @@ Apps are currently available for:
Overview
--------------------

![](https://github.com/frog-opensource/touchproxy/wiki/images/touchproxy-wiki-1.png)
![](https://github.com/frog/touchproxy/wiki/images/touchproxy-wiki-1.png)

1. Toggle TouchProxy service on/off (TUIO client / OSC receiver UDP socket listener)
2. Set TUIO client / OSC receiver UDP socket listener port value (3333 is standard TUIO port)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "frog.eXPeriMeNTaL.Windows.TouchProxy", "frog.eXPeriMeNTaL.Windows.TouchProxy\frog.eXPeriMeNTaL.Windows.TouchProxy.csproj", "{6DDDA249-6384-4DBF-A644-67D5C5DBCD23}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "frog.Windows.TouchProxy", "frog.Windows.TouchProxy\frog.Windows.TouchProxy.csproj", "{6DDDA249-6384-4DBF-A644-67D5C5DBCD23}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OSC.Windows", "OSC.Windows\OSC.Windows.csproj", "{57F27823-B3A0-4D0F-8113-795D982EF63A}"
EndProject
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Application
x:Class="frog.eXPeriMeNTaL.Windows.TouchProxy.App"
x:Class="frog.Windows.TouchProxy.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Windows;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy
namespace frog.Windows.TouchProxy
{
public partial class App : Application
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Windows;
using System.Windows.Controls;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Behaviors
namespace frog.Windows.TouchProxy.Behaviors
{
public static class PasswordBoxBindingBehavior
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Windows;
using System.Windows.Controls;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Behaviors
namespace frog.Windows.TouchProxy.Behaviors
{
public static class TextBoxAutoScrollBehavior
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.ComponentModel;
using System.Runtime.CompilerServices;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Common
namespace frog.Windows.TouchProxy.Common
{
public abstract class BindableBase : INotifyPropertyChanged
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Common
namespace frog.Windows.TouchProxy.Common
{
public delegate bool TextConstraintPredicateDelegate(string input);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.ComponentModel;
using System.Linq;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Common
namespace frog.Windows.TouchProxy.Common
{
public enum ScreenTarget
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Common
namespace frog.Windows.TouchProxy.Common
{
public static class CommonExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Threading.Tasks;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Common
namespace frog.Windows.TouchProxy.Common
{
public static class EnumHelper
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System.Windows.Controls;
using System.Windows.Input;

using frog.eXPeriMeNTaL.Windows.TouchProxy.Common;
using frog.Windows.TouchProxy.Common;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Controls
namespace frog.Windows.TouchProxy.Controls
{
public class ConstrainedTextBox : TextBox
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Globalization;
using System.Windows.Data;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Converters
namespace frog.Windows.TouchProxy.Converters
{
public class CalibrationBufferMarkerTransformConverter : IMultiValueConverter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Windows.Controls;
using System.Windows.Threading;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Diagnostics
namespace frog.Windows.TouchProxy.Diagnostics
{
public class TextBoxTraceListener : TraceListener
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Window
x:Class="frog.eXPeriMeNTaL.Windows.TouchProxy.MainWindow"
x:Class="frog.Windows.TouchProxy.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
xmlns:local="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy"
xmlns:behaviors="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy.Behaviors"
xmlns:controls="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy.Controls"
xmlns:converters="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy.Converters"
xmlns:services="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy.Services"
xmlns:local="clr-namespace:frog.Windows.TouchProxy"
xmlns:behaviors="clr-namespace:frog.Windows.TouchProxy.Behaviors"
xmlns:controls="clr-namespace:frog.Windows.TouchProxy.Controls"
xmlns:converters="clr-namespace:frog.Windows.TouchProxy.Converters"
xmlns:services="clr-namespace:frog.Windows.TouchProxy.Services"
Title="TouchProxy"
Width="1080"
Height="760"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Windows;
using System.Windows.Controls;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy
namespace frog.Windows.TouchProxy
{
public partial class MainWindow : Window
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

using Microsoft.Win32;

using frog.eXPeriMeNTaL.Windows.TouchProxy.Common;
using frog.eXPeriMeNTaL.Windows.TouchProxy.Diagnostics;
using frog.eXPeriMeNTaL.Windows.TouchProxy.Services;
using frog.Windows.TouchProxy.Common;
using frog.Windows.TouchProxy.Diagnostics;
using frog.Windows.TouchProxy.Services;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy
namespace frog.Windows.TouchProxy
{
public class MainWindowViewModel : BindableBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("frog")]
[assembly: AssemblyProduct("frog.eXPeriMeNTaL.Windows.TouchProxy")]
[assembly: AssemblyProduct("frog.Windows.TouchProxy")]
[assembly: AssemblyCopyright("Copyright © 2013 frog design inc.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:behaviors="clr-namespace:frog.eXPeriMeNTaL.Windows.TouchProxy.Behaviors">
xmlns:behaviors="clr-namespace:frog.Windows.TouchProxy.Behaviors">

<Style TargetType="{x:Type GroupBox}">
<Setter Property="Padding" Value="10,3,10,10" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
using System.Threading.Tasks;
using System.Windows;

using frog.eXPeriMeNTaL.Windows.TouchProxy.Common;
using frog.Windows.TouchProxy.Common;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Services
namespace frog.Windows.TouchProxy.Services
{
public class HostedNetworkService : BindableBase, IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using System.Net.Sockets;
using System.Threading.Tasks;

using frog.eXPeriMeNTaL.Windows.TouchProxy.Common;
using frog.Windows.TouchProxy.Common;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Services
namespace frog.Windows.TouchProxy.Services
{
public class NetworkService : BindableBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

using TUIO;

using frog.eXPeriMeNTaL.Windows.TouchProxy.Common;
using frog.Windows.TouchProxy.Common;

namespace frog.eXPeriMeNTaL.Windows.TouchProxy.Services
namespace frog.Windows.TouchProxy.Services
{
public class TouchInjectionService : BindableBase, ITuioListener, IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{6DDDA249-6384-4DBF-A644-67D5C5DBCD23}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>frog.eXPeriMeNTaL.Windows.TouchProxy</RootNamespace>
<RootNamespace>frog.Windows.TouchProxy</RootNamespace>
<AssemblyName>TouchProxy</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -54,22 +54,22 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject>frog.eXPeriMeNTaL.Windows.TouchProxy.App</StartupObject>
<StartupObject>frog.Windows.TouchProxy.App</StartupObject>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>FB7DDEC86F29D4F62BA041A7F58FB184482F4DDA</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>frog.eXPeriMeNTaL.Windows.TouchProxy_TemporaryKey.pfx</ManifestKeyFile>
<ManifestKeyFile>frog.Windows.TouchProxy_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
<SignManifests>false</SignManifests>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>frog.eXPeriMeNTaL.Windows.TouchProxy.ico</ApplicationIcon>
<ApplicationIcon>frog.Windows.TouchProxy.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Expression.Interactions, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down Expand Up @@ -140,7 +140,6 @@
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<None Include="frog.eXPeriMeNTaL.Windows.TouchProxy_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Net.NetworkInformation\System.Net.NetworkInformation.csproj">
Expand Down Expand Up @@ -169,7 +168,7 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Resource Include="frog.eXPeriMeNTaL.Windows.TouchProxy.ico" />
<Resource Include="frog.Windows.TouchProxy.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Binary file not shown.

0 comments on commit 3ced309

Please sign in to comment.