mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-31 16:04:54 +00:00
fd37bfd261
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.
31 lines
665 B
C
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*/
|