[Kde-bindings] KDE/kdebindings/csharp/qyoto

Richard Dale Richard_Dale at tipitina.demon.co.uk
Mon Jun 25 11:25:33 UTC 2007


SVN commit 680070 by rdale:

* Moved the QScintilla classes to a QScintilla namespace instead of 
  Qyoto.QScintilla as Qyoto should really just contain the Qt classes
* #ifdef'd the code to register a callback for events so the code
  compiles with Qt 4.2.x

CCMAIL: kde-bindings at kde.org



 M  +7 -0      ChangeLog  
 M  +2 -1      qsci/QsciAPIs.cs  
 M  +2 -1      qsci/QsciCommand.cs  
 M  +2 -1      qsci/QsciCommandSet.cs  
 M  +2 -1      qsci/QsciDocument.cs  
 M  +2 -1      qsci/QsciLexer.cs  
 M  +2 -1      qsci/QsciLexerBash.cs  
 M  +2 -1      qsci/QsciLexerBatch.cs  
 M  +2 -1      qsci/QsciLexerCPP.cs  
 M  +2 -1      qsci/QsciLexerCSS.cs  
 M  +2 -1      qsci/QsciLexerCSharp.cs  
 M  +2 -1      qsci/QsciLexerDiff.cs  
 M  +2 -1      qsci/QsciLexerHTML.cs  
 M  +2 -1      qsci/QsciLexerIDL.cs  
 M  +2 -1      qsci/QsciLexerJava.cs  
 M  +2 -1      qsci/QsciLexerJavaScript.cs  
 M  +2 -1      qsci/QsciLexerLua.cs  
 M  +2 -1      qsci/QsciLexerMakefile.cs  
 M  +2 -1      qsci/QsciLexerPOV.cs  
 M  +2 -1      qsci/QsciLexerPerl.cs  
 M  +2 -1      qsci/QsciLexerProperties.cs  
 M  +2 -1      qsci/QsciLexerPython.cs  
 M  +2 -1      qsci/QsciLexerRuby.cs  
 M  +2 -1      qsci/QsciLexerSQL.cs  
 M  +2 -1      qsci/QsciLexerTeX.cs  
 M  +2 -1      qsci/QsciMacro.cs  
 M  +2 -1      qsci/QsciPrinter.cs  
 M  +2 -1      qsci/QsciScintilla.cs  
 M  +3 -2      qsci/QsciScintillaBase.cs  
 M  +2 -0      src/qyoto.cpp  


--- trunk/KDE/kdebindings/csharp/qyoto/ChangeLog #680069:680070
@@ -1,3 +1,10 @@
+2007-06-19  Richard Dale  <rdale at foton.es>
+
+	* Moved the QScintilla classes to a QScintilla namespace instead of 
+	  Qyoto.QScintilla as Qyoto should really just contain the Qt classes
+	* #ifdef'd the code to register a callback for events so the code
+	  compiles with Qt 4.2.x
+
 2007-06-23  Arno Rehn  <arno at arnorehn.de>
 
 	* Added classes for QScintilla2
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciAPIs.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 	using System.Collections.Generic;
 
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciCommand.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciCommand")]
 	public class QsciCommand : Object {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciCommandSet.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciCommandSet")]
 	public class QsciCommandSet : Object {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciDocument.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciDocument")]
 	public class QsciDocument : Object, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexer.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 	using System.Collections.Generic;
 
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerBash.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerBash")]
 	public class QsciLexerBash : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerBatch.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerBatch")]
 	public class QsciLexerBatch : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerCPP.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 	using System.Collections.Generic;
 
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerCSS.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 
 	[SmokeClass("QsciLexerCSS")]
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerCSharp.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerCSharp")]
 	public class QsciLexerCSharp : QsciLexerCPP, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerDiff.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerDiff")]
 	public class QsciLexerDiff : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerHTML.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerHTML")]
 	public class QsciLexerHTML : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerIDL.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerIDL")]
 	public class QsciLexerIDL : QsciLexerCPP, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerJava.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerJava")]
 	public class QsciLexerJava : QsciLexerCPP, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerJavaScript.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerJavaScript")]
 	public class QsciLexerJavaScript : QsciLexerCPP, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerLua.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 
 	[SmokeClass("QsciLexerLua")]
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerMakefile.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerMakefile")]
 	public class QsciLexerMakefile : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerPOV.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerPOV")]
 	public class QsciLexerPOV : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerPerl.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerPerl")]
 	public class QsciLexerPerl : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerProperties.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerProperties")]
 	public class QsciLexerProperties : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerPython.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 	using System.Collections.Generic;
 
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerRuby.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Runtime.InteropServices;
 
 	[SmokeClass("QsciLexerRuby")]
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerSQL.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerSQL")]
 	public class QsciLexerSQL : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciLexerTeX.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciLexerTeX")]
 	public class QsciLexerTeX : QsciLexer, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciMacro.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciMacro")]
 	public class QsciMacro : QObject, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciPrinter.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	[SmokeClass("QsciPrinter")]
 	public class QsciPrinter : QPrinter, IDisposable {
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciScintilla.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 	using System.Collections.Generic;
 
 	/// <remarks> See <see cref="IQsciScintillaSignals"></see> for signals emitted by QsciScintilla
--- trunk/KDE/kdebindings/csharp/qyoto/qsci/QsciScintillaBase.cs #680069:680070
@@ -1,7 +1,8 @@
 //Auto-generated by kalyptus. DO NOT EDIT.
-namespace Qyoto.QScintilla {
+namespace QScintilla {
 
 	using System;
+	using Qyoto;
 
 	/// <remarks> See <see cref="IQsciScintillaBaseSignals"></see> for signals emitted by QsciScintillaBase
 	/// </remarks>
@@ -538,7 +539,7 @@
 		public const int SC_MARKNUM_FOLDERSUB = 29;
 		public const int SC_MARKNUM_FOLDER = 30;
 		public const int SC_MARKNUM_FOLDEROPEN = 31;
-// 		public const int SC_MASK_FOLDERS = 0xfe000000;
+		public const long SC_MASK_FOLDERS = 0xfe000000;
 
 		public const int SC_MARGIN_SYMBOL = 0;
 		public const int SC_MARGIN_NUMBER = 1;
--- trunk/KDE/kdebindings/csharp/qyoto/src/qyoto.cpp #680069:680070
@@ -2029,7 +2029,9 @@
         classname.insert(i, strdup(classStringName.constData()));
     }
 
+#if QT_VERSION >= 0x40300
     QInternal::registerCallback(QInternal::EventNotifyCallback, qyoto_event_notify);
+#endif
 }
 
 }



More information about the Kde-bindings mailing list