src/FingersDance.Actions/ActionSearchAnnotation.cs
author cavaliet
Thu, 19 Nov 2009 18:37:26 +0100
changeset 214 beebae32b1ed
child 216 45d2dff788f2
permissions -rw-r--r--
third step of search : better integration of search panel and debug from loaded search project and annotated project.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
214
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     1
using System;
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     2
using System.Collections.Generic;
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     3
using System.Linq;
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     4
using System.Text;
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     5
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     6
namespace FingersDance.Actions
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     7
{
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     8
    public class ActionSearchAnnotation : FingersDance.Actions.ActionBase
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
     9
    {
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    10
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    11
        
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    12
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    13
        public ActionSearchAnnotation()
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    14
        {
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    15
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    16
        }
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    17
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    18
        public ActionSearchAnnotation(Object[] param)
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    19
        {
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    20
            //myTimeline = (UserControlTimeLine)args[0];
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    21
            //myAnnotationViewModel = (AnnotationViewModel)args[1];
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    22
        }
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    23
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    24
        public void Execute()
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    25
        {
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    26
            //if (myTimeline != null)
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    27
            //    myTimeline.addAnnotation(myAnnotationViewModel);
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    28
        }
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    29
    }
beebae32b1ed third step of search : better integration of search panel and debug from loaded search project and annotated project.
cavaliet
parents:
diff changeset
    30
}