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:
authorTon Roosendaal <ton@blender.org>2008-12-15 19:54:47 +0300
committerTon Roosendaal <ton@blender.org>2008-12-15 19:54:47 +0300
commita16df53619a2ab3b41c0cbcf6f9e01a9bf370c9c (patch)
treea96b757fd2a791c242b6ace94b22e465bac9b1d2 /source/blender/editors/screen/screen_intern.h
parentc13bb258b1149d8bbfb97b896a58cd748e7cd861 (diff)
2.5
Mouse cursors now work again - centralized screen-level cursor changes, no more operator running for it. - spacetypes have callback to check/set individual cursor types. Use notifier SCREEN_CHANGED to make sure it works on mode changes etc. - new calls WM_cursor_modal() and WM_cursor_restore() to make temporarily cursor types during modes. - used above for view2d cursors.
Diffstat (limited to 'source/blender/editors/screen/screen_intern.h')
-rw-r--r--source/blender/editors/screen/screen_intern.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/screen/screen_intern.h b/source/blender/editors/screen/screen_intern.h
index d228748d873..855fe7c9b50 100644
--- a/source/blender/editors/screen/screen_intern.h
+++ b/source/blender/editors/screen/screen_intern.h
@@ -46,6 +46,11 @@ void removenotused_scrverts(bScreen *sc);
void removedouble_scrverts(bScreen *sc);
void removedouble_scredges(bScreen *sc);
void removenotused_scredges(bScreen *sc);
+int scredge_is_horizontal(ScrEdge *se);
+ScrEdge *screen_find_active_scredge(bScreen *sc, int mx, int my);
+
+AZone *is_in_area_actionzone(ScrArea *sa, int x, int y);
+
#endif /* ED_SCREEN_INTERN_H */