summaryrefslogtreecommitdiff
path: root/ui/small_dlgs.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
commit75c07011b7c4d06acd7b45dabdcd60ab9d80f385 (patch)
tree8853c3978dd152ef377e652239448b1352320206 /ui/small_dlgs.h
parent5.22 (diff)
downloadFreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.gz
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.bz2
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.zip
5.23
Diffstat (limited to 'ui/small_dlgs.h')
-rw-r--r--ui/small_dlgs.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/ui/small_dlgs.h b/ui/small_dlgs.h
deleted file mode 100644
index 311a7d14..00000000
--- a/ui/small_dlgs.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
-
-#ifndef SMALLDIALOGS_H_INCLUDED
-#define SMALLDIALOGS_H_INCLUDED
-
-#include <wx/window.h>
-//#include "../file_hierarchy.h"
-#include "../lib/process_xml.h"
-#include "../synchronization.h"
-
-namespace zen
-{
-//parent window, optional: support correct dialog placement above parent on multiple monitor systems
-
-struct ReturnSmallDlg
-{
- enum ButtonPressed
- {
- BUTTON_CANCEL,
- BUTTON_OKAY = 1
- };
-};
-
-void showAboutDialog(wxWindow* parent);
-
-ReturnSmallDlg::ButtonPressed showFilterDialog(wxWindow* parent, FilterConfig& filter, const wxString& caption);
-
-ReturnSmallDlg::ButtonPressed showDeleteDialog(wxWindow* parent,
- const std::vector<FileSystemObject*>& rowsOnLeft,
- const std::vector<FileSystemObject*>& rowsOnRight,
- bool& deleteOnBothSides,
- bool& useRecycleBin);
-
-ReturnSmallDlg::ButtonPressed showSyncConfirmationDlg(wxWindow* parent,
- const wxString& variantName,
- const SyncStatistics& statistics,
- bool& dontShowAgain);
-
-ReturnSmallDlg::ButtonPressed showCompareCfgDialog(wxWindow* parent, CompConfig& cmpConfig, const wxString& title);
-
-ReturnSmallDlg::ButtonPressed showGlobalSettingsDlg(wxWindow* parent, xmlAccess::XmlGlobalSettings& globalSettings);
-
-ReturnSmallDlg::ButtonPressed showSelectTimespanDlg(wxWindow* parent, Int64& timeFrom, Int64& timeTo);
-}
-
-#endif // SMALLDIALOGS_H_INCLUDED
-
-
bgstack15