ciderpress/util/UtilLib.h
Andy McFadden fd37bfd261 Reimplement ChooseDirDialog
The previous version was written to work on Win98+, and used the
rather gnarly ShellTree class.  Since we no longer support Win98,
we can now use CShellManager::BrowseForFolder(), which does exactly
what we want without all the ugly code (and it looks nicer, and it
integrates better with the rest of the system).

We can also get rid of NewFolderDialog, which only existed to allow
the user to create a folder when trudging through ShellTree.

This required "upgrading" the main app object from CWinApp to
CWinAppEx, but that appears to be benign.  Tested on WinXP and it
all seems fine.
2015-01-13 13:25:34 -08:00

31 lines
665 B
C

/*
* CiderPress
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
* See the file LICENSE for distribution terms.
*/
/*
* Include this to get headers for all contents of utility library.
*/
#ifndef UTIL_LIB_H
#define UTIL_LIB_H
#include "FaddenStd.h"
#include "MyDebug.h"
#include "Util.h"
#include "ImageDataObject.h"
#include "MyBitmapButton.h"
#include "MyDIBitmap.h"
#include "MyEdit.h"
#include "MySpinCtrl.h"
#include "PathName.h"
#include "Pidl.h"
#include "SelectFilesDialog.h"
#include "SoundFile.h"
#include "Modeless.h"
#include "CancelDialog.h"
#include "ProgressCancelDialog.h"
#endif /*UTIL_LIB_H*/