Example #1
0
 public Fill(IClientSource handler)
     : base(handler)
 {
     ID       = "character_Fill";
     MenuText = "&Fill...";
     ToolTip  = "Fill the selected region|Fills the selected region";
     Name     = "Fill";
     Shortcut = Keys.F;
 }
 protected internal DtpNode(IClientSource clientSource, IEnumerable <IInstructionSet> instructionSets)
 {
     this.clientSource = clientSource;
     clientSource.SetAcceptCallback(AcceptCallback);
     m_instructionSets.Add(new DefaultInstructionSet());
     if (instructionSets != null)
     {
         foreach (var instructionSet in instructionSets)
         {
             m_instructionSets.Add(instructionSet);
         }
     }
 }
Example #3
0
 public D7CachedNodesRepoBase(IFileSystemShim fileSystemShim, ISerializer serializer, IClientSource clientSource)
     : this(fileSystemShim, serializer, clientSource.Client, clientSource.AuthKey)
 {
 }
Example #4
0
 protected PabloCommand(IClientSource handler)
 {
     this.handler = handler;
 }