aboutsummaryrefslogtreecommitdiff
path: root/generic/WidgetInfo.h
diff options
context:
space:
mode:
authorlecoanet2003-05-09 15:02:35 +0000
committerlecoanet2003-05-09 15:02:35 +0000
commitbb7924e8fe10f9f28cb5d01dc687bc652ec33408 (patch)
treef7e96c9b05e54a81fa1b17d985142f4a0edb8732 /generic/WidgetInfo.h
parent8f07676db7e61313ab560249a957fad293f0c333 (diff)
downloadtkzinc-bb7924e8fe10f9f28cb5d01dc687bc652ec33408.zip
tkzinc-bb7924e8fe10f9f28cb5d01dc687bc652ec33408.tar.gz
tkzinc-bb7924e8fe10f9f28cb5d01dc687bc652ec33408.tar.bz2
tkzinc-bb7924e8fe10f9f28cb5d01dc687bc652ec33408.tar.xz
* (ZN_GRABBED_PART): Added to obtain the right Enter/Leave
behavior in fields during a grab.
Diffstat (limited to 'generic/WidgetInfo.h')
-rw-r--r--generic/WidgetInfo.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/generic/WidgetInfo.h b/generic/WidgetInfo.h
index 6779214..726ab21 100644
--- a/generic/WidgetInfo.h
+++ b/generic/WidgetInfo.h
@@ -47,17 +47,18 @@
* Constants for flags
*/
#define ZN_REPICK_IN_PROGRESS (1<<0)
-#define ZN_LEFT_GRABBED_ITEM (1<<1)
-#define ZN_REALIZED (1<<2)
-#define ZN_INTERNAL_NEED_REPICK (1<<3)
-#define ZN_UPDATE_SCROLLBARS (1<<4) /* If set, the scrollbars must be updated. */
-#define ZN_GOT_FOCUS (1<<5) /* Set means that the widget has the input focus. */
-#define ZN_UPDATE_PENDING (1<<6) /* Set means there is a pending graphic update. */
-#define ZN_HAS_GL (1<<7) /* Tell if openGL can be used. */
-#define ZN_HAS_X_SHAPE (1<<8) /* Tell if the X shape extension is available. */
-#define ZN_MONITORING (1<<9) /* Set if performance monitoring is on. */
-#define ZN_PRINT_CONFIG (1<<10) /* If set the openGL hardware configuration is printed
- * on startup. */
+#define ZN_GRABBED_ITEM (1<<1)
+#define ZN_GRABBED_PART (1<<2)
+#define ZN_REALIZED (1<<3)
+#define ZN_INTERNAL_NEED_REPICK (1<<4)
+#define ZN_UPDATE_SCROLLBARS (1<<5) /* If set, the scrollbars must be updated. */
+#define ZN_GOT_FOCUS (1<<6) /* Set means that the widget has the input focus. */
+#define ZN_UPDATE_PENDING (1<<7) /* Set means there is a pending graphic update. */
+#define ZN_HAS_GL (1<<8) /* Tell if openGL can be used. */
+#define ZN_HAS_X_SHAPE (1<<9) /* Tell if the X shape extension is available. */
+#define ZN_MONITORING (1<<10) /* Set if performance monitoring is on. */
+#define ZN_PRINT_CONFIG (1<<11) /* If set the openGL hardware configuration
+ * is printed on startup. */
#ifdef __CPLUSPLUS__
extern "C" {