File: x_im_status_screen.h

package info (click to toggle)
mlterm 3.1.2-1.3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 23,168 kB
  • sloc: ansic: 102,795; sh: 9,676; java: 2,018; perl: 1,601; makefile: 1,595; cpp: 771; sed: 16
file content (48 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *	$Id$
 */

#ifndef  __X_IM_STATUS_SCREEN_H__
#define  __X_IM_STATUS_SCREEN_H__

#include  <ml_char.h>
#include  "x_window.h"
#include  "x_display.h"
#include  "x_font_manager.h"
#include  "x_color_manager.h"

typedef struct x_im_status_screen
{
	x_window_t  window ;

	x_font_manager_t *  font_man ;	/* is the same as attaced screen */

	x_color_manager_t *  color_man ;/* is the same as attaced screen */

	ml_char_t *  chars ;
	u_int  num_of_chars ; /* == array size */
	u_int  filled_len ;

	u_int  is_focused ;

	int  is_vertical ;

	/*
	 * methods of x_im_status_screen_t which is called from im
	 */
	int (*delete)( struct x_im_status_screen *) ;
	int (*show)( struct x_im_status_screen *) ;
	int (*hide)( struct x_im_status_screen *) ;
	int (*set_spot)( struct x_im_status_screen * , int  , int) ;
	int (*set)( struct x_im_status_screen * , mkf_parser_t * , u_char *) ;

} x_im_status_screen_t ;

x_im_status_screen_t * x_im_status_screen_new( x_display_t *  disp ,
					       x_font_manager_t *  font_man ,
					       x_color_manager_t *  color_man ,
					       int  is_vertical ,
					       int  x , int  y) ;

#endif