rofi/test/box-test.c

240 lines
8.3 KiB
C
Raw Normal View History

/*
* rofi
*
* MIT/X11 License
* Copyright © 2013-2017 Qball Cow <qball@gmpclient.org>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
2016-10-21 16:48:01 +00:00
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <assert.h>
#include <glib.h>
#include <string.h>
#include <widgets/box.h>
#include <widgets/widget.h>
#include <widgets/widget-internal.h>
unsigned int test =0;
#define TASSERT( a ) { \
assert ( a ); \
printf ( "Test %3i passed (%s)\n", ++test, # a ); \
}
#define TASSERTE( a, b ) { \
if ( ( a ) == ( b ) ) { \
printf ( "Test %i passed (%s == %s) (%u == %u)\n", ++test, # a, # b, a, b ); \
}else { \
printf ( "Test %i failed (%s == %s) (%u != %u)\n", ++test, # a, # b, a, b ); \
abort ( ); \
} \
}
2017-01-09 22:15:45 +00:00
void config_parse_set_property ( const void *p )
2017-03-28 10:08:14 +00:00
{
}
char * rofi_expand_path ( const char *path )
{
}
2017-04-17 16:07:50 +00:00
char * helper_get_theme_path ( const char *file )
{
return g_strdup ( file );
}
2017-01-09 22:15:45 +00:00
void rofi_add_error_message ( GString *msg )
{
}
2017-01-01 15:32:01 +00:00
int textbox_get_estimated_char_height ( void );
int textbox_get_estimated_char_height ( void )
{
return 16;
}
2017-01-03 18:35:23 +00:00
void rofi_view_get_current_monitor ( int *width, int *height )
{
}
2017-01-01 15:32:01 +00:00
2016-10-21 16:48:01 +00:00
static gboolean test_widget_clicked ( G_GNUC_UNUSED widget *wid, G_GNUC_UNUSED xcb_button_press_event_t* xce, G_GNUC_UNUSED void *data )
{
return TRUE;
}
2016-10-21 16:48:01 +00:00
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
{
2017-01-01 15:32:01 +00:00
box *b = box_create ( "box", BOX_HORIZONTAL );
//box_set_padding ( b, 5 );
2017-01-01 15:32:01 +00:00
widget_resize ( WIDGET (b), 100, 20);
2016-10-21 16:48:01 +00:00
widget *wid1 = g_malloc0(sizeof(widget));
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid1 ), TRUE, 0 );
2016-10-21 16:48:01 +00:00
// Widget not enabled. no width allocated.
TASSERTE ( wid1->h, 0);
TASSERTE ( wid1->w, 0 );
widget_enable ( WIDGET ( wid1 ) );
widget_update ( WIDGET ( b ) ) ;
2016-10-21 16:48:01 +00:00
// Widget enabled. so width allocated.
TASSERTE ( wid1->h, 20);
TASSERTE ( wid1->w, 100 );
widget *wid2 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid2 ) );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid2 ), TRUE, 1 );
2016-10-21 16:48:01 +00:00
TASSERTE ( wid1->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->w, 49);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->w, 49);
2016-10-21 16:48:01 +00:00
widget *wid3 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid3 ) );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid3 ), FALSE, 2 );
2016-10-21 16:48:01 +00:00
TASSERTE ( wid1->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->w, 48);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->w, 48);
2016-10-21 16:48:01 +00:00
widget_resize ( WIDGET (wid3) , 20, 10 );
// TODO should this happen automagically?
widget_update ( WIDGET ( b ) ) ;
TASSERTE ( wid1->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->w, 38);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->w, 38);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid3->h, 20);
TASSERTE ( wid3->w, 20);
widget_resize ( WIDGET (b ), 200, 20 );
TASSERTE ( wid1->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->w, 88);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->h, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->w, 88);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid3->h, 20);
TASSERTE ( wid3->w, 20);
2017-01-09 22:15:45 +00:00
// TASSERTE ( box_get_fixed_pixels ( b ) , 24 );
2016-10-21 16:48:01 +00:00
widget *wid4 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid4 ) );
widget_resize ( WIDGET ( wid4 ), 20, 20 );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid4 ), FALSE, 5 );
2016-10-21 16:48:01 +00:00
TASSERTE ( wid4->x, 200-20);
2016-10-21 18:21:53 +00:00
widget *wid5 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid5 ) );
widget_resize ( WIDGET ( wid5 ), 20, 20 );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid5 ), TRUE, 6 );
TASSERTE ( wid5->x, 149);
2016-10-21 16:48:01 +00:00
widget_free ( WIDGET ( b ) );
}
{
2017-01-01 15:32:01 +00:00
box *b = box_create ( "box", BOX_VERTICAL );
widget_resize ( WIDGET (b), 20, 100);
//box_set_padding ( b, 5 );
2016-10-21 16:48:01 +00:00
widget *wid1 = g_malloc0(sizeof(widget));
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid1 ), TRUE, 0 );
2016-10-21 16:48:01 +00:00
// Widget not enabled. no width allocated.
TASSERTE ( wid1->h, 0);
TASSERTE ( wid1->w, 0 );
widget_enable ( WIDGET ( wid1 ) );
widget_update ( WIDGET ( b ) ) ;
2016-10-21 16:48:01 +00:00
// Widget enabled. so width allocated.
TASSERTE ( wid1->h, 100);
TASSERTE ( wid1->w, 20 );
widget *wid2 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid2 ) );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid2 ), TRUE, 1 );
2016-10-21 16:48:01 +00:00
TASSERTE ( wid1->w, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->h, 49);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->w, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->h, 49);
2016-10-21 16:48:01 +00:00
widget *wid3 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid3 ) );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid3 ), FALSE, 2 );
2016-10-21 16:48:01 +00:00
TASSERTE ( wid1->w, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid1->h, 48);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->w, 20);
2017-01-01 15:32:01 +00:00
TASSERTE ( wid2->h, 48);
2016-10-21 16:48:01 +00:00
widget_resize ( WIDGET (wid3) , 10, 20 );
// TODO should this happen automagically?
widget_update ( WIDGET ( b ) ) ;
TASSERTE ( wid1->w, 20);
2017-01-03 11:40:29 +00:00
TASSERTE ( wid1->h, 48);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->w, 20);
2017-01-03 11:40:29 +00:00
TASSERTE ( wid2->h, 48);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid3->w, 20);
2017-01-03 11:40:29 +00:00
TASSERTE ( wid3->h, 0);
2016-10-21 16:48:01 +00:00
widget_resize ( WIDGET (b ), 20, 200 );
TASSERTE ( wid1->w, 20);
2017-01-03 11:40:29 +00:00
TASSERTE ( wid1->h, 98);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid2->w, 20);
2017-01-03 11:40:29 +00:00
TASSERTE ( wid2->h, 98);
2016-10-21 16:48:01 +00:00
TASSERTE ( wid3->w, 20);
2017-01-03 11:40:29 +00:00
// has no height, gets no height.
TASSERTE ( wid3->h, 0);
2017-01-09 22:15:45 +00:00
// TASSERTE ( box_get_fixed_pixels ( b ) , 4 );
2016-10-21 16:48:01 +00:00
widget *wid4 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid4 ) );
widget_resize ( WIDGET ( wid4 ), 20, 20 );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid4 ), FALSE, 5 );
2017-01-03 11:40:29 +00:00
TASSERTE ( wid4->y, 200);
2016-10-21 18:21:53 +00:00
widget *wid5 = g_malloc0(sizeof(widget));
widget_enable ( WIDGET ( wid5 ) );
widget_resize ( WIDGET ( wid5 ), 20, 20 );
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid5 ), TRUE, 6 );
TASSERTE ( wid5->y, 136);
2016-10-21 16:48:01 +00:00
widget_free ( WIDGET ( b ) );
}
{
2017-01-01 15:32:01 +00:00
box *b = box_create ( "box", BOX_VERTICAL );
widget_resize ( WIDGET (b), 20, 100);
//box_set_padding ( b, 5 );
widget *wid1 = g_malloc0(sizeof(widget));
widget_enable(wid1);
wid1->clicked = test_widget_clicked;
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid1 ), TRUE, 0 );
widget *wid2 = g_malloc0(sizeof(widget));
widget_enable(wid2);
2017-01-06 15:53:21 +00:00
box_add ( b , WIDGET( wid2 ), TRUE, 1 );
xcb_button_press_event_t xce;
xce.event_x = 10;
xce.event_y = 60;
TASSERTE ( widget_clicked ( WIDGET(b), &xce ), 0);
xce.event_y = 50;
TASSERTE ( widget_clicked ( WIDGET(b), &xce ), 0);
2017-01-01 15:32:01 +00:00
xce.event_y = 48;
TASSERTE ( widget_clicked ( WIDGET(b), &xce ), 1);
widget_disable ( wid2 );
xce.event_y = 60;
TASSERTE ( widget_clicked ( WIDGET(b), &xce ), 1);
widget_disable ( wid1 );
widget_enable ( wid2 );
TASSERTE ( widget_clicked ( WIDGET(b), &xce ), 0);
widget_free ( WIDGET ( b ) );
}
2016-10-21 16:48:01 +00:00
}