1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 03:18:26 -06:00

Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.

This commit is contained in:
Mounir IDRASSI
2014-06-22 16:02:42 +02:00
parent 17823cb58c
commit 41a22ca4e7
239 changed files with 246 additions and 246 deletions

View File

@@ -16,7 +16,7 @@
#endif
#include "TextUserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
wxApp* Application::CreateConsoleApp ()
{

View File

@@ -13,7 +13,7 @@
#include "UserInterface.h"
#include "UserInterfaceType.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Application
{

View File

@@ -15,7 +15,7 @@
#include "LanguageStrings.h"
#include "UserInterfaceException.h"
namespace TrueCrypt
namespace VeraCrypt
{
CommandLineInterface::CommandLineInterface (wxCmdLineParser &parser, UserInterfaceType::Enum interfaceType) :
ArgCommand (CommandId::None),

View File

@@ -17,7 +17,7 @@
#include "UserPreferences.h"
#include "UserInterfaceType.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct CommandId
{

View File

@@ -31,7 +31,7 @@
#include "FatalErrorHandler.h"
namespace TrueCrypt
namespace VeraCrypt
{
static terminate_handler DefaultTerminateHandler;

View File

@@ -11,7 +11,7 @@
#include "System.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FatalErrorHandler
{

View File

@@ -11,7 +11,7 @@
#include "FavoriteVolume.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
FavoriteVolumeList FavoriteVolume::LoadList ()
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct FavoriteVolume;
typedef list < shared_ptr <FavoriteVolume> > FavoriteVolumeList;

View File

@@ -13,7 +13,7 @@
#include "Main/Resources.h"
#include "AboutDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
AboutDialog::AboutDialog (wxWindow* parent) : AboutDialogBase (parent)
{

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class AboutDialog : public AboutDialogBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "BenchmarkDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
BenchmarkDialog::BenchmarkDialog (wxWindow *parent)
: BenchmarkDialogBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class BenchmarkDialog : public BenchmarkDialogBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "ChangePasswordDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
ChangePasswordDialog::ChangePasswordDialog (wxWindow* parent, shared_ptr <VolumePath> volumePath, Mode::Enum mode, shared_ptr <VolumePassword> password, shared_ptr <KeyfileList> keyfiles, shared_ptr <VolumePassword> newPassword, shared_ptr <KeyfileList> newKeyfiles)
: ChangePasswordDialogBase (parent), DialogMode (mode), Path (volumePath)

View File

@@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "VolumePasswordPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class ChangePasswordDialog : public ChangePasswordDialogBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/Resources.h"
#include "DeviceSelectionDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
DeviceSelectionDialog::DeviceSelectionDialog (wxWindow* parent)
: DeviceSelectionDialogBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class DeviceSelectionDialog : public DeviceSelectionDialogBase
{

View File

@@ -14,7 +14,7 @@
#include "EncryptionOptionsWizardPage.h"
#include "EncryptionTestDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionOptionsWizardPage::EncryptionOptionsWizardPage (wxPanel* parent)
: EncryptionOptionsWizardPageBase (parent)

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionOptionsWizardPage : public EncryptionOptionsWizardPageBase
{

View File

@@ -12,7 +12,7 @@
#include "Main/GraphicUserInterface.h"
#include "EncryptionTestDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionTestDialog::EncryptionTestDialog (wxWindow* parent)
: EncryptionTestDialogBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionTestDialog : public EncryptionTestDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "FavoriteVolumesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
FavoriteVolumesDialog::FavoriteVolumesDialog (wxWindow* parent, const FavoriteVolumeList &favorites, size_t newItemCount)
: FavoriteVolumesDialogBase (parent), Favorites (favorites)

View File

@@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "Main/FavoriteVolume.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FavoriteVolumesDialog : public FavoriteVolumesDialogBase
{

View File

@@ -9,7 +9,7 @@
#include "System.h"
#include "InfoWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
InfoWizardPage::InfoWizardPage (wxPanel *parent, const wxString &actionButtonText, shared_ptr <Functor> actionFunctor)
: InfoWizardPageBase (parent)

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class InfoWizardPage : public InfoWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Volume/Hash.h"
#include "KeyfileGeneratorDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfileGeneratorDialog::KeyfileGeneratorDialog (wxWindow* parent) : KeyfileGeneratorDialogBase (parent)
{

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfileGeneratorDialog : public KeyfileGeneratorDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "KeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfilesDialog::KeyfilesDialog (wxWindow* parent, shared_ptr <KeyfileList> keyfiles)
: KeyfilesDialogBase (parent), Keyfiles (keyfiles)

View File

@@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "KeyfilesPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfilesDialog : public KeyfilesDialogBase
{

View File

@@ -11,7 +11,7 @@
#include "KeyfilesPanel.h"
#include "SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfilesPanel::KeyfilesPanel (wxWindow* parent, shared_ptr <KeyfileList> keyfiles)
: KeyfilesPanelBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfilesPanel : public KeyfilesPanelBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "Main/Resources.h"
namespace TrueCrypt
namespace VeraCrypt
{
LegalNoticesDialog::LegalNoticesDialog (wxWindow* parent) : LegalNoticesDialogBase (parent)
{

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class LegalNoticesDialog : public LegalNoticesDialogBase
{

View File

@@ -34,7 +34,7 @@
#include "VolumeCreationWizard.h"
#include "VolumePropertiesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
MainFrame::MainFrame (wxWindow* parent) : MainFrameBase (parent),
ListItemRightClickEventPending (false),
@@ -46,7 +46,7 @@ namespace TrueCrypt
SetName (Application::GetName());
SetTitle (Application::GetName());
SetIcon (Resources::GetTrueCryptIcon());
SetIcon (Resources::GetVeraCryptIcon());
#if defined(TC_UNIX) && !defined(TC_MACOSX)
try
@@ -1420,7 +1420,7 @@ namespace TrueCrypt
else if (show && !mTaskBarIcon->IsIconInstalled())
{
#ifndef TC_MACOSX
mTaskBarIcon->SetIcon (Resources::GetTrueCryptIcon(), L"VeraCrypt");
mTaskBarIcon->SetIcon (Resources::GetVeraCryptIcon(), L"VeraCrypt");
#endif
}
}

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "ChangePasswordDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct FavoriteVolume;

View File

@@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "MountOptionsDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
MountOptionsDialog::MountOptionsDialog (wxWindow *parent, MountOptions &options, const wxString &title, bool disableMountOptions)
: MountOptionsDialogBase (parent, wxID_ANY, wxString()

View File

@@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "VolumePasswordPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class MountOptionsDialog : public MountOptionsDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "NewSecurityTokenKeyfileDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
NewSecurityTokenKeyfileDialog::NewSecurityTokenKeyfileDialog (wxWindow* parent, const wstring &keyfileName) : NewSecurityTokenKeyfileDialogBase (parent)
{

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Common/SecurityToken.h"
namespace TrueCrypt
namespace VeraCrypt
{
class NewSecurityTokenKeyfileDialog : public NewSecurityTokenKeyfileDialogBase
{

View File

@@ -18,7 +18,7 @@
#include "Volume/Cipher.h"
#include "PreferencesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
PreferencesDialog::PreferencesDialog (wxWindow* parent)
: PreferencesDialogBase (parent),

View File

@@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "KeyfilesPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class PreferencesDialog : public PreferencesDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "ProgressWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
ProgressWizardPage::ProgressWizardPage (wxPanel* parent, bool enableAbort)
: ProgressWizardPageBase (parent),

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class ProgressWizardPage : public ProgressWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Volume/Hash.h"
#include "RandomPoolEnrichmentDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
RandomPoolEnrichmentDialog::RandomPoolEnrichmentDialog (wxWindow* parent) : RandomPoolEnrichmentDialogBase (parent)
{

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class RandomPoolEnrichmentDialog : public RandomPoolEnrichmentDialogBase
{

View File

@@ -12,7 +12,7 @@
#include "NewSecurityTokenKeyfileDialog.h"
#include "SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
SecurityTokenKeyfilesDialog::SecurityTokenKeyfilesDialog (wxWindow* parent, bool selectionMode)
: SecurityTokenKeyfilesDialogBase (parent)

View File

@@ -13,7 +13,7 @@
#include "Common/SecurityToken.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class SecurityTokenKeyfilesDialog : public SecurityTokenKeyfilesDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "SelectDirectoryWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
bool SelectDirectoryWizardPage::IsValid ()
{

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class SelectDirectoryWizardPage : public SelectDirectoryWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
template <class ChoiceType>
class SingleChoiceWizardPage : public SingleChoiceWizardPageBase

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumeCreationProgressWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeCreationProgressWizardPage::VolumeCreationProgressWizardPage (wxPanel* parent, bool displayKeyInfo)
: VolumeCreationProgressWizardPageBase (parent),

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Core/VolumeCreator.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeCreationProgressWizardPage : public VolumeCreationProgressWizardPageBase
{

View File

@@ -28,7 +28,7 @@
#include "VolumePasswordWizardPage.h"
#include "VolumeSizeWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeCreationWizard::VolumeCreationWizard (wxWindow* parent)
: WizardFrame (parent),

View File

@@ -12,7 +12,7 @@
#include "WizardFrame.h"
#include "Core/VolumeCreator.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeCreationWizard : public WizardFrame
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumeFormatOptionsWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeFormatOptionsWizardPage::VolumeFormatOptionsWizardPage (wxPanel* parent, uint64 volumeSize, uint32 sectorSize, bool enableQuickFormatButton, bool disableNoneFilesystem, bool disable32bitFilesystems)
: VolumeFormatOptionsWizardPageBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Core/VolumeCreator.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeFormatOptionsWizardPage : public VolumeFormatOptionsWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/VolumeHistory.h"
#include "VolumeLocationWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeLocationWizardPage::VolumeLocationWizardPage (wxPanel* parent, VolumeHostType::Enum hostType, bool selectExisting)
: VolumeLocationWizardPageBase (parent),

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeLocationWizardPage : public VolumeLocationWizardPageBase
{

View File

@@ -12,7 +12,7 @@
#include "VolumePasswordPanel.h"
#include "SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumePasswordPanel::VolumePasswordPanel (wxWindow* parent, shared_ptr <VolumePassword> password, shared_ptr <KeyfileList> keyfiles, bool enableCache, bool enablePassword, bool enableKeyfiles, bool enableConfirmation, bool enablePkcs5Prf, const wxString &passwordLabel)
: VolumePasswordPanelBase (parent), Keyfiles (new KeyfileList)

View File

@@ -13,7 +13,7 @@
#include "Platform/Functor.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumePasswordPanel : public VolumePasswordPanelBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumePasswordWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumePasswordWizardPage::VolumePasswordWizardPage (wxPanel* parent, shared_ptr <VolumePassword> password, shared_ptr <KeyfileList> keyfiles, bool enableConfirmation)
: VolumePasswordWizardPageBase (parent), ConfirmationMode (enableConfirmation)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "VolumePasswordPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumePasswordWizardPage : public VolumePasswordWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumePropertiesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumePropertiesDialog::VolumePropertiesDialog (wxWindow* parent, const VolumeInfo &volumeInfo)
: VolumePropertiesDialogBase (parent)

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumePropertiesDialog : public VolumePropertiesDialogBase
{

View File

@@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumeSizeWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeSizeWizardPage::VolumeSizeWizardPage (wxPanel* parent, const VolumePath &volumePath, uint32 sectorSize, const wxString &freeSpaceText)
: VolumeSizeWizardPageBase (parent),

View File

@@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeSizeWizardPage : public VolumeSizeWizardPageBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/Resources.h"
#include "WizardFrame.h"
namespace TrueCrypt
namespace VeraCrypt
{
WizardFrame::WizardFrame (wxWindow* parent)
: WizardFrameBase (parent),
@@ -20,7 +20,7 @@ namespace TrueCrypt
MaxStaticTextWidth (-1),
WorkInProgress (false)
{
SetIcon (Resources::GetTrueCryptIcon());
SetIcon (Resources::GetVeraCryptIcon());
PageTitleStaticText->SetFont (wxFont (
#ifdef TC_WINDOWS

View File

@@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class WizardFrame : public WizardFrameBase
{

View File

@@ -11,7 +11,7 @@
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class WizardPage : public wxPanel
{

View File

@@ -31,7 +31,7 @@
#include "Forms/RandomPoolEnrichmentDialog.h"
#include "Forms/SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
GraphicUserInterface::GraphicUserInterface () :
ActiveFrame (nullptr),

View File

@@ -14,7 +14,7 @@
#include "Main.h"
#include "UserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
class GraphicUserInterface : public UserInterface
{

View File

@@ -13,7 +13,7 @@
#include "Hotkey.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
HotkeyList Hotkey::GetAvailableHotkeys ()
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct Hotkey;
typedef list < shared_ptr <Hotkey> > HotkeyList;

View File

@@ -11,7 +11,7 @@
#include "LanguageStrings.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
LanguageStrings::LanguageStrings ()
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class LanguageStrings
{

View File

@@ -14,7 +14,7 @@
#include "Main/resource.h"
#endif
namespace TrueCrypt
namespace VeraCrypt
{
#ifdef TC_WINDOWS
@@ -146,7 +146,7 @@ namespace TrueCrypt
#endif
}
wxIcon Resources::GetTrueCryptIcon ()
wxIcon Resources::GetVeraCryptIcon ()
{
#ifdef TC_WINDOWS
return wxIcon (L"IDI_TRUECRYPT_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Resources
{
@@ -24,7 +24,7 @@ namespace TrueCrypt
static wxBitmap GetDriveIconMaskBitmap ();
static wxBitmap GetLogoBitmap ();
static wxBitmap GetTextualLogoBitmap ();
static wxIcon GetTrueCryptIcon ();
static wxIcon GetVeraCryptIcon ();
static wxBitmap GetVolumeCreationWizardBitmap (int height = -1);
#endif
};

View File

@@ -10,7 +10,7 @@
#include "StringFormatter.h"
#include "UserInterfaceException.h"
namespace TrueCrypt
namespace VeraCrypt
{
StringFormatter::StringFormatter (const wxString &format, StringFormatterArg arg0, StringFormatterArg arg1, StringFormatterArg arg2, StringFormatterArg arg3, StringFormatterArg arg4, StringFormatterArg arg5, StringFormatterArg arg6, StringFormatterArg arg7, StringFormatterArg arg8, StringFormatterArg arg9)
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class StringFormatterArg
{

View File

@@ -21,7 +21,7 @@
#include "Application.h"
#include "TextUserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
TextUserInterface::TextUserInterface ()
{

View File

@@ -13,7 +13,7 @@
#include "Main.h"
#include "UserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
class TextUserInterface : public UserInterface
{

View File

@@ -21,7 +21,7 @@
#include <ApplicationServices/ApplicationServices.h>
#endif
using namespace TrueCrypt;
using namespace VeraCrypt;
int main (int argc, char **argv)
{

View File

@@ -23,7 +23,7 @@
#include "FavoriteVolume.h"
#include "UserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
UserInterface::UserInterface ()
{

View File

@@ -19,7 +19,7 @@
#include "UserInterfaceException.h"
#include "UserInterfaceType.h"
namespace TrueCrypt
namespace VeraCrypt
{
class UserInterface : public wxApp
{

View File

@@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
TC_EXCEPTION_DECL (UserInterfaceException, Exception);
TC_EXCEPTION_DECL (MissingArgument, UserInterfaceException);

View File

@@ -9,7 +9,7 @@
#ifndef TC_HEADER_Main_UserInterfaceType
#define TC_HEADER_Main_UserInterfaceType
namespace TrueCrypt
namespace VeraCrypt
{
struct UserInterfaceType
{

View File

@@ -11,7 +11,7 @@
#include "UserPreferences.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
void UserPreferences::SetValue (const wxString &cfgText, bool &cfgVar)
{

View File

@@ -13,7 +13,7 @@
#include "Main.h"
#include "Hotkey.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct UserPreferences
{

View File

@@ -12,7 +12,7 @@
#include "Xml.h"
#include "VolumeHistory.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeHistory::VolumeHistory ()
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeHistory
{

View File

@@ -11,7 +11,7 @@
#include "Platform/FileStream.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
XmlParser::XmlParser (const FilePath &fileName)
{

View File

@@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct XmlNode;
typedef list <XmlNode> XmlNodeList;