[gtksourceviewmm/devel] Added header and source implementing SourceCompletionActivation.



commit 66f58961947b2f2d5c96878568e34fcf17940c45
Author: Krzesimir Nowak <qdlacz gmail com>
Date:   Sun Jan 10 21:18:53 2010 +0100

    Added header and source implementing SourceCompletionActivation.
    
    * gtksourceview/src/sourcecompletionactivation.ccg:
    * gtksourceview/src/sourcecompletionactivation.hg: Added header
    and source file implementing SourceCompletionActivation enum,
    because there is a conflict between SourceCompletionContext and
    SourceCompletionProvider, so enum needed to be moved into separate
    file.
    * gtksourceview/src/filelist.am: Added new header and source to
    build system.
    * gtksourceview/gtksourceviewmm/.gitignore: Updated for newly added
    header and source files.

 gtksourceview/gtksourceviewmm/.gitignore         |    1 +
 gtksourceview/src/filelist.am                    |    3 +-
 gtksourceview/src/sourcecompletionactivation.ccg |   21 +++++++++++++++++
 gtksourceview/src/sourcecompletionactivation.hg  |   27 ++++++++++++++++++++++
 4 files changed, 51 insertions(+), 1 deletions(-)
---
diff --git a/gtksourceview/gtksourceviewmm/.gitignore b/gtksourceview/gtksourceviewmm/.gitignore
index 66904bb..f114316 100644
--- a/gtksourceview/gtksourceviewmm/.gitignore
+++ b/gtksourceview/gtksourceviewmm/.gitignore
@@ -16,3 +16,4 @@
 /sourcecompletionitem.*
 /sourcecompletionprovider.*
 /sourceprintcompositor.*
+/sourcecompletionactivation.*
diff --git a/gtksourceview/src/filelist.am b/gtksourceview/src/filelist.am
index 78d75c1..61d12c9 100644
--- a/gtksourceview/src/filelist.am
+++ b/gtksourceview/src/filelist.am
@@ -24,6 +24,7 @@ files_hg =				\
 	sourcecompletioncontext.hg	\
 	sourcecompletion.hg		\
 	sourcecompletionprovider.hg	\
-	sourceprintcompositor.hg
+	sourceprintcompositor.hg	\
+	sourcecompletionactivation.hg
 
 files_ccg = $(files_hg:.hg=.ccg)
diff --git a/gtksourceview/src/sourcecompletionactivation.ccg b/gtksourceview/src/sourcecompletionactivation.ccg
new file mode 100644
index 0000000..39de4fb
--- /dev/null
+++ b/gtksourceview/src/sourcecompletionactivation.ccg
@@ -0,0 +1,21 @@
+/* sourcecompletionactivation.cc
+ *
+ * Copyright (C) 2010 Krzesimir Nowak
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <gtksourceview/gtksourceview-typebuiltins.h>
+
diff --git a/gtksourceview/src/sourcecompletionactivation.hg b/gtksourceview/src/sourcecompletionactivation.hg
new file mode 100644
index 0000000..784fc70
--- /dev/null
+++ b/gtksourceview/src/sourcecompletionactivation.hg
@@ -0,0 +1,27 @@
+/* sourcecompletionactivation.h
+ *
+ * Copyright (C) 2010 Krzesimir Nowak
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+_DEFS(gtksourceviewmm,gtksourceview)
+
+namespace gtksourceview
+{
+
+_WRAP_ENUM(SourceCompletionActivation, GtkSourceCompletionActivation)
+
+} // namespace gtksourceview



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]