Click here to Skip to main content
15,891,868 members
Articles / Mobile Apps / Windows Phone 7

Clearer – A Gesture-Driven Windows 8 To-Do Application

Rate me:
Please Sign up or sign in to vote.
4.97/5 (14 votes)
9 Oct 2012CPOL15 min read 52.8K   878   22  
This article describes my experiences of porting a novel gesture-driven Windows Phone app to Windows 8.
using System;
using ClearStyle.ViewModel;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml;
using System.Collections.ObjectModel;

namespace ClearStyle.Interactions
{
  /// <summary>
  /// An interaction is handles gestures from the UI in order to perform actions
  /// on the model. Interactions have the conpcet of Enabled and Active in order
  /// that the InteractionManager can ensure that only one interaction is
  /// active at one time
  /// </summary>
  public interface IInteraction
  {
    /// <summary>
    /// Initialises the interaction, providing it with todo model items and the UI that renders then.
    /// </summary>
    void Initialise(ItemsControl todoList, ObservableCollectionEx<ToDoItem> todoItems);

    /// <summary>
    /// Invoked when a new element that is the ItemsContainer for a ToDoItem is added to the list. This allows
    /// the interaction to add event handlers to the element.
    /// </summary>
    void AddElement(FrameworkElement manipulationElement, FrameworkElement transformElement);

    bool IsActive { get; }

    bool IsEnabled { get; set; }

    /// <summary>
    /// Occurs when this interaction becomes active
    /// </summary>
    event EventHandler Activated;

    /// <summary>
    /// Occurs when this interaction completes
    /// </summary>
    event EventHandler DeActivated;
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Scott Logic
United Kingdom United Kingdom
I am CTO at ShinobiControls, a team of iOS developers who are carefully crafting iOS charts, grids and controls for making your applications awesome.

I am a Technical Architect for Visiblox which have developed the world's fastest WPF / Silverlight and WP7 charts.

I am also a Technical Evangelist at Scott Logic, a provider of bespoke financial software and consultancy for the retail and investment banking, stockbroking, asset management and hedge fund communities.

Visit my blog - Colin Eberhardt's Adventures in .NET.

Follow me on Twitter - @ColinEberhardt

-

Comments and Discussions