mirror of
https://github.com/aaronsgiles/JPEGView.git
synced 2024-11-16 03:07:10 +00:00
92bdb55672
These are the sources for the final official release of JPEGView for the Mac, back in 1994.
1 line
1.5 KiB
C
1 line
1.5 KiB
C
/*********************************************************/
|
|
/* This source code copyright (c) 1991-2001, Aaron Giles */
|
|
/* See the Read Me file for licensing information. */
|
|
/* Contact email: mac@aarongiles.com */
|
|
/*********************************************************/
|
|
|
|
#ifndef __STATISTICSWINDOW__
|
|
#define __STATISTICSWINDOW__
|
|
|
|
OSErr OpenStats(void);
|
|
void CloseStats(void);
|
|
void SizeStats(Boolean zoomed);
|
|
void ZoomStats(void);
|
|
WindowPtr GetStatWindow(void);
|
|
extern void HandleStatClick(EventRecord *theEvent);
|
|
void SetStatistics(void);
|
|
void DrawStatWindow(void);
|
|
void DrawStatSummary(ImageHandle theImage, short *vPos);
|
|
void DrawStatFileName(ImageHandle theImage, short *vPos);
|
|
void DrawStatImageSize(ImageHandle theImage, short *vPos);
|
|
void DrawStatImageStatus(ImageHandle theImage, short *vPos);
|
|
void DrawStatImageColors(ImageHandle theImage, short *vPos);
|
|
void DrawStatCompression(ImageHandle theImage, short *vPos);
|
|
void DrawStatFileFormat(ImageHandle theImage, short *vPos);
|
|
void DrawStatImageLength(ImageHandle theImage, short *vPos);
|
|
void DrawStatDisplayedSize(ImageHandle theImage, short *vPos);
|
|
void DrawStatDisplayedColors(ImageHandle theImage, short *vPos);
|
|
void DrawStatDisplayQuality(ImageHandle theImage, short *vPos);
|
|
void DrawStatDisplayTime(ImageHandle theImage, short *vPos);
|
|
void DrawStatOffscreen(ImageHandle theImage, short *vPos);
|
|
void DrawStatFree(ImageHandle theImage, short *vPos);
|
|
void DrawStatItem(short vPos, short item, StringPtr theNum);
|
|
extern void IdleCredits(void);
|
|
void DoStatsHelp(Point globalPt);
|
|
|
|
#endif
|