=== Overview ===
[xuni.git] / src / widget / textarea.h
blob4aac1c42dca90b9f3f687648df37f99462fdb717
1 /*! \file textarea.h
3 */
5 #ifndef XUNI_GUARD_TEXTAREA_H
6 #define XUNI_GUARD_TEXTAREA_H
8 #include "widgets.h"
10 enum wid_textarea_t {
11 WID_TEXTAREA_BOX,
12 WID_TEXTAREA_VSCROLL,
13 WID_TEXTAREA_DATA
16 struct textarea_t {
17 int unused;
20 void textarea_widget_event(struct xuni_t *xuni, struct widget_t *widget,
21 enum widget_event_t event);
22 void init_textarea(struct widget_t *widget, struct xuni_t *xuni);
24 #endif