Events.cs :  » Development » ScintillaNET » Scintilla » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Development » ScintillaNET 
ScintillaNET » Scintilla » Events.cs
using System;

namespace Scintilla{
  #region "scintilla-events"
    public enum ScintillaEvents
    {    
        styleneeded = 2000,
        charadded = 2001,
        savepointreached = 2002,
        savepointleft = 2003,
        modifyattemptro = 2004,
        key = 2005,
        doubleclick = 2006,
        updateui = 2007,
        modified = 2008,
        macrorecord = 2009,
        marginclick = 2010,
        needshown = 2011,
        painted = 2013,
        userlistselection = 2014,
        uridropped = 2015,
        dwellstart = 2016,
        dwellend = 2017,
        zoom = 2018,
        hotspotclick = 2019,
        hotspotdoubleclick = 2020,
        calltipclick = 2021
    }
  #endregion

  #region "scintilla-delegates"

  public delegate void StyleNeededHandler(ScintillaControl pSender ,int position);

  public delegate void CharAddedHandler(ScintillaControl pSender ,int ch);

  public delegate void SavePointReachedHandler(ScintillaControl pSender );

  public delegate void SavePointLeftHandler(ScintillaControl pSender );

  public delegate void ModifyAttemptROHandler(ScintillaControl pSender );

  public delegate void KeyHandler(ScintillaControl pSender ,int ch,int modifiers);

  public delegate void DoubleClickHandler(ScintillaControl pSender );

  public delegate void UpdateUIHandler(ScintillaControl pSender );

  public delegate void ModifiedHandler(ScintillaControl pSender ,int position,int modificationType,string text,int length,int linesAdded,int line,int foldLevelNow,int foldLevelPrev);

  public delegate void MacroRecordHandler(ScintillaControl pSender ,int message,IntPtr wParam,IntPtr lParam);

  public delegate void MarginClickHandler(ScintillaControl pSender ,int modifiers,int position,int margin);

  public delegate void NeedShownHandler(ScintillaControl pSender ,int position,int length);

  public delegate void PaintedHandler(ScintillaControl pSender );

  public delegate void UserListSelectionHandler(ScintillaControl pSender ,int listType,string text);

  public delegate void URIDroppedHandler(ScintillaControl pSender ,string text);

  public delegate void DwellStartHandler(ScintillaControl pSender ,int position);

  public delegate void DwellEndHandler(ScintillaControl pSender ,int position);

  public delegate void ZoomHandler(ScintillaControl pSender );

  public delegate void HotSpotClickHandler(ScintillaControl pSender ,int modifiers,int position);

  public delegate void HotSpotDoubleClickHandler(ScintillaControl pSender ,int modifiers,int position);

  public delegate void CallTipClickHandler(ScintillaControl pSender ,int position);
  #endregion 
  
  #region "scintilla-modified-delegates"

  public delegate void TextInsertedHandler( ScintillaControl pSender ,int position ,int length , int linesAdded );
  public delegate void TextDeletedHandler( ScintillaControl pSender ,int position ,int length , int linesAdded  );
  public delegate void StyleChangedHandler( ScintillaControl pSender ,int position ,int length );
  public delegate void FoldChangedHandler( ScintillaControl pSender , int line , int foldLevelNow , int foldLevelPrev );
  public delegate void UserPerformedHandler( ScintillaControl pSender );
  public delegate void UndoPerformedHandler( ScintillaControl pSender );
  public delegate void RedoPerformedHandler( ScintillaControl pSender);
  public delegate void LastStepInUndoRedoHandler( ScintillaControl pSender );
  public delegate void MarkerChangedHandler( ScintillaControl pSender , int line );
  public delegate void BeforeInsertHandler( ScintillaControl pSender , int position , int length  );
  public delegate void BeforeDeleteHandler( ScintillaControl pSender , int position , int length );
  #endregion
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.