[go: up one dir, main page]

File: form_int.h

package info (click to toggle)
aewan 1.0.01-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 816 kB
  • sloc: ansic: 4,439; python: 122; makefile: 67; sh: 14
file content (17 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef aewan_aewl_form_int_h
#define aewan_aewl_form_int_h

/* Form internals */

#include "form.h"
struct AewlForm_ {
   WINDOW *win;              /* the curses window that houses this form */
   AewlWidget *first_widget; /* first widget in form. Others follow in
                              * linked list */
   AewlWidget *last_widget;  /* tail of above linked list */
   AewlWidget *focus_widget; /* points to the widget that currently has
                              * focus */
};

#endif