eudora-mac/fileview.c

1 line
27 KiB
C
Raw Normal View History

2018-05-23 09:59:15 +00:00
/* Copyright (c) 2017, Computer History Museum All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Computer History Museum nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ void FVSizeDispose(FileViewHandle fvh); #include "fileview.h" #define FILE_NUM 58 #define kHeaderButtonHeight (GROW_SIZE+5) #define kCheckSeconds 5 // How often to check for upates to folder? #define kFVButtonRef 'fvew' typedef struct { Str32 name; VLNodeID nodeID; Boolean folder; uLong size; uLong date; } FVFileInfo; long FileViewLVCallBack(ViewListPtr pView, VLCallbackMessage message, long data); static Boolean FileViewDrawRow(ViewListPtr pView,short item,Rect *pRect,CellRec *pCellData,Boolean select,Boolean eraseName); static Boolean FileViewFillBlank(ViewListPtr pView); static Boolean FileViewGetCellRects(ViewListPtr pView, CellRec *cellData, Rect *cellRect, Rect *iconRect, Rect *nameRect); static Boolean FileViewInterestingClick(ViewListPtr pView, CellRec *cellData, Rect *cellRect, Point pt); static void FileViewGetRects(ViewListPtr pView, CellRec *cellData, Rect *cellRect, Rect *iconRect, Rect *nameRect, Point *ptName); static void DrawListColors(FileViewHandle fvh, Rect *pRect, Boolean separator); static void FVAddFiles(ViewListPtr pView,FileViewHandle fvh,long dirId); void DrawFitting(StringPtr s, short width); void SetColButton(FileViewHandle fvh); static void FVSwapFiles(FVFileInfo *f1,FVFileInfo *f2); static int FVCompareName(FVFileInfo *f1,FVFileInfo *f2); static int FVCompareSize(FVFileInfo *f1,FVFileInfo *f2); static int FVCompareDate(FVFileInfo *f1,FVFileInfo *f2); short colLeft[kFDColCount+1] = { 0,250,395,457 }; short gCntlId[kFDColCount] = { FV_NAME_CNTL,FV_DATE_CNTL,FV_SIZE_CNTL }; /************************************************************************ * NewFileView - create a new file view ************************************************************************/ void NewFileView(MyWindowPtr win, FileViewHandle hData) { ViewListPtr pList; WindowPtr winPtr = GetMyWindowWindowPtr(win); if (pList=NuPtr(sizeof(ViewList))) { Rect rList; DrawDetailsStruct details; short i; (*hData)->list = pList; GetPortBounds(GetMyWindowCGrafPtr(win),&rList); rList.top = win->topMargin; LVInitDetails(&details); details.DrawRowCallback = FileViewDrawRow; details.FillBlankCallback = FileViewFillBlank; // details.GetCellRectsCallBack = FileViewGetCellRects; // details.InterestingClickCallback = FileViewInterestingClick; LVNewWithDetails(pList,win,&rList,(*hData)->dirId,FileViewLVCallBack,kLVDoOwnDragAdd,&details); for (i = 0;i < kFDColCount;i++) {