コード例 #1
0
ファイル: simple.c プロジェクト: kizukukoto/WDN900_GPL
static void
button_pressed( LiteButton *button, void *ctx )
{
     lite_close_window( LITE_WINDOW(ctx) );
}
コード例 #2
0
ファイル: mainMenu.c プロジェクト: Casperkings/FastBoot
static void
climatePressed( LiteButton *button, void *ctx )
{
    where_am_i();
    loadClimate( LITE_WINDOW(ctx) );
}
コード例 #3
0
ファイル: mainMenu.c プロジェクト: Casperkings/FastBoot
static void
exitPressed( LiteButton *button, void *ctx )
{
    where_am_i();
    lite_close_window( LITE_WINDOW(ctx) );
}
コード例 #4
0
ファイル: mainMenu.c プロジェクト: Casperkings/FastBoot
static void
vehicleInfoPressed( LiteButton *button, void *ctx )
{
    where_am_i();
    loadVinfo( LITE_WINDOW(ctx) );
}