From 186cabcf32a4fe518a7415ee7790340fe573c778 Mon Sep 17 00:00:00 2001 From: kpl Date: Tue, 20 Nov 2012 22:51:13 -0800 Subject: [PATCH] cmGrPageLayout() now returns bool. --- cmGrPage.c | 34 +++++++++++++++++----------------- cmGrPage.h | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cmGrPage.c b/cmGrPage.c index 8383266..b25c4a2 100644 --- a/cmGrPage.c +++ b/cmGrPage.c @@ -261,8 +261,6 @@ void _cmGrPageCallback( void* arg, cmGrH_t grH, cmGrCbId_t id, unsigned eventFla default: { assert(0); } } - - } @@ -294,7 +292,6 @@ cmGrRC_t cmGrPageDestroy( cmGrPgH_t* hp ) cmGrPg_t* p = _cmGrPgHandleToPtr(*hp); - if((rc = _cmGrPgDestroy(p)) != kOkGrRC ) return rc; @@ -418,7 +415,7 @@ void _cmGrPgLayoutView( cmGrPg_t* p, cmGrPgVw_t* vp, cmGrDcH_t dcH ) // Create a negative string with a repeating decimal to simulate an arbitrary hash label - // Use the measurements pgom this string to compute the geometry of the view layouts. + // Use the measurements from this string to compute the geometry of the view layouts. char label[ kHashCharCnt + 1]; snprintf(label,kHashCharCnt,"%f",-4.0/3.0); label[kHashCharCnt] = 0; @@ -635,23 +632,25 @@ void _cmGrPgLayoutView( cmGrPg_t* p, cmGrPgVw_t* vp, cmGrDcH_t dcH ) } -void _cmGrPageLayout( cmGrPg_t* p, cmGrDcH_t dcH ) +bool _cmGrPageLayout( cmGrPg_t* p, cmGrDcH_t dcH ) { unsigned i; if( cmIsNotFlag(p->flags,kDirtyFl) ) - return; + return false; cmGrDcSetFontFamily(dcH,kHelveticaFfGrId); cmGrDcSetFontSize(dcH,10); // Create a negative string with a repeating decimal to simulate an arbitrary hash label // Use the measurements pgom this string to compute the geometry of the view layouts. + /* char label[ kHashCharCnt + 1]; cmGrPSz_t sz; snprintf(label,kHashCharCnt,"%f",-4.0/3.0); label[kHashCharCnt] = 0; cmGrDcMeasure(dcH,label,&sz); + */ _cmGrPgLayoutVwPosition(p); @@ -663,10 +662,13 @@ void _cmGrPageLayout( cmGrPg_t* p, cmGrDcH_t dcH ) } p->flags = cmClrFlag(p->flags,kDirtyFl); + + return true; } cmGrRC_t cmGrPageInit( cmGrPgH_t h, const cmGrPExt_t* r, unsigned rn, unsigned cn, cmGrDcH_t dcH ) { + cmGrRC_t rc = kOkGrRC; cmGrPg_t* p = _cmGrPgHandleToPtr(h); unsigned i; @@ -730,7 +732,7 @@ cmGrRC_t cmGrPageInit( cmGrPgH_t h, const cmGrPExt_t* r, unsigned rn, unsigned c p->flags = cmSetFlag(p->flags,kDirtyFl); // layout the page - _cmGrPageLayout(p, dcH ); + // kpl _cmGrPageLayout(p, dcH ); // notify the application that views have been created for(i=0; ictx,&vp->grH,i,kExpandViewGrFl,_cmGrPageCallback,p,NULL) == kOkGrRC ) - { - //if( p->rspdr != NULL ) - // p->rspdr->on_view_create( p->rspdrArg, i ); - } + if((rc = cmGrCreate(&p->ctx,&vp->grH,i,kExpandViewGrFl,_cmGrPageCallback,p,NULL)) != kOkGrRC ) + break; } } - return kOkGrRC; + return rc; } @@ -760,7 +759,7 @@ cmGrRC_t cmGrPageResize( cmGrPgH_t h, const cmGrPExt_t* r, cmGrDcH_t dcH ) p->flags = cmSetFlag(p->flags,kDirtyFl); // layout the page - _cmGrPageLayout(p, dcH ); + // kpl _cmGrPageLayout(p, dcH ); return kOkGrRC; } @@ -984,12 +983,13 @@ cmGrVwH_t cmGrPageFocusedView( cmGrPgH_t h ) } -void cmGrPageLayout( cmGrPgH_t h, cmGrDcH_t dcH ) -{ +bool cmGrPageLayout( cmGrPgH_t h, cmGrDcH_t dcH ) +{ cmGrPg_t* p = _cmGrPgHandleToPtr(h); cmGrDcPushCtx(dcH); - _cmGrPageLayout(p,dcH); + bool fl = _cmGrPageLayout(p,dcH); cmGrDcPopCtx(dcH); + return fl; } void cmGrPageDraw( cmGrPgH_t h, cmGrDcH_t dcH ) diff --git a/cmGrPage.h b/cmGrPage.h index 4e905b4..1f71873 100644 --- a/cmGrPage.h +++ b/cmGrPage.h @@ -55,7 +55,7 @@ extern "C" { cmGrVwH_t cmGrPageFocusedView( cmGrPgH_t h ); // - void cmGrPageLayout( cmGrPgH_t h, cmGrDcH_t dcH ); + bool cmGrPageLayout( cmGrPgH_t h, cmGrDcH_t dcH ); // Draw the page. void cmGrPageDraw( cmGrPgH_t h, cmGrDcH_t dcH );