diff --git a/components/datetimectrls/design/datetimectrls.res b/components/datetimectrls/design/datetimectrls.res index c1c9517a42..c6db6bdd2b 100644 Binary files a/components/datetimectrls/design/datetimectrls.res and b/components/datetimectrls/design/datetimectrls.res differ diff --git a/components/datetimectrls/pictures/TDateTimePicker.png b/components/datetimectrls/pictures/TDateTimePicker.png index ac82df407e..6ac9362b85 100644 Binary files a/components/datetimectrls/pictures/TDateTimePicker.png and b/components/datetimectrls/pictures/TDateTimePicker.png differ diff --git a/components/datetimectrls/pictures/TDateTimePicker_150.png b/components/datetimectrls/pictures/TDateTimePicker_150.png index 333102c181..96f5feea5e 100644 Binary files a/components/datetimectrls/pictures/TDateTimePicker_150.png and b/components/datetimectrls/pictures/TDateTimePicker_150.png differ diff --git a/components/datetimectrls/pictures/TDateTimePicker_200.png b/components/datetimectrls/pictures/TDateTimePicker_200.png index ec7ef0feb8..df024488fc 100644 Binary files a/components/datetimectrls/pictures/TDateTimePicker_200.png and b/components/datetimectrls/pictures/TDateTimePicker_200.png differ diff --git a/components/ideintf/graphicpropedit.lfm b/components/ideintf/graphicpropedit.lfm index ac4ba85434..d06fa226c8 100644 --- a/components/ideintf/graphicpropedit.lfm +++ b/components/ideintf/graphicpropedit.lfm @@ -9,26 +9,26 @@ object GraphicPropertyEditorForm: TGraphicPropertyEditorForm ClientWidth = 436 Constraints.MinHeight = 180 Constraints.MinWidth = 200 + Position = poScreenCenter + LCLVersion = '3.99.0.0' OnClose = FormClose OnCreate = FormCreate - Position = poScreenCenter - LCLVersion = '1.9.0.0' object GroupBox1: TGroupBox Left = 6 - Height = 336 + Height = 337 Top = 6 Width = 424 Align = alClient BorderSpacing.Around = 6 Caption = 'Picture' - ClientHeight = 309 + ClientHeight = 317 ClientWidth = 420 TabOrder = 0 object ScrollBox: TScrollBox AnchorSideRight.Control = GroupBox1 AnchorSideBottom.Control = GroupBox1 Left = 6 - Height = 297 + Height = 305 Top = 6 Width = 322 HorzScrollBar.Page = 100 @@ -37,7 +37,7 @@ object GraphicPropertyEditorForm: TGraphicPropertyEditorForm VertScrollBar.Tracking = True Align = alClient BorderSpacing.Around = 6 - ClientHeight = 293 + ClientHeight = 301 ClientWidth = 318 ParentShowHint = False ShowHint = True @@ -55,12 +55,12 @@ object GraphicPropertyEditorForm: TGraphicPropertyEditorForm end object LoadSaveBtnPanel: TPanel Left = 334 - Height = 309 + Height = 317 Top = 0 Width = 86 Align = alRight BevelOuter = bvNone - ClientHeight = 309 + ClientHeight = 317 ClientWidth = 86 TabOrder = 1 object LoadButton: TButton @@ -142,8 +142,8 @@ object GraphicPropertyEditorForm: TGraphicPropertyEditorForm end object OkCancelButtonPanel: TButtonPanel Left = 6 - Height = 27 - Top = 348 + Height = 26 + Top = 349 Width = 424 OKButton.Name = 'OKButton' OKButton.DefaultCaption = True @@ -158,51 +158,51 @@ object GraphicPropertyEditorForm: TGraphicPropertyEditorForm ShowBevel = False end object OpenDialog: TOpenPictureDialog - left = 138 - top = 182 + Left = 138 + Top = 182 end object SaveDialog: TSavePictureDialog - left = 186 - top = 182 + Left = 186 + Top = 182 end object ActionList: TActionList - left = 355 - top = 244 + Left = 355 + Top = 244 object CopyAction: TEditCopy Category = 'Edit' Caption = '&Copy' Hint = 'Copy' + ShortCut = 16451 OnExecute = CopyActionExecute OnUpdate = CopyActionUpdate - ShortCut = 16451 end object PasteAction: TEditPaste Category = 'Edit' Caption = '&Paste' Hint = 'Paste' + ShortCut = 16470 OnExecute = PasteActionExecute OnUpdate = PasteActionUpdate - ShortCut = 16470 end object FileOpenAction: TAction Category = 'File' Caption = 'Load' - OnExecute = FileOpenActionExecute ShortCut = 16463 + OnExecute = FileOpenActionExecute end object FileSaveAction: TAction Category = 'File' Caption = 'Save' + ShortCut = 16467 OnExecute = FileSaveActionExecute OnUpdate = FileSaveActionUpdate - ShortCut = 16467 end object ClearAction: TEditDelete Category = 'Edit' Caption = 'Clear' Hint = 'Delete' - OnExecute = ClearActionExecute ShortCut = 46 + OnExecute = ClearActionExecute end end end diff --git a/components/ideintf/graphicpropedit.pas b/components/ideintf/graphicpropedit.pas index 6c8052ac89..29e9cf4ceb 100644 --- a/components/ideintf/graphicpropedit.pas +++ b/components/ideintf/graphicpropedit.pas @@ -74,6 +74,8 @@ type property Graphic: TGraphic read GetGraphic write SetGraphic; end; + TGraphicPropertyEditorFormClass = class of TGraphicPropertyEditorForm; + implementation {$R *.lfm} diff --git a/components/ideintf/graphpropedits.pas b/components/ideintf/graphpropedits.pas index 9a0b546a2e..05864dea6d 100644 --- a/components/ideintf/graphpropedits.pas +++ b/components/ideintf/graphpropedits.pas @@ -30,6 +30,8 @@ type TPixmap, TIcon, etc.). } TGraphicPropertyEditor = class(TClassPropertyEditor) + protected + class function GetEditorFormClass: TGraphicPropertyEditorFormClass; virtual; public procedure Edit; override; function GetAttributes: TPropertyAttributes; override; @@ -175,7 +177,7 @@ var FreeGraphic: Boolean; begin AGraphic := TGraphic(GetObjectValue(TGraphic)); - TheDialog := TGraphicPropertyEditorForm.Create(nil); + TheDialog := GetEditorFormClass.Create(nil); FreeGraphic:=false; try TheDialog.CaptionDetail := GetComponent(0).GetNamePath + '.' + GetName(); @@ -225,6 +227,12 @@ begin Result := [paDialog, paRevertable, paReadOnly]; end; +class function TGraphicPropertyEditor.GetEditorFormClass: TGraphicPropertyEditorFormClass; +begin + Result := TGraphicPropertyEditorForm; +end; + + { TPicturePropertyEditor } procedure TPicturePropertyEditor.Edit; @@ -241,7 +249,7 @@ var Picture: TPicture; begin Picture := TPicture(GetObjectValue(TPicture)); - TheDialog := TGraphicPropertyEditorForm.Create(nil); + TheDialog := GetEditorFormClass.Create(nil); try TheDialog.CaptionDetail := GetComponent(0).GetNamePath + '.' + GetName(); if (Picture.Graphic <> nil) then @@ -280,7 +288,7 @@ var ABitmap: TBitmap; begin ABitmap := TBitmap(GetObjectValue(TBitmap)); - TheDialog := TGraphicPropertyEditorForm.Create(nil); + TheDialog := GetEditorFormClass.Create(nil); try TheDialog.CaptionDetail := GetComponent(0).GetNamePath + '.' + GetName(); if not ABitmap.Empty then diff --git a/components/ideintf/imagelisteditor.pp b/components/ideintf/imagelisteditor.pp index ae47277dd9..60702079a3 100644 --- a/components/ideintf/imagelisteditor.pp +++ b/components/ideintf/imagelisteditor.pp @@ -109,21 +109,21 @@ type function GetGlyphInfo(const aItemIndex: Integer): TGlyphInfo; procedure RefreshItemHeight; procedure FreeGlyphInfos; - procedure InternalAddImageToList(const Picture: TPicture; AddType: TAddType); procedure RecreatePreviewImages(const aForce: Boolean = False); - procedure UpdatePreviewImage; procedure UpdateImagesGroupBoxWidth; procedure UpdateImagesGroupBoxWidthQueue({%H-}Data: PtrInt); class function ResolutionToString(const ARes: TCustomImageListResolution): string; procedure PasteFromClipboardAndAdd; protected procedure DoDestroy; override; + procedure InternalAddImageToList(const Picture: TPicture; AddType: TAddType); + procedure UpdatePreviewImage; public procedure LoadFromImageList(AImageList: TImageList); procedure SaveToImageList; - procedure AddImageToList(const FileName: String; AddType: TAddType); procedure AddSlicedImagesToList(const FileName: String); + property Modified: Boolean read FModified write FModified; end; //Editor call by Lazarus with 1 verbe only diff --git a/components/printers/images/tpagesetupdialog.png b/components/printers/images/tpagesetupdialog.png index 9fa2edbc6c..602f772e68 100644 Binary files a/components/printers/images/tpagesetupdialog.png and b/components/printers/images/tpagesetupdialog.png differ diff --git a/components/printers/images/tpagesetupdialog_150.png b/components/printers/images/tpagesetupdialog_150.png index e939240050..ae0d9e6f12 100644 Binary files a/components/printers/images/tpagesetupdialog_150.png and b/components/printers/images/tpagesetupdialog_150.png differ diff --git a/components/printers/images/tpagesetupdialog_200.png b/components/printers/images/tpagesetupdialog_200.png index 0206ca0833..763cfadfc3 100644 Binary files a/components/printers/images/tpagesetupdialog_200.png and b/components/printers/images/tpagesetupdialog_200.png differ diff --git a/components/printers/images/tprintdialog.png b/components/printers/images/tprintdialog.png index 6b27a8461c..f0914945ea 100644 Binary files a/components/printers/images/tprintdialog.png and b/components/printers/images/tprintdialog.png differ diff --git a/components/printers/images/tprintdialog_150.png b/components/printers/images/tprintdialog_150.png index fa0d7b6588..ccef4330ce 100644 Binary files a/components/printers/images/tprintdialog_150.png and b/components/printers/images/tprintdialog_150.png differ diff --git a/components/printers/images/tprintdialog_200.png b/components/printers/images/tprintdialog_200.png index 821b1f3574..797a803fa6 100644 Binary files a/components/printers/images/tprintdialog_200.png and b/components/printers/images/tprintdialog_200.png differ diff --git a/components/printers/images/tprintersetupdialog.png b/components/printers/images/tprintersetupdialog.png index dd07080a20..7d34a139b2 100644 Binary files a/components/printers/images/tprintersetupdialog.png and b/components/printers/images/tprintersetupdialog.png differ diff --git a/components/printers/images/tprintersetupdialog_150.png b/components/printers/images/tprintersetupdialog_150.png index e854811a00..d2c4ed84db 100644 Binary files a/components/printers/images/tprintersetupdialog_150.png and b/components/printers/images/tprintersetupdialog_150.png differ diff --git a/components/printers/images/tprintersetupdialog_200.png b/components/printers/images/tprintersetupdialog_200.png index 73cd669e5a..8aea98942b 100644 Binary files a/components/printers/images/tprintersetupdialog_200.png and b/components/printers/images/tprintersetupdialog_200.png differ diff --git a/components/printers/printersdlgs.res b/components/printers/printersdlgs.res index e719b5a702..8411c178bb 100644 Binary files a/components/printers/printersdlgs.res and b/components/printers/printersdlgs.res differ diff --git a/images/components/tactionlist.png b/images/components/tactionlist.png index b238444155..95b694c780 100644 Binary files a/images/components/tactionlist.png and b/images/components/tactionlist.png differ diff --git a/images/components/tactionlist_150.png b/images/components/tactionlist_150.png index 3d68d44888..42ba767ec7 100644 Binary files a/images/components/tactionlist_150.png and b/images/components/tactionlist_150.png differ diff --git a/images/components/tactionlist_200.png b/images/components/tactionlist_200.png index b744bfdad5..9b49281b0b 100644 Binary files a/images/components/tactionlist_200.png and b/images/components/tactionlist_200.png differ diff --git a/images/components/tapplicationproperties.png b/images/components/tapplicationproperties.png index ff43b2a101..3a8cc5158b 100644 Binary files a/images/components/tapplicationproperties.png and b/images/components/tapplicationproperties.png differ diff --git a/images/components/tapplicationproperties_150.png b/images/components/tapplicationproperties_150.png index 12c92e9e83..b5354dea69 100644 Binary files a/images/components/tapplicationproperties_150.png and b/images/components/tapplicationproperties_150.png differ diff --git a/images/components/tapplicationproperties_200.png b/images/components/tapplicationproperties_200.png index 465fa8d941..984a7a9b61 100644 Binary files a/images/components/tapplicationproperties_200.png and b/images/components/tapplicationproperties_200.png differ diff --git a/images/components/tbevel.png b/images/components/tbevel.png index 8d4757de99..855a4b38da 100644 Binary files a/images/components/tbevel.png and b/images/components/tbevel.png differ diff --git a/images/components/tbevel_150.png b/images/components/tbevel_150.png index 6450eb04d8..422821e10d 100644 Binary files a/images/components/tbevel_150.png and b/images/components/tbevel_150.png differ diff --git a/images/components/tbevel_200.png b/images/components/tbevel_200.png index 399ef6df37..c445c39e6f 100644 Binary files a/images/components/tbevel_200.png and b/images/components/tbevel_200.png differ diff --git a/images/components/tbitbtn.png b/images/components/tbitbtn.png index 2153ba3791..ce76c4c294 100644 Binary files a/images/components/tbitbtn.png and b/images/components/tbitbtn.png differ diff --git a/images/components/tbitbtn_150.png b/images/components/tbitbtn_150.png index 391b87c432..b506454b21 100644 Binary files a/images/components/tbitbtn_150.png and b/images/components/tbitbtn_150.png differ diff --git a/images/components/tbitbtn_200.png b/images/components/tbitbtn_200.png index c6a25481f0..4c3f01cd2e 100644 Binary files a/images/components/tbitbtn_200.png and b/images/components/tbitbtn_200.png differ diff --git a/images/components/tbutton.png b/images/components/tbutton.png index 81cab9ba3c..021d43557b 100644 Binary files a/images/components/tbutton.png and b/images/components/tbutton.png differ diff --git a/images/components/tbutton_150.png b/images/components/tbutton_150.png index ef22dc7ccc..d47749501c 100644 Binary files a/images/components/tbutton_150.png and b/images/components/tbutton_150.png differ diff --git a/images/components/tbutton_200.png b/images/components/tbutton_200.png index 099406c265..3662d2aa98 100644 Binary files a/images/components/tbutton_200.png and b/images/components/tbutton_200.png differ diff --git a/images/components/tcalculatordialog.png b/images/components/tcalculatordialog.png index 79c29bcd18..435ce65826 100644 Binary files a/images/components/tcalculatordialog.png and b/images/components/tcalculatordialog.png differ diff --git a/images/components/tcalculatordialog_150.png b/images/components/tcalculatordialog_150.png index 86660e113e..57ba412b5f 100644 Binary files a/images/components/tcalculatordialog_150.png and b/images/components/tcalculatordialog_150.png differ diff --git a/images/components/tcalculatordialog_200.png b/images/components/tcalculatordialog_200.png index 102580a0e7..760e6e7273 100644 Binary files a/images/components/tcalculatordialog_200.png and b/images/components/tcalculatordialog_200.png differ diff --git a/images/components/tcalendardialog.png b/images/components/tcalendardialog.png index 657cf7dde4..a54fda0a73 100644 Binary files a/images/components/tcalendardialog.png and b/images/components/tcalendardialog.png differ diff --git a/images/components/tcalendardialog_150.png b/images/components/tcalendardialog_150.png index 8ca43ea7d3..38da6626ee 100644 Binary files a/images/components/tcalendardialog_150.png and b/images/components/tcalendardialog_150.png differ diff --git a/images/components/tcalendardialog_200.png b/images/components/tcalendardialog_200.png index 956beb8d99..e9f0fe3115 100644 Binary files a/images/components/tcalendardialog_200.png and b/images/components/tcalendardialog_200.png differ diff --git a/images/components/tcheckbox.png b/images/components/tcheckbox.png index 0e2d8b3138..830b771f7e 100644 Binary files a/images/components/tcheckbox.png and b/images/components/tcheckbox.png differ diff --git a/images/components/tcheckbox_150.png b/images/components/tcheckbox_150.png index 95d9c4df0e..3483f95b9e 100644 Binary files a/images/components/tcheckbox_150.png and b/images/components/tcheckbox_150.png differ diff --git a/images/components/tcheckbox_200.png b/images/components/tcheckbox_200.png index e7d8534cc9..b6a281b457 100644 Binary files a/images/components/tcheckbox_200.png and b/images/components/tcheckbox_200.png differ diff --git a/images/components/tcheckgroup.png b/images/components/tcheckgroup.png index b92d57a6ef..3508f79d83 100644 Binary files a/images/components/tcheckgroup.png and b/images/components/tcheckgroup.png differ diff --git a/images/components/tcheckgroup_150.png b/images/components/tcheckgroup_150.png index 11e9449a18..318cfbab86 100644 Binary files a/images/components/tcheckgroup_150.png and b/images/components/tcheckgroup_150.png differ diff --git a/images/components/tcheckgroup_200.png b/images/components/tcheckgroup_200.png index f16e99fba9..561b6608d4 100644 Binary files a/images/components/tcheckgroup_200.png and b/images/components/tcheckgroup_200.png differ diff --git a/images/components/tchecklistbox.png b/images/components/tchecklistbox.png index bdaa4bf178..02ac144ff1 100644 Binary files a/images/components/tchecklistbox.png and b/images/components/tchecklistbox.png differ diff --git a/images/components/tchecklistbox_150.png b/images/components/tchecklistbox_150.png index a3cbf5139a..da3e03d669 100644 Binary files a/images/components/tchecklistbox_150.png and b/images/components/tchecklistbox_150.png differ diff --git a/images/components/tchecklistbox_200.png b/images/components/tchecklistbox_200.png index 3683902a33..7ce4cb91c2 100644 Binary files a/images/components/tchecklistbox_200.png and b/images/components/tchecklistbox_200.png differ diff --git a/images/components/tcolorbox.png b/images/components/tcolorbox.png index 82fd212cd1..af0dbf7962 100644 Binary files a/images/components/tcolorbox.png and b/images/components/tcolorbox.png differ diff --git a/images/components/tcolorbox_150.png b/images/components/tcolorbox_150.png index 0fbda3dc39..3a4a2d8df9 100644 Binary files a/images/components/tcolorbox_150.png and b/images/components/tcolorbox_150.png differ diff --git a/images/components/tcolorbox_200.png b/images/components/tcolorbox_200.png index 5ebc218c4d..a124080cc5 100644 Binary files a/images/components/tcolorbox_200.png and b/images/components/tcolorbox_200.png differ diff --git a/images/components/tcolordialog.png b/images/components/tcolordialog.png index 9c46c466af..f8c7a26b3b 100644 Binary files a/images/components/tcolordialog.png and b/images/components/tcolordialog.png differ diff --git a/images/components/tcolordialog_150.png b/images/components/tcolordialog_150.png index 5dfcd505af..29d5067944 100644 Binary files a/images/components/tcolordialog_150.png and b/images/components/tcolordialog_150.png differ diff --git a/images/components/tcolordialog_200.png b/images/components/tcolordialog_200.png index 91e391d708..18b5e10d96 100644 Binary files a/images/components/tcolordialog_200.png and b/images/components/tcolordialog_200.png differ diff --git a/images/components/tcolorlistbox.png b/images/components/tcolorlistbox.png index 0436cb225a..974d630106 100644 Binary files a/images/components/tcolorlistbox.png and b/images/components/tcolorlistbox.png differ diff --git a/images/components/tcolorlistbox_150.png b/images/components/tcolorlistbox_150.png index 654fa6de99..ee81086834 100644 Binary files a/images/components/tcolorlistbox_150.png and b/images/components/tcolorlistbox_150.png differ diff --git a/images/components/tcolorlistbox_200.png b/images/components/tcolorlistbox_200.png index 30a3570dae..b0573533c2 100644 Binary files a/images/components/tcolorlistbox_200.png and b/images/components/tcolorlistbox_200.png differ diff --git a/images/components/tcombobox.png b/images/components/tcombobox.png index 8e32f505cd..4c895709d3 100644 Binary files a/images/components/tcombobox.png and b/images/components/tcombobox.png differ diff --git a/images/components/tcombobox_150.png b/images/components/tcombobox_150.png index ece038e481..271d78e103 100644 Binary files a/images/components/tcombobox_150.png and b/images/components/tcombobox_150.png differ diff --git a/images/components/tcombobox_200.png b/images/components/tcombobox_200.png index 2bafc0b3d2..308f85cde9 100644 Binary files a/images/components/tcombobox_200.png and b/images/components/tcombobox_200.png differ diff --git a/images/components/tcontrolbar.png b/images/components/tcontrolbar.png index 101ea7a41b..1960ec673b 100644 Binary files a/images/components/tcontrolbar.png and b/images/components/tcontrolbar.png differ diff --git a/images/components/tcontrolbar_150.png b/images/components/tcontrolbar_150.png index ddc75312ff..17f0d176dd 100644 Binary files a/images/components/tcontrolbar_150.png and b/images/components/tcontrolbar_150.png differ diff --git a/images/components/tcontrolbar_200.png b/images/components/tcontrolbar_200.png index 7e24f96d07..5c58b9604b 100644 Binary files a/images/components/tcontrolbar_200.png and b/images/components/tcontrolbar_200.png differ diff --git a/images/components/tcoolbar.png b/images/components/tcoolbar.png index 585efc426b..290cda98b2 100644 Binary files a/images/components/tcoolbar.png and b/images/components/tcoolbar.png differ diff --git a/images/components/tcoolbar_150.png b/images/components/tcoolbar_150.png index 1446af48a3..2388af371a 100644 Binary files a/images/components/tcoolbar_150.png and b/images/components/tcoolbar_150.png differ diff --git a/images/components/tcoolbar_200.png b/images/components/tcoolbar_200.png index d57a59b3f9..dfdd7de66c 100644 Binary files a/images/components/tcoolbar_200.png and b/images/components/tcoolbar_200.png differ diff --git a/images/components/tdrawgrid.png b/images/components/tdrawgrid.png index 6213044b80..9910eea0ba 100644 Binary files a/images/components/tdrawgrid.png and b/images/components/tdrawgrid.png differ diff --git a/images/components/tdrawgrid_150.png b/images/components/tdrawgrid_150.png index e5f62d69ef..4b0b350714 100644 Binary files a/images/components/tdrawgrid_150.png and b/images/components/tdrawgrid_150.png differ diff --git a/images/components/tdrawgrid_200.png b/images/components/tdrawgrid_200.png index 306799516f..13d0bf234a 100644 Binary files a/images/components/tdrawgrid_200.png and b/images/components/tdrawgrid_200.png differ diff --git a/images/components/tedit.png b/images/components/tedit.png index 01bd47183d..435cb20f71 100644 Binary files a/images/components/tedit.png and b/images/components/tedit.png differ diff --git a/images/components/tedit_150.png b/images/components/tedit_150.png index 3193c625d9..8efe36dc7f 100644 Binary files a/images/components/tedit_150.png and b/images/components/tedit_150.png differ diff --git a/images/components/tedit_200.png b/images/components/tedit_200.png index 0fa6d31319..966dcb7a3d 100644 Binary files a/images/components/tedit_200.png and b/images/components/tedit_200.png differ diff --git a/images/components/tfinddialog.png b/images/components/tfinddialog.png index 22f340cc93..15644ab3c6 100644 Binary files a/images/components/tfinddialog.png and b/images/components/tfinddialog.png differ diff --git a/images/components/tfinddialog_150.png b/images/components/tfinddialog_150.png index c06055fd1b..25eb34f69b 100644 Binary files a/images/components/tfinddialog_150.png and b/images/components/tfinddialog_150.png differ diff --git a/images/components/tfinddialog_200.png b/images/components/tfinddialog_200.png index 202dffcc29..b596b0a4fb 100644 Binary files a/images/components/tfinddialog_200.png and b/images/components/tfinddialog_200.png differ diff --git a/images/components/tflowpanel.png b/images/components/tflowpanel.png index 233bba6cff..d4620ad0bf 100644 Binary files a/images/components/tflowpanel.png and b/images/components/tflowpanel.png differ diff --git a/images/components/tflowpanel_150.png b/images/components/tflowpanel_150.png index b24be97a30..8d794d6e7b 100644 Binary files a/images/components/tflowpanel_150.png and b/images/components/tflowpanel_150.png differ diff --git a/images/components/tflowpanel_200.png b/images/components/tflowpanel_200.png index 84f99ffb02..8de8f76fd9 100644 Binary files a/images/components/tflowpanel_200.png and b/images/components/tflowpanel_200.png differ diff --git a/images/components/tfontdialog.png b/images/components/tfontdialog.png index 2e0c3265e6..776f59c7cb 100644 Binary files a/images/components/tfontdialog.png and b/images/components/tfontdialog.png differ diff --git a/images/components/tfontdialog_150.png b/images/components/tfontdialog_150.png index c7f65b3ec1..5fb0b4eab1 100644 Binary files a/images/components/tfontdialog_150.png and b/images/components/tfontdialog_150.png differ diff --git a/images/components/tfontdialog_200.png b/images/components/tfontdialog_200.png index 5d9058b09f..ad5b702a1f 100644 Binary files a/images/components/tfontdialog_200.png and b/images/components/tfontdialog_200.png differ diff --git a/images/components/tframe.png b/images/components/tframe.png index 49d923ba63..c4aefbdb6d 100644 Binary files a/images/components/tframe.png and b/images/components/tframe.png differ diff --git a/images/components/tframe_150.png b/images/components/tframe_150.png index cf87a7493f..1e600a00de 100644 Binary files a/images/components/tframe_150.png and b/images/components/tframe_150.png differ diff --git a/images/components/tframe_200.png b/images/components/tframe_200.png index bfaea4f6b4..fef9abe278 100644 Binary files a/images/components/tframe_200.png and b/images/components/tframe_200.png differ diff --git a/images/components/tgroupbox.png b/images/components/tgroupbox.png index 4c6c840566..95bb93b1a3 100644 Binary files a/images/components/tgroupbox.png and b/images/components/tgroupbox.png differ diff --git a/images/components/tgroupbox_150.png b/images/components/tgroupbox_150.png index 9e45e3358c..0e81b7b49a 100644 Binary files a/images/components/tgroupbox_150.png and b/images/components/tgroupbox_150.png differ diff --git a/images/components/tgroupbox_200.png b/images/components/tgroupbox_200.png index 8d72690ce9..5551fa7951 100644 Binary files a/images/components/tgroupbox_200.png and b/images/components/tgroupbox_200.png differ diff --git a/images/components/theadercontrol.png b/images/components/theadercontrol.png index 28f1b207dd..614f6332f2 100644 Binary files a/images/components/theadercontrol.png and b/images/components/theadercontrol.png differ diff --git a/images/components/theadercontrol_150.png b/images/components/theadercontrol_150.png index 0c688d945e..743c1ed790 100644 Binary files a/images/components/theadercontrol_150.png and b/images/components/theadercontrol_150.png differ diff --git a/images/components/theadercontrol_200.png b/images/components/theadercontrol_200.png index 2ada661fc4..087dc4f1fe 100644 Binary files a/images/components/theadercontrol_200.png and b/images/components/theadercontrol_200.png differ diff --git a/images/components/timage.png b/images/components/timage.png index 175188d683..227a2b05b1 100644 Binary files a/images/components/timage.png and b/images/components/timage.png differ diff --git a/images/components/timage_150.png b/images/components/timage_150.png index 4e24932a26..7f5152ea70 100644 Binary files a/images/components/timage_150.png and b/images/components/timage_150.png differ diff --git a/images/components/timage_200.png b/images/components/timage_200.png index cb8daf5eb1..ddbf7ae0eb 100644 Binary files a/images/components/timage_200.png and b/images/components/timage_200.png differ diff --git a/images/components/timagelist.png b/images/components/timagelist.png index 37768b573d..24f55d9938 100644 Binary files a/images/components/timagelist.png and b/images/components/timagelist.png differ diff --git a/images/components/timagelist_150.png b/images/components/timagelist_150.png index 43549fc0e1..a1b6bb76dd 100644 Binary files a/images/components/timagelist_150.png and b/images/components/timagelist_150.png differ diff --git a/images/components/timagelist_200.png b/images/components/timagelist_200.png index 9cae7561cb..f00aff70d0 100644 Binary files a/images/components/timagelist_200.png and b/images/components/timagelist_200.png differ diff --git a/images/components/tlabel.png b/images/components/tlabel.png index 63e1c3f995..f1f3cd9128 100644 Binary files a/images/components/tlabel.png and b/images/components/tlabel.png differ diff --git a/images/components/tlabel_150.png b/images/components/tlabel_150.png index a5541ab9d0..7e25bd11cf 100644 Binary files a/images/components/tlabel_150.png and b/images/components/tlabel_150.png differ diff --git a/images/components/tlabel_200.png b/images/components/tlabel_200.png index eb412d7470..8369e44ce1 100644 Binary files a/images/components/tlabel_200.png and b/images/components/tlabel_200.png differ diff --git a/images/components/tlabelededit.png b/images/components/tlabelededit.png index 6f427f02a9..9e5785d6e4 100644 Binary files a/images/components/tlabelededit.png and b/images/components/tlabelededit.png differ diff --git a/images/components/tlabelededit_150.png b/images/components/tlabelededit_150.png index b337f3291f..e10948b725 100644 Binary files a/images/components/tlabelededit_150.png and b/images/components/tlabelededit_150.png differ diff --git a/images/components/tlabelededit_200.png b/images/components/tlabelededit_200.png index 2f4d7eae06..495d500810 100644 Binary files a/images/components/tlabelededit_200.png and b/images/components/tlabelededit_200.png differ diff --git a/images/components/tlistbox.png b/images/components/tlistbox.png index 4f7968a90b..070f7da355 100644 Binary files a/images/components/tlistbox.png and b/images/components/tlistbox.png differ diff --git a/images/components/tlistbox_150.png b/images/components/tlistbox_150.png index 57580eadeb..4b821f2f33 100644 Binary files a/images/components/tlistbox_150.png and b/images/components/tlistbox_150.png differ diff --git a/images/components/tlistbox_200.png b/images/components/tlistbox_200.png index e1ae87df00..42afbfe03d 100644 Binary files a/images/components/tlistbox_200.png and b/images/components/tlistbox_200.png differ diff --git a/images/components/tlistview.png b/images/components/tlistview.png index 1e9e0ab61b..2f2caa763d 100644 Binary files a/images/components/tlistview.png and b/images/components/tlistview.png differ diff --git a/images/components/tlistview_150.png b/images/components/tlistview_150.png index 1b7a9ad17f..c0910a9129 100644 Binary files a/images/components/tlistview_150.png and b/images/components/tlistview_150.png differ diff --git a/images/components/tlistview_200.png b/images/components/tlistview_200.png index dfb2b479dc..56143f8978 100644 Binary files a/images/components/tlistview_200.png and b/images/components/tlistview_200.png differ diff --git a/images/components/tmainmenu.png b/images/components/tmainmenu.png index df12896743..fb2d7306b4 100644 Binary files a/images/components/tmainmenu.png and b/images/components/tmainmenu.png differ diff --git a/images/components/tmainmenu_150.png b/images/components/tmainmenu_150.png index 11f6e6e6bd..762bafeb7b 100644 Binary files a/images/components/tmainmenu_150.png and b/images/components/tmainmenu_150.png differ diff --git a/images/components/tmainmenu_200.png b/images/components/tmainmenu_200.png index 6d6b8922af..3a5ce8d0a6 100644 Binary files a/images/components/tmainmenu_200.png and b/images/components/tmainmenu_200.png differ diff --git a/images/components/tmaskedit.png b/images/components/tmaskedit.png index 80896b64c5..10c1263091 100644 Binary files a/images/components/tmaskedit.png and b/images/components/tmaskedit.png differ diff --git a/images/components/tmaskedit_150.png b/images/components/tmaskedit_150.png index b1dd47251a..93f8fea6d3 100644 Binary files a/images/components/tmaskedit_150.png and b/images/components/tmaskedit_150.png differ diff --git a/images/components/tmaskedit_200.png b/images/components/tmaskedit_200.png index 8dc16c5f96..3fe856c8d9 100644 Binary files a/images/components/tmaskedit_200.png and b/images/components/tmaskedit_200.png differ diff --git a/images/components/tmemo.png b/images/components/tmemo.png index f696a1785f..5f54e860b4 100644 Binary files a/images/components/tmemo.png and b/images/components/tmemo.png differ diff --git a/images/components/tmemo_150.png b/images/components/tmemo_150.png index a6e422f337..1ed243236a 100644 Binary files a/images/components/tmemo_150.png and b/images/components/tmemo_150.png differ diff --git a/images/components/tmemo_200.png b/images/components/tmemo_200.png index 63ea4fbb56..9d5563c955 100644 Binary files a/images/components/tmemo_200.png and b/images/components/tmemo_200.png differ diff --git a/images/components/tnotebook.png b/images/components/tnotebook.png index 04bec1d755..674b01fa8f 100644 Binary files a/images/components/tnotebook.png and b/images/components/tnotebook.png differ diff --git a/images/components/tnotebook_150.png b/images/components/tnotebook_150.png index 6af02c0ba5..81efed2104 100644 Binary files a/images/components/tnotebook_150.png and b/images/components/tnotebook_150.png differ diff --git a/images/components/tnotebook_200.png b/images/components/tnotebook_200.png index c9f5c2746d..dfa6235b26 100644 Binary files a/images/components/tnotebook_200.png and b/images/components/tnotebook_200.png differ diff --git a/images/components/topendialog.png b/images/components/topendialog.png index 4ff9c70df8..0e6b46930c 100644 Binary files a/images/components/topendialog.png and b/images/components/topendialog.png differ diff --git a/images/components/topendialog_150.png b/images/components/topendialog_150.png index b354d2aaa9..562c47a152 100644 Binary files a/images/components/topendialog_150.png and b/images/components/topendialog_150.png differ diff --git a/images/components/topendialog_200.png b/images/components/topendialog_200.png index d0b0e930fe..e4a3efe94d 100644 Binary files a/images/components/topendialog_200.png and b/images/components/topendialog_200.png differ diff --git a/images/components/topenpicturedialog.png b/images/components/topenpicturedialog.png index ff445e984c..46f9f92c61 100644 Binary files a/images/components/topenpicturedialog.png and b/images/components/topenpicturedialog.png differ diff --git a/images/components/topenpicturedialog_150.png b/images/components/topenpicturedialog_150.png index e5accc7d15..fb9d8724fa 100644 Binary files a/images/components/topenpicturedialog_150.png and b/images/components/topenpicturedialog_150.png differ diff --git a/images/components/topenpicturedialog_200.png b/images/components/topenpicturedialog_200.png index 1a417c591e..9e481a3c2c 100644 Binary files a/images/components/topenpicturedialog_200.png and b/images/components/topenpicturedialog_200.png differ diff --git a/images/components/tpagecontrol.png b/images/components/tpagecontrol.png index 5e8ed7b0df..352665a86f 100644 Binary files a/images/components/tpagecontrol.png and b/images/components/tpagecontrol.png differ diff --git a/images/components/tpagecontrol_150.png b/images/components/tpagecontrol_150.png index 9ae103469b..121cc66f8c 100644 Binary files a/images/components/tpagecontrol_150.png and b/images/components/tpagecontrol_150.png differ diff --git a/images/components/tpagecontrol_200.png b/images/components/tpagecontrol_200.png index a64062ea58..2c3fbf43b5 100644 Binary files a/images/components/tpagecontrol_200.png and b/images/components/tpagecontrol_200.png differ diff --git a/images/components/tpaintbox.png b/images/components/tpaintbox.png index 3cfbb81633..c1cbe76250 100644 Binary files a/images/components/tpaintbox.png and b/images/components/tpaintbox.png differ diff --git a/images/components/tpaintbox_150.png b/images/components/tpaintbox_150.png index b35ad5b582..372134cf12 100644 Binary files a/images/components/tpaintbox_150.png and b/images/components/tpaintbox_150.png differ diff --git a/images/components/tpaintbox_200.png b/images/components/tpaintbox_200.png index 1922315571..d762b817bd 100644 Binary files a/images/components/tpaintbox_200.png and b/images/components/tpaintbox_200.png differ diff --git a/images/components/tpairsplitter.png b/images/components/tpairsplitter.png index bc40323f18..22e6591f7c 100644 Binary files a/images/components/tpairsplitter.png and b/images/components/tpairsplitter.png differ diff --git a/images/components/tpairsplitter_150.png b/images/components/tpairsplitter_150.png index ebaf7810db..2cba748781 100644 Binary files a/images/components/tpairsplitter_150.png and b/images/components/tpairsplitter_150.png differ diff --git a/images/components/tpairsplitter_200.png b/images/components/tpairsplitter_200.png index d256ec1f5d..097a9e7bb8 100644 Binary files a/images/components/tpairsplitter_200.png and b/images/components/tpairsplitter_200.png differ diff --git a/images/components/tpanel.png b/images/components/tpanel.png index cd9bebaded..9751751c9c 100644 Binary files a/images/components/tpanel.png and b/images/components/tpanel.png differ diff --git a/images/components/tpanel_150.png b/images/components/tpanel_150.png index 5a94f67fe1..5e26e35d45 100644 Binary files a/images/components/tpanel_150.png and b/images/components/tpanel_150.png differ diff --git a/images/components/tpanel_200.png b/images/components/tpanel_200.png index 934ff1c373..6e465bad59 100644 Binary files a/images/components/tpanel_200.png and b/images/components/tpanel_200.png differ diff --git a/images/components/tpopupmenu.png b/images/components/tpopupmenu.png index 69a8ec9fba..da4cc45c38 100644 Binary files a/images/components/tpopupmenu.png and b/images/components/tpopupmenu.png differ diff --git a/images/components/tpopupmenu_150.png b/images/components/tpopupmenu_150.png index 5489ed816b..6bdf364ade 100644 Binary files a/images/components/tpopupmenu_150.png and b/images/components/tpopupmenu_150.png differ diff --git a/images/components/tpopupmenu_200.png b/images/components/tpopupmenu_200.png index 1ebdc803f3..699ecb6ba7 100644 Binary files a/images/components/tpopupmenu_200.png and b/images/components/tpopupmenu_200.png differ diff --git a/images/components/tpopupnotifier.png b/images/components/tpopupnotifier.png index d7f62417fc..af7e828dfd 100644 Binary files a/images/components/tpopupnotifier.png and b/images/components/tpopupnotifier.png differ diff --git a/images/components/tpopupnotifier_150.png b/images/components/tpopupnotifier_150.png index 406d27c113..b232ec3f9b 100644 Binary files a/images/components/tpopupnotifier_150.png and b/images/components/tpopupnotifier_150.png differ diff --git a/images/components/tpopupnotifier_200.png b/images/components/tpopupnotifier_200.png index 6661c2508d..3bc8778c6f 100644 Binary files a/images/components/tpopupnotifier_200.png and b/images/components/tpopupnotifier_200.png differ diff --git a/images/components/tprogressbar.png b/images/components/tprogressbar.png index e64d7e1dc9..e69d5f528b 100644 Binary files a/images/components/tprogressbar.png and b/images/components/tprogressbar.png differ diff --git a/images/components/tprogressbar_150.png b/images/components/tprogressbar_150.png index cb56390506..7c5821e103 100644 Binary files a/images/components/tprogressbar_150.png and b/images/components/tprogressbar_150.png differ diff --git a/images/components/tprogressbar_200.png b/images/components/tprogressbar_200.png index 07e29b79c0..f5ce60bb56 100644 Binary files a/images/components/tprogressbar_200.png and b/images/components/tprogressbar_200.png differ diff --git a/images/components/tradiobutton.png b/images/components/tradiobutton.png index 79a1170706..5ce6723ffb 100644 Binary files a/images/components/tradiobutton.png and b/images/components/tradiobutton.png differ diff --git a/images/components/tradiobutton_150.png b/images/components/tradiobutton_150.png index 9ceca46499..525dbc5396 100644 Binary files a/images/components/tradiobutton_150.png and b/images/components/tradiobutton_150.png differ diff --git a/images/components/tradiobutton_200.png b/images/components/tradiobutton_200.png index c8c23dc510..7a3fc97530 100644 Binary files a/images/components/tradiobutton_200.png and b/images/components/tradiobutton_200.png differ diff --git a/images/components/tradiogroup.png b/images/components/tradiogroup.png index c3bb1376bb..f3a24714b3 100644 Binary files a/images/components/tradiogroup.png and b/images/components/tradiogroup.png differ diff --git a/images/components/tradiogroup_150.png b/images/components/tradiogroup_150.png index bc6b7e50d5..8973183bc1 100644 Binary files a/images/components/tradiogroup_150.png and b/images/components/tradiogroup_150.png differ diff --git a/images/components/tradiogroup_200.png b/images/components/tradiogroup_200.png index f316e8f014..c589e4536d 100644 Binary files a/images/components/tradiogroup_200.png and b/images/components/tradiogroup_200.png differ diff --git a/images/components/treplacedialog.png b/images/components/treplacedialog.png index dafc1c6053..856268c6b4 100644 Binary files a/images/components/treplacedialog.png and b/images/components/treplacedialog.png differ diff --git a/images/components/treplacedialog_150.png b/images/components/treplacedialog_150.png index 805b8a1dee..c8895565c1 100644 Binary files a/images/components/treplacedialog_150.png and b/images/components/treplacedialog_150.png differ diff --git a/images/components/treplacedialog_200.png b/images/components/treplacedialog_200.png index 7e027d9d2d..8890f20421 100644 Binary files a/images/components/treplacedialog_200.png and b/images/components/treplacedialog_200.png differ diff --git a/images/components/tsavedialog.png b/images/components/tsavedialog.png index ffe764606d..5ec53146a4 100644 Binary files a/images/components/tsavedialog.png and b/images/components/tsavedialog.png differ diff --git a/images/components/tsavedialog_150.png b/images/components/tsavedialog_150.png index 6d7200962a..b9bb4a8604 100644 Binary files a/images/components/tsavedialog_150.png and b/images/components/tsavedialog_150.png differ diff --git a/images/components/tsavedialog_200.png b/images/components/tsavedialog_200.png index 3204c96033..9308d25e93 100644 Binary files a/images/components/tsavedialog_200.png and b/images/components/tsavedialog_200.png differ diff --git a/images/components/tsavepicturedialog.png b/images/components/tsavepicturedialog.png index bc05b97fe7..d5246691fa 100644 Binary files a/images/components/tsavepicturedialog.png and b/images/components/tsavepicturedialog.png differ diff --git a/images/components/tsavepicturedialog_150.png b/images/components/tsavepicturedialog_150.png index 67e6037d96..210101960b 100644 Binary files a/images/components/tsavepicturedialog_150.png and b/images/components/tsavepicturedialog_150.png differ diff --git a/images/components/tsavepicturedialog_200.png b/images/components/tsavepicturedialog_200.png index b8cbe8e9e1..e2684ef3e6 100644 Binary files a/images/components/tsavepicturedialog_200.png and b/images/components/tsavepicturedialog_200.png differ diff --git a/images/components/tscrollbar.png b/images/components/tscrollbar.png index f3ff685758..d3f92cfddf 100644 Binary files a/images/components/tscrollbar.png and b/images/components/tscrollbar.png differ diff --git a/images/components/tscrollbar_150.png b/images/components/tscrollbar_150.png index 18b5969b49..eb06df4875 100644 Binary files a/images/components/tscrollbar_150.png and b/images/components/tscrollbar_150.png differ diff --git a/images/components/tscrollbar_200.png b/images/components/tscrollbar_200.png index 353a9e830c..f123a055d7 100644 Binary files a/images/components/tscrollbar_200.png and b/images/components/tscrollbar_200.png differ diff --git a/images/components/tscrollbox.png b/images/components/tscrollbox.png index cc3e1efac8..6f93cd0407 100644 Binary files a/images/components/tscrollbox.png and b/images/components/tscrollbox.png differ diff --git a/images/components/tscrollbox_150.png b/images/components/tscrollbox_150.png index 84df5f301d..4ab3071c6c 100644 Binary files a/images/components/tscrollbox_150.png and b/images/components/tscrollbox_150.png differ diff --git a/images/components/tscrollbox_200.png b/images/components/tscrollbox_200.png index 07dd412a7f..7a7e670246 100644 Binary files a/images/components/tscrollbox_200.png and b/images/components/tscrollbox_200.png differ diff --git a/images/components/tselectdirectorydialog.png b/images/components/tselectdirectorydialog.png index 8a5c5a31f4..6f5fab291a 100644 Binary files a/images/components/tselectdirectorydialog.png and b/images/components/tselectdirectorydialog.png differ diff --git a/images/components/tselectdirectorydialog_150.png b/images/components/tselectdirectorydialog_150.png index dfe0781995..eb5d296d72 100644 Binary files a/images/components/tselectdirectorydialog_150.png and b/images/components/tselectdirectorydialog_150.png differ diff --git a/images/components/tselectdirectorydialog_200.png b/images/components/tselectdirectorydialog_200.png index baa30f6d3c..9c5991407b 100644 Binary files a/images/components/tselectdirectorydialog_200.png and b/images/components/tselectdirectorydialog_200.png differ diff --git a/images/components/tshape.png b/images/components/tshape.png index c13be652dd..aa08eae54a 100644 Binary files a/images/components/tshape.png and b/images/components/tshape.png differ diff --git a/images/components/tshape_150.png b/images/components/tshape_150.png index e5fba62187..3e2466339d 100644 Binary files a/images/components/tshape_150.png and b/images/components/tshape_150.png differ diff --git a/images/components/tshape_200.png b/images/components/tshape_200.png index 62f5cd036c..ab0b774c14 100644 Binary files a/images/components/tshape_200.png and b/images/components/tshape_200.png differ diff --git a/images/components/tspeedbutton.png b/images/components/tspeedbutton.png index 1e08f8ba27..877ef2c86e 100644 Binary files a/images/components/tspeedbutton.png and b/images/components/tspeedbutton.png differ diff --git a/images/components/tspeedbutton_150.png b/images/components/tspeedbutton_150.png index 486422a3bb..8abe71b6be 100644 Binary files a/images/components/tspeedbutton_150.png and b/images/components/tspeedbutton_150.png differ diff --git a/images/components/tspeedbutton_200.png b/images/components/tspeedbutton_200.png index 262f88ed08..13df853aee 100644 Binary files a/images/components/tspeedbutton_200.png and b/images/components/tspeedbutton_200.png differ diff --git a/images/components/tsplitter.png b/images/components/tsplitter.png index 176e4e4be9..b442f2f4c6 100644 Binary files a/images/components/tsplitter.png and b/images/components/tsplitter.png differ diff --git a/images/components/tsplitter_150.png b/images/components/tsplitter_150.png index 26fa824e84..6b3848dae2 100644 Binary files a/images/components/tsplitter_150.png and b/images/components/tsplitter_150.png differ diff --git a/images/components/tsplitter_200.png b/images/components/tsplitter_200.png index 5bbc984496..7f0e60e947 100644 Binary files a/images/components/tsplitter_200.png and b/images/components/tsplitter_200.png differ diff --git a/images/components/tstatictext.png b/images/components/tstatictext.png index e597eff4a5..7fa515474f 100644 Binary files a/images/components/tstatictext.png and b/images/components/tstatictext.png differ diff --git a/images/components/tstatictext_150.png b/images/components/tstatictext_150.png index 6b486af126..3f30f1a6ec 100644 Binary files a/images/components/tstatictext_150.png and b/images/components/tstatictext_150.png differ diff --git a/images/components/tstatictext_200.png b/images/components/tstatictext_200.png index dafc80e36c..b260b18ac9 100644 Binary files a/images/components/tstatictext_200.png and b/images/components/tstatictext_200.png differ diff --git a/images/components/tstatusbar.png b/images/components/tstatusbar.png index 1abde8f576..79a5d66706 100644 Binary files a/images/components/tstatusbar.png and b/images/components/tstatusbar.png differ diff --git a/images/components/tstatusbar_150.png b/images/components/tstatusbar_150.png index 88124884a6..92d6b30770 100644 Binary files a/images/components/tstatusbar_150.png and b/images/components/tstatusbar_150.png differ diff --git a/images/components/tstatusbar_200.png b/images/components/tstatusbar_200.png index ded7e6c455..be9e4fc8bc 100644 Binary files a/images/components/tstatusbar_200.png and b/images/components/tstatusbar_200.png differ diff --git a/images/components/tstringgrid.png b/images/components/tstringgrid.png index bf0fe2f8f3..1516b6510e 100644 Binary files a/images/components/tstringgrid.png and b/images/components/tstringgrid.png differ diff --git a/images/components/tstringgrid_150.png b/images/components/tstringgrid_150.png index 382a6e6dff..75265db706 100644 Binary files a/images/components/tstringgrid_150.png and b/images/components/tstringgrid_150.png differ diff --git a/images/components/tstringgrid_200.png b/images/components/tstringgrid_200.png index a35504a3e1..8fd378b791 100644 Binary files a/images/components/tstringgrid_200.png and b/images/components/tstringgrid_200.png differ diff --git a/images/components/ttabcontrol.png b/images/components/ttabcontrol.png index a237b30845..c8599c802a 100644 Binary files a/images/components/ttabcontrol.png and b/images/components/ttabcontrol.png differ diff --git a/images/components/ttabcontrol_150.png b/images/components/ttabcontrol_150.png index 3909960ee1..7510d90e29 100644 Binary files a/images/components/ttabcontrol_150.png and b/images/components/ttabcontrol_150.png differ diff --git a/images/components/ttabcontrol_200.png b/images/components/ttabcontrol_200.png index 3e41895c7a..1e96617797 100644 Binary files a/images/components/ttabcontrol_200.png and b/images/components/ttabcontrol_200.png differ diff --git a/images/components/ttaskdialog.png b/images/components/ttaskdialog.png index 9372460074..e509b75393 100644 Binary files a/images/components/ttaskdialog.png and b/images/components/ttaskdialog.png differ diff --git a/images/components/ttaskdialog_150.png b/images/components/ttaskdialog_150.png index d5bbc4f217..5d6cebc086 100644 Binary files a/images/components/ttaskdialog_150.png and b/images/components/ttaskdialog_150.png differ diff --git a/images/components/ttaskdialog_200.png b/images/components/ttaskdialog_200.png index 1ff7b26d3a..efb661cb92 100644 Binary files a/images/components/ttaskdialog_200.png and b/images/components/ttaskdialog_200.png differ diff --git a/images/components/ttogglebox.png b/images/components/ttogglebox.png index 03b6f4a0ab..749ca8f1f3 100644 Binary files a/images/components/ttogglebox.png and b/images/components/ttogglebox.png differ diff --git a/images/components/ttogglebox_150.png b/images/components/ttogglebox_150.png index b0218ab07f..9790f1fb2c 100644 Binary files a/images/components/ttogglebox_150.png and b/images/components/ttogglebox_150.png differ diff --git a/images/components/ttogglebox_200.png b/images/components/ttogglebox_200.png index aab1d75524..34720b161e 100644 Binary files a/images/components/ttogglebox_200.png and b/images/components/ttogglebox_200.png differ diff --git a/images/components/ttoolbar.png b/images/components/ttoolbar.png index a93a4fad3f..cf7f8c0bca 100644 Binary files a/images/components/ttoolbar.png and b/images/components/ttoolbar.png differ diff --git a/images/components/ttoolbar_150.png b/images/components/ttoolbar_150.png index d753d219b4..dd56f5dda5 100644 Binary files a/images/components/ttoolbar_150.png and b/images/components/ttoolbar_150.png differ diff --git a/images/components/ttoolbar_200.png b/images/components/ttoolbar_200.png index fbe17c100e..85f0fda8af 100644 Binary files a/images/components/ttoolbar_200.png and b/images/components/ttoolbar_200.png differ diff --git a/images/components/ttrackbar.png b/images/components/ttrackbar.png index f86e5d70ff..8062213a6a 100644 Binary files a/images/components/ttrackbar.png and b/images/components/ttrackbar.png differ diff --git a/images/components/ttrackbar_150.png b/images/components/ttrackbar_150.png index d964b1cd34..7a806d4dc8 100644 Binary files a/images/components/ttrackbar_150.png and b/images/components/ttrackbar_150.png differ diff --git a/images/components/ttrackbar_200.png b/images/components/ttrackbar_200.png index 8a99891bdc..975d97879c 100644 Binary files a/images/components/ttrackbar_200.png and b/images/components/ttrackbar_200.png differ diff --git a/images/components/ttrayicon.png b/images/components/ttrayicon.png index bb0847e877..4842b0b7f5 100644 Binary files a/images/components/ttrayicon.png and b/images/components/ttrayicon.png differ diff --git a/images/components/ttrayicon_150.png b/images/components/ttrayicon_150.png index 0f76fee630..194299f57f 100644 Binary files a/images/components/ttrayicon_150.png and b/images/components/ttrayicon_150.png differ diff --git a/images/components/ttrayicon_200.png b/images/components/ttrayicon_200.png index 2a8bf20aec..f5de63d3f8 100644 Binary files a/images/components/ttrayicon_200.png and b/images/components/ttrayicon_200.png differ diff --git a/images/components/ttreeview.png b/images/components/ttreeview.png index d49c2e1952..6a05c4440a 100644 Binary files a/images/components/ttreeview.png and b/images/components/ttreeview.png differ diff --git a/images/components/ttreeview_150.png b/images/components/ttreeview_150.png index eca4f231f4..6e7e48b6d9 100644 Binary files a/images/components/ttreeview_150.png and b/images/components/ttreeview_150.png differ diff --git a/images/components/ttreeview_200.png b/images/components/ttreeview_200.png index a6cde7f23d..c991256398 100644 Binary files a/images/components/ttreeview_200.png and b/images/components/ttreeview_200.png differ diff --git a/images/components/tupdown.png b/images/components/tupdown.png index 78942e1a34..cc8633a2c9 100644 Binary files a/images/components/tupdown.png and b/images/components/tupdown.png differ diff --git a/images/components/tupdown_150.png b/images/components/tupdown_150.png index 5b47ff782a..7f74484345 100644 Binary files a/images/components/tupdown_150.png and b/images/components/tupdown_150.png differ diff --git a/images/components/tupdown_200.png b/images/components/tupdown_200.png index c2073678ce..33ff4c812a 100644 Binary files a/images/components/tupdown_200.png and b/images/components/tupdown_200.png differ diff --git a/images/components/tvaluelisteditor.png b/images/components/tvaluelisteditor.png index 7b0153919a..b8ced8f726 100644 Binary files a/images/components/tvaluelisteditor.png and b/images/components/tvaluelisteditor.png differ diff --git a/images/components/tvaluelisteditor_150.png b/images/components/tvaluelisteditor_150.png index 101d7dc352..2acea144cf 100644 Binary files a/images/components/tvaluelisteditor_150.png and b/images/components/tvaluelisteditor_150.png differ diff --git a/images/components/tvaluelisteditor_200.png b/images/components/tvaluelisteditor_200.png index 05f9847be0..aa9b4de974 100644 Binary files a/images/components/tvaluelisteditor_200.png and b/images/components/tvaluelisteditor_200.png differ diff --git a/images/components_images.res b/images/components_images.res index d919871bfa..88eff36de2 100644 Binary files a/images/components_images.res and b/images/components_images.res differ diff --git a/images/general_purpose/metadata.xml b/images/general_purpose/metadata.xml index 168f892642..9a74018e2a 100644 --- a/images/general_purpose/metadata.xml +++ b/images/general_purpose/metadata.xml @@ -7548,7 +7548,7 @@ remove - + clear delete @@ -7556,7 +7556,7 @@ remove - + clear delete @@ -7564,7 +7564,7 @@ remove - + clear delete @@ -7572,7 +7572,7 @@ remove - + clear delete @@ -7580,7 +7580,7 @@ remove - + clear delete @@ -7588,7 +7588,7 @@ remove - + clear delete @@ -14674,7 +14674,7 @@ home - + export import @@ -14682,7 +14682,7 @@ save - + export import @@ -14690,7 +14690,7 @@ save - + export import @@ -14698,7 +14698,7 @@ save - + export import @@ -14706,7 +14706,7 @@ save - + export import @@ -14714,7 +14714,7 @@ save - + export import @@ -19510,32 +19510,32 @@ replace - + replace - + replace - + replace - + replace - + replace - + replace