Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Thompson <quornian@googlemail.com>2008-06-24 19:25:25 +0400
committerIan Thompson <quornian@googlemail.com>2008-06-24 19:25:25 +0400
commitbdc030c664640db727ea21a1e854bb62032bf705 (patch)
tree2897a9a9bea8a9e599a0dc54c1c84703ed913b4c /source/blender/blenkernel/intern/suggestions.c
parent05ce388f358b1cfa7bc7c63e29bd772efbf25d39 (diff)
Text plugin basis with plugin for suggestions/completions. The suggest plugin works for imported global variables, methods, modules and module members. For example typing:
import Blender from Blender import * | <- cursor here suggests globals Blender.Draw.gl| <- cursor here suggests all Draw members starting gl Currently suggestions are listed in the console when the space is redrawn but will be presented as a menu-style list soon. Also to add are shortcut/activation keys to allow plugins to respond to certain key strokes.
Diffstat (limited to 'source/blender/blenkernel/intern/suggestions.c')
-rw-r--r--source/blender/blenkernel/intern/suggestions.c125
1 files changed, 125 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/suggestions.c b/source/blender/blenkernel/intern/suggestions.c
new file mode 100644
index 00000000000..3842146376d
--- /dev/null
+++ b/source/blender/blenkernel/intern/suggestions.c
@@ -0,0 +1,125 @@
+/**
+ * $Id: $
+ *
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2008, Blender Foundation
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include <stdlib.h>
+#include <string.h>
+
+#include "MEM_guardedalloc.h"
+#include "BLI_blenlib.h"
+#include "DNA_text_types.h"
+#include "BKE_text.h"
+#include "BKE_suggestions.h"
+
+static SuggList suggestions= {NULL, NULL, NULL, NULL};
+static Text *suggText = NULL;
+
+void free_suggestions() {
+ SuggItem *item;
+ for (item = suggestions.last; item; item=item->prev)
+ MEM_freeN(item);
+ suggestions.first = suggestions.last = NULL;
+ suggestions.firstmatch = suggestions.lastmatch = NULL;
+}
+
+void add_suggestion(const char *name, char type) {
+ SuggItem *newitem;
+
+ newitem = MEM_mallocN(sizeof(SuggItem) + strlen(name) + 1, "SuggestionItem");
+ if (!newitem) {
+ printf("Failed to allocate memory for suggestion.\n");
+ return;
+ }
+
+ newitem->name = (char *) (newitem + 1);
+ strcpy(newitem->name, name);
+ newitem->type = type;
+ newitem->prev = newitem->next = NULL;
+
+ if (!suggestions.first) {
+ suggestions.first = suggestions.last = newitem;
+ } else {
+ newitem->prev = suggestions.last;
+ suggestions.last->next = newitem;
+ suggestions.last = newitem;
+ }
+}
+
+void update_suggestions(const char *prefix) {
+ SuggItem *match, *first, *last;
+ int cmp, len = strlen(prefix);
+
+ if (!suggestions.first) return;
+ if (len==0) {
+ suggestions.firstmatch = suggestions.first;
+ suggestions.lastmatch = suggestions.last;
+ return;
+ }
+
+ first = last = NULL;
+ for (match=suggestions.first; match; match=match->next) {
+ cmp = strncmp(prefix, match->name, len);
+ if (cmp==0) {
+ if (!first)
+ first = match;
+ } else if (cmp<0) {
+ if (!last) {
+ last = match->prev;
+ break;
+ }
+ }
+ }
+ if (first) {
+ if (!last) last = suggestions.last;
+ suggestions.firstmatch = first;
+ suggestions.lastmatch = last;
+ } else {
+ suggestions.firstmatch = suggestions.lastmatch = NULL;
+ }
+}
+
+SuggItem *suggest_first() {
+ return suggestions.firstmatch;
+}
+
+SuggItem *suggest_last() {
+ return suggestions.lastmatch;
+}
+
+void set_suggest_text(Text *text) {
+ suggText = text;
+}
+
+void clear_suggest_text() {
+ free_suggestions();
+ suggText = NULL;
+}
+
+short is_suggest_active(Text *text) {
+ return suggText==text ? 1 : 0;
+}