Beispiel #1
0
ei_bool_t on_press(ei_widget_t * widget, ei_event_t * event, void * user_param)
{
	if(!ei_button_isPressed(widget)) {
		set_button_press(widget);
	}

	ei_bind(ei_ev_mouse_move, NULL, "all", on_press_move, (void*) widget);
	ei_bind(ei_ev_mouse_buttonup, NULL, "all", on_release, (void*) widget);
	return EI_FALSE;
}
Beispiel #2
0
int ei_main(int argc, char** argv)
{
	ei_size_t	screen_size	= {800, 800};
        ei_color_t      root_bgcol      = {0x52, 0x7f, 0xb4, 0xff};

        float           button_rel_x    = 0.2;
        float           button_rel_y    = 0.3;        
        float           button_rel_size_x = 0.5;
        float           button_rel_size_y = 0.5;      
        ei_color_t	button_color	= {0x88, 0x88, 0x88, 0xff};
        ei_color_t      text_color      = {0x00, 0x00, 0x00, 0xff};
        ei_relief_t     relief          = ei_relief_raised;
        int             button_border_width    = 2;
        char*           button_title    = "click";
        
        ei_size_t       window_size     = {400,400};
        char*           window_title    = "Hello World";
        ei_color_t      window_color    = {0xA0,0xA0,0xA0, 0xff};
        int             window_border_width    = 2;
        ei_bool_t       closable        = EI_TRUE;
        ei_axis_set_t   window_resizable = ei_axis_both;
        ei_point_t	window_position	 = {30, 10};        

        
        ei_widget_t*    button;
        ei_widget_t*    toplevel;

	ei_app_create(&screen_size, EI_FALSE); 
        ei_frame_configure(ei_app_root_widget(), NULL, &root_bgcol, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);        

        toplevel = ei_widget_create("toplevel", ei_app_root_widget());
        button = ei_widget_create("button", toplevel);
        
        ei_toplevel_configure(toplevel, &window_size, &window_color, &window_border_width, &window_title, &closable, &window_resizable, NULL);
        ei_button_configure(button, NULL, &button_color, 
                            &button_border_width, NULL, &relief, &button_title, NULL, &text_color, NULL,
                            NULL, NULL, NULL, &button_callback, NULL);

        ei_place(toplevel, NULL, &(window_position.x), &(window_position.y), NULL, NULL, NULL, NULL, NULL, NULL);
        ei_place(button, NULL, NULL, NULL, NULL,NULL, &button_rel_x, &button_rel_y, &button_rel_size_x, &button_rel_size_y );

	ei_bind(ei_ev_keydown, 		NULL, "all", process_key, NULL);

        ei_app_run();

	ei_unbind(ei_ev_keydown,	NULL, "all", process_key, NULL);

	ei_app_free();

	return (EXIT_SUCCESS);
}
Beispiel #3
0
/* Modifie l'Etat du bouton*/
void set_button_press(ei_widget_t * button)
{
	ei_geomnotify_button(button, ei_rect(
				ei_point_add(
					button->screen_location.top_left, 
					ei_point(
						EI_BUTTON_SINK_LENGHT,
						EI_BUTTON_SINK_LENGHT)),
				button->screen_location.size));

	*ei_button(button)->relief = ei_relief_sunken;
	ei_app_invalidate_rect(&button->screen_location);
	if(*ei_button(button)->callback) 
		ei_bind(ei_ev_mouse_buttonup, button, NULL,	*ei_button(button)->callback, 
				ei_button(button)->user_param);
}
Beispiel #4
0
/*
 * ei_main --
 *
 *	Main function of the application.
 */
