summaryrefslogtreecommitdiff
path: root/ui/MainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:47:21 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:47:21 +0200
commitca64896d49b70fc0ffec711a079167c972fe635e (patch)
tree0059c36336378c886b750860aa5343b847c3609a /ui/MainDialog.h
parent1.3 (diff)
downloadFreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.gz
FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.bz2
FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.zip
1.4
Diffstat (limited to 'ui/MainDialog.h')
-rw-r--r--ui/MainDialog.h43
1 files changed, 21 insertions, 22 deletions
diff --git a/ui/MainDialog.h b/ui/MainDialog.h
index 7803cfd6..1f014502 100644
--- a/ui/MainDialog.h
+++ b/ui/MainDialog.h
@@ -22,7 +22,7 @@
using namespace std;
-const wxString ConstFilteredOut = "(-)";
+const wxString constFilteredOut = "(-)";
struct UI_GridLine
{
@@ -42,9 +42,8 @@ struct UI_GridLine
};
typedef vector<UI_GridLine> UI_Grid;
-bool updateUI_IsAllowed(); //test if a specific amount of time is over
-void updateUI_Now(); //do the updating
-
+bool updateUI_IsAllowed(); //test if a specific amount of time is over
+void updateUI_Now(); //do the updating
extern int leadingPanel;
@@ -66,17 +65,13 @@ private:
void readConfigurationFromHD(const wxString& filename, bool programStartup = false);
void writeConfigurationToHD(const wxString& filename);
-
- void loadResourceFiles();
- void unloadResourceFiles();
+ void loadDefaultConfiguration();
void updateViewFilterButtons();
void updateFilterButton();
void addCfgFileToHistory(const wxString& filename);
- void synchronizeFolders(FileCompareResult& grid, const SyncConfiguration config);
-
static wxString evaluateCmpResult(const CompareFilesResult result, const bool selectedForSynchronization);
//main method for putting gridData on UI: maps data respecting current view settings
@@ -84,7 +79,8 @@ private:
void mapFileModelToUI(UI_Grid& output, const FileCompareResult& fileCmpResult);
void updateStatusInformation(const UI_Grid& output);
- void filterRangeManual(int begin, int end, int leadingRow);
+ void filterRangeManual(const set<int>& rowsToFilterOnUI_View, int leadingRow);
+
void deleteFilesOnGrid(wxGrid* grid);
//work to be done in idle time
@@ -131,7 +127,7 @@ private:
void OnLoadConfiguration( wxCommandEvent& event);
void OnChoiceKeyEvent( wxKeyEvent& event );
-void onResizeMainWindow(wxEvent& event);
+ void onResizeMainWindow(wxEvent& event);
void OnAbortCompare( wxCommandEvent& event);
void OnFilterButton( wxCommandEvent& event);
void OnHideFilteredButton( wxCommandEvent& event);
@@ -178,7 +174,8 @@ void onResizeMainWindow(wxEvent& event);
int posYNotMaximized;
//other options
- bool useRecycleBin; //use Recycle bin when deleting or overwriting files while synchronizing
+ bool useRecycleBin; //use Recycle bin when deleting or overwriting files while synchronizing
+ bool hideErrorMessages; //hides error messages during synchronization
//***********************************************
@@ -229,37 +226,39 @@ private:
//######################################################################################
//classes handling sync and compare error as well as status information
+class CompareStatus;
+class SyncStatus;
class CompareStatusUpdater : public StatusUpdater
{
public:
- CompareStatusUpdater(MainDialog* dlg, wxStatusBar* mainWindowBar);
+ CompareStatusUpdater(MainDialog* dlg);
~CompareStatusUpdater();
- void updateStatus(const wxString& text);
- void updateProgressIndicator(double number);
+ void updateStatusText(const wxString& text);
+ void initNewProcess(int objectsTotal, double dataTotal, int processID);
+ void updateProcessedData(int objectsProcessed, double dataProcessed);
int reportError(const wxString& text);
void triggerUI_Refresh();
private:
MainDialog* mainDialog;
- wxStatusBar* statusBar;
bool suppressUI_Errormessages;
-
- unsigned int numberOfScannedObjects;
+ CompareStatus* statusPanel;
+ int currentProcess;
};
-class SyncStatus;
class SyncStatusUpdater : public StatusUpdater
{
public:
- SyncStatusUpdater(wxWindow* dlg, double gaugeTotalElements);
+ SyncStatusUpdater(wxWindow* dlg, bool hideErrorMessages);
~SyncStatusUpdater();
- void updateStatus(const wxString& text);
- void updateProgressIndicator(double number);
+ void updateStatusText(const wxString& text);
+ void initNewProcess(int objectsTotal, double dataTotal, int processID);
+ void updateProcessedData(int objectsProcessed, double dataProcessed);
int reportError(const wxString& text);
void triggerUI_Refresh();
bgstack15