| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <Common.h>
- #include <TextsCore.h>
- #include "CustomWinConfiguration.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- class THistoryStrings : public TStringList
- {
- public:
- __fastcall THistoryStrings() : TStringList()
- {
- FModified = false;
- };
- __property bool Modified = { read = FModified, write = FModified };
- private:
- bool FModified;
- };
- //---------------------------------------------------------------------------
- __fastcall TCustomWinConfiguration::TCustomWinConfiguration():
- TGUIConfiguration()
- {
- FHistory = new TStringList();
- FEmptyHistory = new TStringList();
- FDefaultInterface = ifCommander;
- FDefaultShowAdvancedLoginOptions = false;
- }
- //---------------------------------------------------------------------------
- __fastcall TCustomWinConfiguration::~TCustomWinConfiguration()
- {
- ClearHistory();
- delete FHistory;
- delete FEmptyHistory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::ClearHistory()
- {
- assert(FHistory != NULL);
- THistoryStrings * HistoryStrings;
- for (int Index = 0; Index < FHistory->Count; Index++)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[Index]);
- FHistory->Objects[Index] = NULL;
- delete HistoryStrings;
- }
- FHistory->Clear();
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::DefaultHistory()
- {
- ClearHistory();
- // defaults for speed limits
- THistoryStrings * Strings = new THistoryStrings();
- Strings->Add(LoadStr(SPEED_UNLIMITED));
- unsigned long Speed = 1024;
- while (Speed >= 8)
- {
- Strings->Add(IntToStr(Speed));
- Speed = Speed / 2;
- }
- FHistory->AddObject("SpeedLimit", Strings);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::Default()
- {
- TGUIConfiguration::Default();
- FShowAdvancedLoginOptions = FDefaultShowAdvancedLoginOptions;
- FInterface = FDefaultInterface;
- FLogView = lvNone;
- FSynchronizeChecklist.WindowParams = "0;-1;-1;600;450;0";
- FSynchronizeChecklist.ListParams = "1;1|150,1;100,1;80,1;130,1;25,1;100,1;80,1;130,1|0;1;2;3;4;5;6;7";
- FConsoleWin.WindowSize = "570,430";
- DefaultHistory();
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::Saved()
- {
- TGUIConfiguration::Saved();
- THistoryStrings * HistoryStrings;
- for (int Index = 0; Index < FHistory->Count; Index++)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[Index]);
- assert(HistoryStrings != NULL);
- HistoryStrings->Modified = false;
- }
- }
- //---------------------------------------------------------------------------
- // duplicated from core\configuration.cpp
- #define LASTELEM(ELEM) \
- ELEM.SubString(ELEM.LastDelimiter(".>")+1, ELEM.Length() - ELEM.LastDelimiter(".>"))
- #define BLOCK(KEY, CANCREATE, BLOCK) \
- if (Storage->OpenSubKey(KEY, CANCREATE, true)) try { BLOCK } __finally { Storage->CloseSubKey(); }
- #define REGCONFIG(CANCREATE) \
- BLOCK("Interface", CANCREATE, \
- KEY(Integer, Interface); \
- KEY(Bool, ShowAdvancedLoginOptions); \
- ) \
- BLOCK("Logging", CANCREATE, \
- KEY(Integer, LogView); \
- ) \
- BLOCK("Interface\\SynchronizeChecklist", CANCREATE, \
- KEY(String, SynchronizeChecklist.WindowParams); \
- KEY(String, SynchronizeChecklist.ListParams); \
- ); \
- BLOCK("Interface\\ConsoleWin", CANCREATE, \
- KEY(String, ConsoleWin.WindowSize); \
- ); \
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SaveData(
- THierarchicalStorage * Storage, bool All)
- {
- TGUIConfiguration::SaveData(Storage, All);
- // duplicated from core\configuration.cpp
- #define KEY(TYPE, VAR) Storage->Write ## TYPE(LASTELEM(AnsiString(#VAR)), VAR)
- REGCONFIG(true);
- #undef KEY
- if (FHistory->Count > 0)
- {
- if (Storage->OpenSubKey("History", true))
- {
- try
- {
- THistoryStrings * HistoryStrings;
- for (int Index = 0; Index < FHistory->Count; Index++)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[Index]);
- assert(HistoryStrings != NULL);
- if (All || HistoryStrings->Modified)
- {
- if (Storage->OpenSubKey(FHistory->Strings[Index], true))
- {
- try
- {
- Storage->WriteValues(HistoryStrings);
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- }
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- if (Storage->OpenSubKey("HistoryParams", true))
- {
- try
- {
- THistoryStrings * HistoryStrings;
- for (int Index = 0; Index < FHistory->Count; Index++)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[Index]);
- assert(HistoryStrings != NULL);
- if (All || HistoryStrings->Modified)
- {
- bool HasData = false;
- for (int VIndex = 0; !HasData && (VIndex < HistoryStrings->Count); VIndex++)
- {
- HasData = (HistoryStrings->Objects[VIndex] != NULL);
- }
- if (!HasData)
- {
- Storage->RecursiveDeleteSubKey(FHistory->Strings[Index]);
- }
- else if (Storage->OpenSubKey(FHistory->Strings[Index], true))
- {
- try
- {
- Storage->ClearValues();
- for (int VIndex = 0; VIndex < HistoryStrings->Count; VIndex++)
- {
- void * Data = HistoryStrings->Objects[VIndex];
- Storage->WriteBinaryData(IntToStr(VIndex), &Data, sizeof(Data));
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- }
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::LoadData(
- THierarchicalStorage * Storage)
- {
- TGUIConfiguration::LoadData(Storage);
- // duplicated from core\configuration.cpp
- #define KEY(TYPE, VAR) VAR = Storage->Read ## TYPE(LASTELEM(AnsiString(#VAR)), VAR)
- #pragma warn -eas
- REGCONFIG(false);
- #pragma warn +eas
- #undef KEY
- DefaultHistory();
- if (Storage->OpenSubKey("History", false))
- {
- TStrings * Names = NULL;
- try
- {
- Names = new TStringList();
- Storage->GetSubKeyNames(Names);
- for (int Index = 0; Index < Names->Count; Index++)
- {
- if (Storage->OpenSubKey(Names->Strings[Index], false))
- {
- THistoryStrings * HistoryStrings = NULL;
- try
- {
- // remove defaults, if any
- int HIndex = FHistory->IndexOf(Names->Strings[Index]);
- if (HIndex >= 0)
- {
- THistoryStrings * DefaultStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[HIndex]);
- delete DefaultStrings;
- FHistory->Delete(HIndex);
- }
- HistoryStrings = new THistoryStrings();
- Storage->ReadValues(HistoryStrings);
- FHistory->AddObject(Names->Strings[Index], HistoryStrings);
- HistoryStrings = NULL;
- }
- __finally
- {
- Storage->CloseSubKey();
- delete HistoryStrings;
- }
- }
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- delete Names;
- }
- }
- if (Storage->OpenSubKey("HistoryParams", false))
- {
- try
- {
- THistoryStrings * HistoryStrings;
- for (int Index = 0; Index < FHistory->Count; Index++)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[Index]);
- if (Storage->OpenSubKey(FHistory->Strings[Index], false))
- {
- try
- {
- for (int VIndex = 0; VIndex < HistoryStrings->Count; VIndex++)
- {
- void * Data;
- if (Storage->ReadBinaryData(IntToStr(VIndex), &Data, sizeof(Data)) ==
- sizeof(Data))
- {
- HistoryStrings->Objects[VIndex] = reinterpret_cast<TObject *>(Data);
- }
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- }
- }
- __finally
- {
- Storage->CloseSubKey();
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::LoadAdmin(THierarchicalStorage * Storage)
- {
- TGUIConfiguration::LoadAdmin(Storage);
- FDefaultInterface = TInterface(Storage->ReadInteger("DefaultInterfaceInterface", FDefaultInterface));
- FDefaultShowAdvancedLoginOptions = Storage->ReadBool("DefaultInterfaceShowAdvancedLoginOptions", FDefaultShowAdvancedLoginOptions);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetShowAdvancedLoginOptions(bool value)
- {
- SET_CONFIG_PROPERTY(ShowAdvancedLoginOptions);
- }
- //---------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetLogView(TLogView value)
- {
- SET_CONFIG_PROPERTY(LogView);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetInterface(TInterface value)
- {
- SET_CONFIG_PROPERTY(Interface);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetHistory(const AnsiString Index,
- TStrings * value)
- {
- int I = FHistory->IndexOf(Index);
- bool NonEmpty = (value != NULL) && (value->Count > 0);
- THistoryStrings * HistoryStrings = NULL;
- if (I >= 0)
- {
- HistoryStrings = dynamic_cast<THistoryStrings *>(FHistory->Objects[I]);
- if (HistoryStrings->Equals(value))
- {
- HistoryStrings = NULL;
- }
- }
- else if (NonEmpty)
- {
- HistoryStrings = new THistoryStrings();
- FHistory->AddObject(Index, HistoryStrings);
- }
- if (HistoryStrings != NULL)
- {
- if (NonEmpty)
- {
- HistoryStrings->Assign(value);
- while (HistoryStrings->Count > MaxHistoryCount)
- {
- HistoryStrings->Delete(HistoryStrings->Count - 1);
- }
- }
- else
- {
- HistoryStrings->Clear();
- }
- HistoryStrings->Modified = true;
- }
- }
- //---------------------------------------------------------------------------
- TStrings * __fastcall TCustomWinConfiguration::GetHistory(const AnsiString Index)
- {
- int I = FHistory->IndexOf(Index);
- return I >= 0 ? dynamic_cast<TStrings *>(FHistory->Objects[I]) : FEmptyHistory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetSynchronizeChecklist(TSynchronizeChecklistConfiguration value)
- {
- SET_CONFIG_PROPERTY(SynchronizeChecklist);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomWinConfiguration::SetConsoleWin(TConsoleWinConfiguration value)
- {
- SET_CONFIG_PROPERTY(ConsoleWin);
- }
|