[1169] | 1 |
|
---|
| 2 | /***********************************************************************
|
---|
| 3 |
|
---|
[1200] | 4 | $Id: select.h 1871 2015-09-20 22:57:02Z gyoung $
|
---|
[1169] | 5 |
|
---|
[1200] | 6 | <<<description here>>>
|
---|
[1169] | 7 |
|
---|
[1200] | 8 | Copyright (c) 1993-98 M. Kimes
|
---|
[1871] | 9 | Copyright (c) 2008, 2015 Steven H. Levine
|
---|
[1169] | 10 |
|
---|
[1200] | 11 | Change log
|
---|
[1871] | 12 | 20 Sep 15 GKY Create CollapseAll and modify ExpandAll to reduce code overhead
|
---|
| 13 | both to try and speed drive expansion. Change ExpandAll to allow it to loop
|
---|
| 14 | in UM_EXPAND until until drive is completely expanded. Changes were need to
|
---|
| 15 | work with Flesh, Stubby and UnFlesh being moved to a thread
|
---|
[1169] | 16 |
|
---|
| 17 | ***********************************************************************/
|
---|
| 18 |
|
---|
| 19 | #if !defined(SELECT_H)
|
---|
| 20 | #define SELECT_H
|
---|
| 21 |
|
---|
[1227] | 22 | #include "dircnrs.h" // typedef for CNRITEM, PCNRITEM
|
---|
| 23 |
|
---|
[1180] | 24 | VOID Deselect(HWND hwndCnr);
|
---|
[1169] | 25 | VOID DeselectAll(HWND hwndCnr, BOOL files, BOOL dirs, CHAR * mask,
|
---|
| 26 | CHAR * text, BOOL arc);
|
---|
[1871] | 27 | BOOL ExpandAll(HWND hwndCnr, INT count, PCNRITEM pciParent);
|
---|
| 28 | VOID CollapseAll(HWND hwndCnr, PCNRITEM pciParent);
|
---|
[1169] | 29 | VOID HideAll(HWND hwndCnr);
|
---|
| 30 | VOID InvertAll(HWND hwndCnr);
|
---|
[1180] | 31 | VOID MarkAll(HWND hwndCnr, BOOL quitit, BOOL target, BOOL source);
|
---|
[1169] | 32 | VOID RemoveAll(HWND hwndCnr, ULONGLONG * ullTotalBytes, ULONG * totalfiles);
|
---|
| 33 | VOID SelectAll(HWND hwndCnr, BOOL files, BOOL dirs, CHAR * mask, CHAR * text,
|
---|
| 34 | BOOL arc);
|
---|
| 35 | VOID SelectList(HWND hwndCnr, BOOL partial, BOOL deselect, BOOL clearfirst,
|
---|
| 36 | PCNRITEM pciParent, CHAR * filename, CHAR ** list);
|
---|
[1180] | 37 | VOID SetMask(CHAR * str, MASK * mask);
|
---|
[1169] | 38 | VOID SpecialSelect2(HWND hwndParent, INT action);
|
---|
[1180] | 39 | VOID UnHilite(HWND hwndCnr, BOOL all, CHAR *** list, ULONG ulItemsToUnHilite);
|
---|
[1169] | 40 |
|
---|
| 41 |
|
---|
| 42 | #endif // SELECT_H
|
---|