Clone
ixen <ixen@copyhandler.com>
committed
on 26 Jul 11
Merged checking for free space with copy/move subtask.
LoggerImprovements + 5 more
src/ch/CustomCopyDlg.cpp (+2 -1)
1 1 /***************************************************************************
2 2 *   Copyright (C) 2001-2008 by J�zef Starosczyk                           *
3 3 *   ixen@copyhandler.com                                                  *
4 4 *                                                                         *
5 5 *   This program is free software; you can redistribute it and/or modify  *
6 6 *   it under the terms of the GNU Library General Public License          *
7 7 *   (version 2) as published by the Free Software Foundation;             *
8 8 *                                                                         *
9 9 *   This program is distributed in the hope that it will be useful,       *
10 10 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 11 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 12 *   GNU General Public License for more details.                          *
13 13 *                                                                         *
14 14 *   You should have received a copy of the GNU Library General Public     *
15 15 *   License along with this program; if not, write to the                 *
16 16 *   Free Software Foundation, Inc.,                                       *
17 17 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18 18 ***************************************************************************/
19 19 #include "stdafx.h"
  20 #include <boost/shared_array.hpp>
20 21 #include "resource.h"
21 22 #include "FileInfo.h"
22 23 #include "CustomCopyDlg.h"
23 24 #include "structs.h"
24 25 #include "dialogs.h"
25 26 #include "BufferSizeDlg.h"
26 27 #include "FilterDlg.h"
27 28 #include "StringHelpers.h"
28 29 #include "ch.h"
29   #include <boost/shared_array.hpp>
  30 #include "../libicpf/file.h"
30 31
31 32 #ifdef _DEBUG
32 33 #define new DEBUG_NEW
33 34 #undef THIS_FILE
34 35 static char THIS_FILE[] = __FILE__;
35 36 #endif
36 37
37 38 /////////////////////////////////////////////////////////////////////////////
38 39 // CCustomCopyDlg dialog
39 40
40 41
41 42 CCustomCopyDlg::CCustomCopyDlg() :
42 43         ictranslate::CLanguageDialog(CCustomCopyDlg::IDD)
43 44 {
44 45         m_bOnlyCreate = FALSE;
45 46         m_bIgnoreFolders = FALSE;
46 47         m_bFilters = FALSE;
47 48         m_bAdvanced = FALSE;
48 49         m_bForceDirectories = FALSE;
49 50