File:  [RetroPC.NET] / np2 / macosx / dialog / dialogutils.cpp
Revision 1.5: download - view: text, annotated - select for diffs
Sat May 21 02:25:03 2005 JST (20 years, 5 months ago) by tk800
Branches: MAIN
CVS tags: VER_0_82_x64, VER_0_82, VER_0_81A, HEAD
fix pbproj[MacOSX](tk800)

/*
 *  dialogutils.cpp
 *  np2
 *
 *  Created by tk800 on Sat Oct 25 2003.
 *
 */

#include	"compiler.h"
#include	"dialogutils.h"
#include	"bmpdata.h"

enum {kTabMasterSig = 'ScrT',kTabMasterID = 1000,kTabPaneSig= 'ScTb'};

void endLoop(WindowRef window) {

    HideSheetWindow(window);
    DisposeWindow(window);
    QuitAppModalLoopForWindow(window);
}

ControlRef getControlRefByID(OSType sign, int id, WindowRef win) {
    ControlRef	conRef;
    ControlID	conID;

    conID.signature=sign;
    conID.id=id;
    GetControlByID(win, &conID, &conRef);
    return conRef;
}    


void SetInitialTabState(WindowRef theWindow, UInt16 pane, int max)
{
    short qq;

    for(qq=0;qq<max+1;qq++)
    SetControlVisibility( getControlRefByID(  kTabPaneSig,  kTabMasterID+qq, theWindow), false, true );  
    
    SetControlValue(getControlRefByID(kTabMasterSig,kTabMasterID,theWindow),pane );
    SetControlVisibility( getControlRefByID(  kTabPaneSig,  kTabMasterID+pane, theWindow), true, true );
}

short changeTab(WindowRef window, UInt16 pane) {
    short controlValue;
    controlValue = GetControlValue( getControlRefByID(kTabMasterSig,kTabMasterID,window) );
    if ( controlValue != pane )
    {
        ClearKeyboardFocus(window);
        SetControlVisibility(getControlRefByID( kTabPaneSig, kTabMasterID+pane, window), false, true );
        SetControlVisibility(getControlRefByID( kTabPaneSig, kTabMasterID+controlValue, window), true, true );    
        Draw1Control( getControlRefByID(kTabMasterSig,kTabMasterID,window) );		
        return(controlValue);    
    }
    
    return(0);
}

pascal OSStatus changeSlider(ControlRef theControl, WindowRef theWindow, short base) {
    ControlRef	conRef;
    ControlID	conID;
    Str255		title;
    SInt32		value;
    
    value = GetControl32BitValue(theControl) - base; 
    NumToString(value, title);
    if (GetControlID(theControl, &conID) == noErr) {
        conRef = getControlRefByID(conID.signature, conID.id+1000, theWindow);
        SetControlData(conRef, kControlNoPart, kControlStaticTextTextTag, *title, title+1);
        Draw1Control(conRef);
    }
    return( eventNotHandledErr );
}

void uncheckAllPopupMenuItems(OSType ID, short max, WindowRef win) {
    MenuRef mhd;
    short i;
    mhd = GetControlPopupMenuHandle(getControlRefByID(ID, 0, win));
    for (i=1; i<max; i++) {
        CheckMenuItem(mhd, i, false);
    }
}

void setjmper(BYTE *board, BYTE value, BYTE bit) {
    BYTE data;
    data = *board;
	if ((data ^ value) & bit) {
		data &= ~bit;
		data |= value;
        *board = data;
	}
}

void getFieldText(ControlRef cRef, char* buffer) {
    Size	size, outSize;
    GetControlDataSize(cRef, kControlNoPart, kControlStaticTextTextTag, &size);
    GetControlData(cRef, kControlNoPart, kControlStaticTextTextTag, size, buffer, &outSize);
    *(buffer+outSize) = 0;
}


UINT32 getFieldValue(ControlRef cRef)
{
    char	buffer[255];
    char*	retPtr;

    getFieldText(cRef, buffer);
    return(strtoul(buffer, &retPtr, 10));
}

void setbmp(BYTE* bmp, PicHandle* pict) {
    OSErr               err;
    ComponentInstance   ci=0;
	ComponentResult		result;
	Handle				bmphandle;
	UINT				datasize;
	BMPFILE*			bmpptr;
       
    err = OpenADefaultComponent(GraphicsImporterComponentType, 'BMPf', &ci);
	if (err == noErr) {
		bmpptr = (BMPFILE*)bmp;
		datasize = LOADINTELDWORD(bmpptr->bfSize);
		PtrToHand(bmp, &bmphandle, datasize);
		result = GraphicsImportSetDataHandle(ci, bmphandle);
		if (result == noErr) {
			Rect	natural;
			GraphicsImportGetNaturalBounds(ci, &natural);
			GraphicsImportSetBoundsRect(ci, &natural);
			GraphicsImportGetAsPicture(ci, pict);
		}
		err = CloseComponent(ci);
		DisposeHandle(bmphandle);
	}
	
}

RetroPC.NET-CVS <cvs@retropc.net>