resize PoC: add some functionality #842

pull/848/head
nick black 4 years ago committed by Nick Black
parent 63556d295f
commit c1c1238e7e

@ -21,26 +21,54 @@ int main(int argc, char** argv){
if((nc = notcurses_init(&opts, nullptr)) == nullptr){
return EXIT_FAILURE;
}
int dimy, dimx;
struct ncplane* n = notcurses_stddim_yx(nc, &dimy, &dimx);
struct ncvisual_options vopts{};
bool failed = false;
nc_err_e ncerr;
int dimy, dimx;
int scaley, scalex;
int top = 0;
int bot;
auto ncv = ncvisual_from_file(file, &ncerr);
if(!ncv){
goto err;
}
int scaley, scalex;
ncvisual_geom(nc, ncv, &vopts, nullptr, nullptr, &scaley, &scalex);
//ncvisual_resize(ncv, dimy * scaley, dimx * scalex);
vopts.n = n;
vopts.scaling = NCSCALE_STRETCH;
if(ncvisual_render(nc, ncv, &vopts) == nullptr){
struct ncplane* ntarg;
if((ntarg = ncvisual_render(nc, ncv, &vopts)) == nullptr){
goto err;
}
if(notcurses_render(nc)){
goto err;
}
ncplane_dim_yx(ntarg, &dimy, &dimx);
// start chopping off rows
bot = dimy - 1;
while(top <= bot){
// one from top
sleep(1);
if(ncplane_resize(ntarg, 1, 0, bot - top, dimx, 0, 0, bot - top, dimx)){
goto err;
}
++top;
if(notcurses_render(nc)){
goto err;
}
if(top > bot){
break;
}
/*
// one from bottom
sleep(1);
if(ncplane_resize(ntarg, 0, 0, bot - top, dimx, 0, 0, bot - top, dimx)){
goto err;
}
--bot;
if(notcurses_render(nc)){
goto err;
}
*/
}
return notcurses_stop(nc) || failed ? EXIT_FAILURE : EXIT_SUCCESS;
err:

Loading…
Cancel
Save