int ei_main(int argc, char** argv)
{
	ei_size_t	screen_size		= {900, 900};
	ei_color_t	root_bgcol		= {0x52, 0x7f, 0xb4, 0xff};

	ei_widget_t*	frame;
	ei_size_t	frame_size		= {300,300};
	int		frame_x			= 0;
	int		frame_y			= 0;
	ei_color_t	frame_color		= {0x88, 0x88, 0x88, 0xff};
	ei_relief_t	frame_relief		= ei_relief_raised;
	int		frame_border_width	= 6;
    char *text = "DALIDA";


	/* Create the application and change the color of the background. */
	ei_app_create(&screen_size, EI_FALSE);
	ei_frame_configure(ei_app_root_widget(), NULL, &root_bgcol, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

	
	const char* filename = "misc/petit_soleil.png";
	ei_surface_t img = hw_image_load(filename,ei_app_root_surface());
        ei_rect_t img_rect = hw_surface_get_rect(img);
	ei_rect_t *img_rect_ptr = &img_rect;

	/* Create, configure and place the frame on screen. */
		for (int i = 1; i < 10; i++) {
    
	frame = ei_widget_create("frame", ei_app_root_widget());
	ei_frame_configure(frame, &frame_size, &frame_color,
			    &frame_border_width, &frame_relief, &text, NULL, NULL, (ei_anchor_t*)&i,
			    &img, &img_rect_ptr, (ei_anchor_t*)&i);
    frame_x = (300 * (i-1)) % 900;
    frame_y = ((i -1) / 3) * 300;
	ei_place(frame, NULL, &frame_x, &frame_y, NULL, NULL, NULL, NULL, NULL, NULL );
    }
	ei_bind(ei_ev_keydown,		NULL, "all", process_key, NULL);
	/* Run the application's main loop. */
	ei_app_run();
    
	ei_unbind(ei_ev_keydown,	NULL, "all", process_key, NULL);
	/* We just exited from the main loop. Terminate the application (cleanup). */
	ei_app_free();

	return (EXIT_SUCCESS);
}
Beispiel #5
0
int ei_main(int argc, char* argv[])
{
	ei_size_t	root_window_size		= { 1024, 768 };
	ei_color_t	root_bgcol			= { 0x52, 0x7f, 0xb4, 0xff };
	ei_bool_t	fullscreen			= EI_FALSE;
    
	ei_app_create(&root_window_size, fullscreen);
	ei_frame_configure(ei_app_root_widget(), NULL, &root_bgcol, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
    
	if (argc > 1)
		create_puzzle_window(argv[1]);
	else
		create_puzzle_window(k_default_image_filename);
    
	ei_bind(ei_ev_keydown, NULL, "all", handle_keydown, NULL);
    
	ei_app_run();
	
	ei_app_free();
    
	return (EXIT_SUCCESS);
}
Beispiel #6
0
/*
 * ei_main --
 *
 *	Main function of the application.
 */
int ei_main(int argc, char** argv)
{
	ei_size_t	screen_size		= {400, 400};
	ei_color_t	root_bgcol		= {0x52, 0x7f, 0xb4, 0xff};
    
    ei_widget_t*	frame;
	int		frame_x		= 10;
	int		frame_y		= 10;
	int		frame_width		= 200;
	int		frame_height		= 150;
	ei_color_t	frame_color		= {0x01, 0x88, 0x88, 0xff};
	ei_relief_t	frame_relief		= ei_relief_sunken;
	int		frame_border_width	= 4;
    
	ei_widget_t*	button;
	int		button_x		= 10;
	int		button_y		= 10;
	int		button_width		= 100;
	int		button_height		= 40;
	ei_color_t	button_color		= {0x88, 0x88, 0x88, 0xff};
	char*		button_title		= "click";
	ei_color_t	button_text_color	= {0x00, 0x00, 0x00, 0xff};
	ei_relief_t	button_relief		= ei_relief_raised;
	int		button_border_width	= 2;
	ei_callback_t 	button_callback 	= button_press;
	
	/*ei_widget_t*	window;
	ei_size_t	window_size		= {200,200};
	char*		window_title		= "Hello World";
	ei_color_t	window_color		= {0xA0,0xA0,0xA0, 0xff};
	int		window_border_width	= 2;
	ei_bool_t	window_closable		= EI_TRUE;
	ei_axis_set_t	window_resizable 	= ei_axis_both;
	ei_point_t	window_position	 	= {30, 10};*/
    
	
	/* Create the application and change the color of the background. */
	ei_app_create(&screen_size, EI_FALSE);
	ei_frame_configure(ei_app_root_widget(), NULL, &root_bgcol, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
    
	/* Create, configure and place a toplevel window on screen. */
	frame = ei_widget_create("frame", ei_app_root_widget());
	ei_frame_configure(frame, NULL, &frame_color, &frame_border_width,
                          &frame_relief, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
	ei_place(frame, NULL, &(frame_x), &(frame_y), &frame_width, &frame_height, NULL, NULL, NULL, NULL);
    
	/* Create, configure and place a button as a descendant of the toplevel window. */
	button = ei_widget_create("button", frame);
	ei_button_configure(button, NULL, &button_color,
                        &button_border_width, NULL, &button_relief, &button_title, NULL, &button_text_color, NULL,
                        NULL, NULL, NULL, &button_callback, NULL);
	ei_place(button, NULL, &button_x, &button_y, &button_width, &button_height, NULL, NULL, NULL, NULL );
    
	/* Hook the keypress callback to the event. */
	ei_bind(ei_ev_keydown,		NULL, "all", process_key, NULL);
    
	/* Run the application's main loop. */
	ei_app_run();
    
	/* We just exited from the main loop. Terminate the application (cleanup). */
	ei_unbind(ei_ev_keydown,	NULL, "all", process_key, NULL);
	ei_app_free();
    
	return (EXIT_SUCCESS);
}
Beispiel #7
0
void ei_default_button(ei_widget_t *widget)
{
	widget->wclass = ei_widgetclass_from_name(CLASS_BUTTON);
	widget->requested_size = ei_size(0,0);

	widget->content_rect = malloc(sizeof(ei_rect_t));
	assert(widget->content_rect);
	*widget->content_rect = widget->screen_location;

	ei_button(widget)->color = malloc(sizeof(ei_color_t));
	assert(ei_button(widget)->color);
	*(ei_button(widget)->color) = ei_default_background_color;

	ei_button(widget)->border_width = malloc(sizeof(int));
	assert(ei_button(widget)->border_width);
	*(ei_button(widget)->border_width) = 0;

	ei_button(widget)->relief = malloc(sizeof(ei_relief_t));
	assert(ei_button(widget)->relief);
	*(ei_button(widget)->relief) = ei_relief_none;

	ei_button(widget)->text = NULL;

	ei_button(widget)->text_font = malloc(sizeof(ei_font_t));
	assert(ei_button(widget)->text_font);
	*(ei_button(widget)->text_font) = ei_default_font;

	ei_button(widget)->text_color = malloc(sizeof(ei_color_t));
	assert(ei_button(widget)->text_color);
	*(ei_button(widget)->text_color) = ei_font_default_color;

	ei_button(widget)->text_anchor = malloc(sizeof(ei_anchor_t));
	assert(ei_button(widget)->text_anchor);
	*(ei_button(widget)->text_anchor) = ei_anc_center;

	ei_button(widget)->img = malloc(sizeof(ei_surface_t*));
	assert(ei_button(widget)->img);
	*ei_button(widget)->img = NULL;

	ei_button(widget)->img_rect = malloc(sizeof(ei_rect_t*));
	assert(ei_button(widget)->img_rect);
	*ei_button(widget)->img_rect = NULL;

	ei_button(widget)->img_anchor = malloc(sizeof(ei_anchor_t));
	assert(ei_button(widget)->img_anchor);
	*(ei_button(widget)->img_anchor) = ei_anc_center;

	ei_button(widget)->corner_radius = malloc(sizeof(int));
	assert(ei_button(widget)->corner_radius);
	*(ei_button(widget)->corner_radius) = k_default_button_corner_radius;

	ei_button(widget)->callback = malloc(sizeof(ei_callback_t));
	assert(ei_button(widget)->callback);
	*(ei_button(widget)->callback) = NULL;

	ei_button(widget)->user_param = NULL;

	ei_bind(ei_ev_mouse_buttondown, widget, NULL, on_press, (void*) widget);

	ei_geomnotify_button(widget, widget->screen_location);
	ei_app_invalidate_rect(&widget->screen_location);
}