summaryrefslogtreecommitdiff
path: root/ui/switch_to_gui.h
blob: a12c7b03176b3aa3b81c4d4104e849f842cc494c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// **************************************************************************
// * 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 SWITCHTOGUI_H_INCLUDED
#define SWITCHTOGUI_H_INCLUDED

#include "../lib/process_xml.h"
#include "main_dlg.h" //in "application.cpp" we have this dependency anyway!

namespace zen
{
//switch from FreeFileSync Batch to GUI modus: opens a new FreeFileSync GUI session asynchronously
class SwitchToGui
{
public:
    SwitchToGui(const wxString& referenceFile,
                const xmlAccess::XmlBatchConfig& batchCfg,
                xmlAccess::XmlGlobalSettings& globalSettings) :
        guiCfg(xmlAccess::convertBatchToGui(batchCfg)),
        globalSettings_(globalSettings)
    {
        referenceFiles.push_back(referenceFile);
    }

    void execute() const
    {
        MainDialog::create(guiCfg, referenceFiles, globalSettings_, true); //new toplevel window
    }

private:
    std::vector<wxString> referenceFiles;
    const xmlAccess::XmlGuiConfig guiCfg;
    xmlAccess::XmlGlobalSettings& globalSettings_;
};
}

#endif // SWITCHTOGUI_H_INCLUDED
bgstack15