2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-02-25 02:21:12 +04:00
|
|
|
#ifndef cmWIXFilesSourceWriter_h
|
|
|
|
#define cmWIXFilesSourceWriter_h
|
|
|
|
|
|
|
|
#include "cmWIXSourceWriter.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2014-02-25 02:21:12 +04:00
|
|
|
#include "cmWIXPatch.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmWIXShortcut.h"
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
#include <CPack/cmCPackGenerator.h>
|
|
|
|
|
|
|
|
/** \class cmWIXFilesSourceWriter
|
|
|
|
* \brief Helper class to generate files.wxs
|
|
|
|
*/
|
|
|
|
class cmWIXFilesSourceWriter : public cmWIXSourceWriter
|
|
|
|
{
|
|
|
|
public:
|
2016-09-06 13:11:00 +03:00
|
|
|
cmWIXFilesSourceWriter(cmCPackLog* logger, std::string const& filename,
|
|
|
|
GuidType componentGuidType);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void EmitShortcut(std::string const& id, cmWIXShortcut const& shortcut,
|
|
|
|
std::string const& shortcutPrefix, size_t shortcutIndex);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
void EmitRemoveFolder(std::string const& id);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void EmitInstallRegistryValue(std::string const& registryKey,
|
|
|
|
std::string const& cpackComponentName,
|
|
|
|
std::string const& suffix);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
void EmitUninstallShortcut(std::string const& packageName);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string EmitComponentCreateFolder(std::string const& directoryId,
|
|
|
|
std::string const& guid,
|
|
|
|
cmInstalledFile const* installedFile);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string EmitComponentFile(std::string const& directoryId,
|
|
|
|
std::string const& id,
|
|
|
|
std::string const& filePath, cmWIXPatch& patch,
|
|
|
|
cmInstalledFile const* installedFile);
|
|
|
|
};
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
#endif
|