[Fxruby-commits] CVS: FXRuby/examples scintilla_wrapper.rb,1.1.2.1,1.1.2.2
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-05-20 22:38:23
|
Update of /cvsroot/fxruby/FXRuby/examples In directory usw-pr-cvs1:/tmp/cvs-serv27009/examples Modified Files: Tag: release10 scintilla_wrapper.rb Log Message: Added Gilles' script to generate the scintilla_wrapper.rb file (mixins for FXScintilla class) from the Scintilla.iface file. Also updated the scintilla_wrapper.rb file from this source. Index: scintilla_wrapper.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/examples/scintilla_wrapper.rb,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** scintilla_wrapper.rb 15 May 2002 21:15:04 -0000 1.1.2.1 --- scintilla_wrapper.rb 20 May 2002 22:38:20 -0000 1.1.2.2 *************** *** 1,70 **** ! ## ***** WARNING...THIS FILE IS GENERATED BY FROM SCINTILLA.IFACE ! ## ***** DO NOT MODIFY...MODIFY SCINTILLA.RB INSTEAD ! module Scintilla ! ## First line may be used for shbang - ## This file defines the interface to Scintilla - ## A line starting with ## is a pure comment and should be stripped by readers. - ## A line starting with #! is for future shbang use [...3599 lines suppressed...] # GTK+ Specific to work around focus and accelerator problems: + SCN_KEY = 2005 + SCN_DOUBLECLICK = 2006 + SCN_UPDATEUI = 2007 + SCN_MODIFIED = 2008 + SCN_MACRORECORD = 2009 + SCN_MARGINCLICK = 2010 + SCN_NEEDSHOWN = 2011 + SCN_PAINTED = 2013 + SCN_USERLISTSELECTION = 2014 + SCN_URIDROPPED = 2015 + SCN_DWELLSTART = 2016 + SCN_DWELLEND = 2017 + # Deprecated # The old name for SCN_UPDATEUI SCN_CHECKBRACE = 2007 + SCN_POSCHANGED = 2012 end |