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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license that can
* be found in the License.html file in the root of the source tree.
*/
//---------------------------------------------------------------------------
// Compilation condition
#ifndef MEDIAINFOGUI_PREFS_NO
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "GUI_Preferences_Custom.h"
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifdef MEDIAINFO_DLL_RUNTIME
#include "MediaInfoDLL/MediaInfoDLL.h"
#define MediaInfoNameSpace MediaInfoDLL
#elif defined MEDIAINFO_DLL_STATIC
#include "MediaInfoDLL/MediaInfoDLL_Static.h"
#define MediaInfoNameSpace MediaInfoDLL
#else
#include "MediaInfo/MediaInfoList.h"
#define MediaInfoNameSpace MediaInfoLib
#endif
#include "Common/Preferences.h"
//---------------------------------------------------------------------------
//***************************************************************************
// Constructor/Destructor
//***************************************************************************
//---------------------------------------------------------------------------
__fastcall TPreferences_CustomF::TPreferences_CustomF(TComponent* Owner)
: TForm(Owner)
{
ItemIndex=-1;
}
//---------------------------------------------------------------------------
void __fastcall TPreferences_CustomF::ListeChange(TObject *Sender)
{
//Save modification
Ztring C1=Memo->Text.c_str();
C1.FindAndReplace(__T("\r\n"), __T("\\r\\n"));
if (ItemIndex!=-1)
EditedCustom(ItemIndex, 1)=C1;
ItemIndex=Liste->ItemIndex;
//Show new item
C1=EditedCustom.Read(ItemIndex, 1);
C1.FindAndReplace(__T("\\r\\n"), __T("\r\n"));
Memo->Text=C1.c_str();
//Manage list of options
Infos->Items->Clear();
if (Liste->ItemIndex==0)
Infos_Parameters.Write(Ztring(MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV"))).SubString(Prefs->Translate(__T("General"))+__T("\r\n"), __T("\r\n\r\n")));
else if (Liste->ItemIndex==1)
Infos_Parameters.Write(Ztring(MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV"))).SubString(Prefs->Translate(__T("Video"))+__T("\r\n"), __T("\r\n\r\n")));
else if (Liste->ItemIndex==2)
Infos_Parameters.Write(Ztring(MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV"))).SubString(Prefs->Translate(__T("Audio"))+__T("\r\n"), __T("\r\n\r\n")));
else if (Liste->ItemIndex==3)
Infos_Parameters.Write(Ztring(MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV"))).SubString(Prefs->Translate(__T("Text"))+__T("\r\n"), __T("\r\n\r\n")));
else if (Liste->ItemIndex==4)
Infos_Parameters.Write(Ztring(MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV"))).SubString(Prefs->Translate(__T("Chapters"))+__T("\r\n"), __T("")));
else
Infos_Parameters.clear();
for (size_t Pos=0; Pos<Infos_Parameters.size(); Pos++)
Infos->Items->Add(Infos_Parameters.Read(Pos, 0).c_str());
}
//---------------------------------------------------------------------------
void __fastcall TPreferences_CustomF::OKClick(TObject *Sender)
{
ListeChange(NULL);
EditedCustom.Save();
}
//---------------------------------------------------------------------------
int TPreferences_CustomF::Run(const Ztring &Name)
{
EditedCustom.Load(Prefs->BaseFolder+Prefs->FolderNames[Prefs_Custom]+__T("\\")+Name+__T(".csv"));
ListeChange(NULL);
return ShowModal();
}
//---------------------------------------------------------------------------
void __fastcall TPreferences_CustomF::InfosChange(TObject *Sender)
{
AnsiString S1=Memo->Text;
AnsiString S2=AnsiString(__T("%"))+Infos->Text+("%");
S1.Insert(S2, Memo->SelStart+1);
Memo->Text=S1;
}
//---------------------------------------------------------------------------
void __fastcall TPreferences_CustomF::FormResize(TObject *Sender)
{
Infos->Top=ClientHeight-Infos->Height;
Repeat->Top=Infos->Top;
Memo->Width=ClientWidth-Memo->Left;
Memo->Height=Infos->Top-Memo->Top;
OK->Left=ClientWidth-OK->Width;
Cancel->Left=OK->Left-Cancel->Width;
Help->Left=ClientWidth-75;
Help->Top=ClientHeight-Help->Height;
}
//---------------------------------------------------------------------------
void __fastcall TPreferences_CustomF::HelpClick(TObject *Sender)
{
TForm* Form=new TForm(this);
Form->Caption="Help on Custom text";
Form->Width=600;
Form->Height=300;
Form->BorderIcons<<biSystemMenu;
TMemo* Memo=new TMemo(Form);
Memo->Parent=Form;
Memo->Width=Form->ClientWidth;
Memo->Height=Form->ClientHeight;
Memo->Text= "Availiable scripting methods :\r\n"
"- %A% : inserts the tag A.\r\n"
"- [A %B% C %D%] : inserts \"A %B% C %D%\" if tag B (the first tag) is available. If not, inserts nothing\r\n"
"- $if(%A%,B,C) : inserts B if tag A is availbale. If not, inserts C.\r\n"
"\r\n"
"Sometimes, there are reserved characters.\r\n"
"You can replace x with \\x\r\n"
"Known reserved character : \\\, \\[, \\], \\, (comma), \\;, \\(; \\)\r\n"
"\r\n"
"Known parameters are :\r\n";
Memo->Text=Memo->Text+MediaInfoNameSpace::MediaInfo::Option_Static(__T("Info_Parameters_CSV")).c_str();
Form->ShowModal();
}
//***************************************************************************
// C++
//***************************************************************************
#endif //MEDIAINFOGUI_PREFS_NO
|