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:
authorCampbell Barton <ideasman42@gmail.com>2009-07-11 15:31:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-11 15:31:49 +0400
commit8a1caaed32717f88218ea0c6222c749c14648ab3 (patch)
tree0748026cab803b0217b93664fb2dec17867b02b3 /source/blender/blenkernel/BKE_context.h
parent5022bf7ccd734ad5867fdceb7f8ef125a4de4ae0 (diff)
Object mode select grouped operator (Shift+G and Select manu)
Group option currently doesnt handle multiple groups. Set makefiles python version to 2.6 for linux since its common now.
Diffstat (limited to 'source/blender/blenkernel/BKE_context.h')
-rw-r--r--source/blender/blenkernel/BKE_context.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_context.h b/source/blender/blenkernel/BKE_context.h
index f536e117b7b..92c79ff757f 100644
--- a/source/blender/blenkernel/BKE_context.h
+++ b/source/blender/blenkernel/BKE_context.h
@@ -186,6 +186,9 @@ int CTX_data_selected_bases(const bContext *C, ListBase *list);
int CTX_data_visible_objects(const bContext *C, ListBase *list);
int CTX_data_visible_bases(const bContext *C, ListBase *list);
+int CTX_data_selectable_objects(const bContext *C, ListBase *list);
+int CTX_data_selectable_bases(const bContext *C, ListBase *list);
+
struct Object *CTX_data_active_object(const bContext *C);
struct Base *CTX_data_active_base(const bContext *C);
struct Object *CTX_data_edit_object(const bContext *C);