/**
 * Line editor code
 * (C) Nettle developers 2000-2001
 *
 * $Id: lineedit,v 1.11 2003/06/15 20:47:22 archifishal Exp $
 */

#ifndef LINEEDIT_H
#define LINEEDIT_H

#define LINEEDIT_NONE         0
#define LINEEDIT_CHECKBOX_OFF 1
#define LINEEDIT_CHECKBOX_ON  2
#define LINEEDIT_ANTTERM      3

#define LINEEDIT_NUM_TYPES    4

void open_pane_window(struct session_struct *, struct wimp_openwindow_block *);
bool line_editor_active(struct session_struct *);

void lineedit_allocate_space(struct session_struct *, bool dont_discard);
void lineedit_free_space(struct session_struct *, bool dont_discard);

#endif
