Changeset 204 for trunk/Forms


Ignore:
Timestamp:
May 6, 2019, 2:49:33 PM (6 years ago)
Author:
chronos
Message:
  • Modified: Use fgl unit instead of TemplateGenerics.
  • Modified: Update czech translation.
  • Modified: Updated packages.
Location:
trunk/Forms
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormAcronyms.pas

    r184 r204  
    77uses
    88  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
    9   Menus, ActnList, UListViewSort, UAcronym, LazUTF8, SpecializedList;
     9  Menus, ActnList, UListViewSort, UAcronym, LazUTF8, fgl;
    1010
    1111type
     
    5252    FAcronyms: TAcronyms;
    5353    MeaningCount: Integer;
    54     procedure FilterList(List: TListObject);
     54    procedure FilterList(List: TFPGObjectList<TObject>);
    5555    procedure SetAcronyms(AValue: TAcronyms);
    5656    procedure UpdateAcronymsList;
     
    296296end;
    297297
    298 procedure TFormAcronyms.FilterList(List: TListObject);
     298procedure TFormAcronyms.FilterList(List: TFPGObjectList<TObject>);
    299299var
    300300  I: Integer;
  • trunk/Forms/UFormCategories.lfm

    r203 r204  
    4949    Width = 784
    5050    Align = alBottom
    51     Caption = 'ToolBar1'
    5251    Images = Core.ImageList1
    5352    ParentShowHint = False
  • trunk/Forms/UFormCategories.lrj

    r203 r204  
    33{"hash":346165,"name":"tformcategories.listviewcategories.columns[0].caption","sourcebytes":[78,97,109,101],"value":"Name"},
    44{"hash":107848676,"name":"tformcategories.listviewcategories.columns[1].caption","sourcebytes":[85,115,101,100,32,99,111,117,110,116],"value":"Used count"},
    5 {"hash":106991073,"name":"tformcategories.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},
    65{"hash":18340,"name":"tformcategories.aadd.caption","sourcebytes":[65,100,100],"value":"Add"},
    76{"hash":93079237,"name":"tformcategories.aremove.caption","sourcebytes":[82,101,109,111,118,101],"value":"Remove"},
  • trunk/Forms/UFormCheck.pas

    r199 r204  
    66
    77uses
    8   Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
     8  Classes, SysUtils, LazFileUtils, Forms, Controls, Graphics, Dialogs, StdCtrls,
    99  ExtCtrls, ComCtrls, Menus, ActnList, UAcronym, URegistry, Registry, UCommon,
    1010  fgl;
     
    394394  State := stNone;
    395395  StartIndex := 0;
     396  Acronym := '';
    396397  repeat
    397398    if State = stAcronymUsage then begin
  • trunk/Forms/UFormImportFormats.lfm

    r203 r204  
    4343    Width = 739
    4444    Align = alBottom
    45     Caption = 'ToolBar1'
    4645    Images = Core.ImageList1
    4746    ParentFont = False
  • trunk/Forms/UFormImportFormats.lrj

    r203 r204  
    22{"hash":153070547,"name":"tformimportformats.caption","sourcebytes":[73,109,112,111,114,116,32,102,111,114,109,97,116,115],"value":"Import formats"},
    33{"hash":346165,"name":"tformimportformats.listview1.columns[0].caption","sourcebytes":[78,97,109,101],"value":"Name"},
    4 {"hash":106991073,"name":"tformimportformats.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},
    54{"hash":18340,"name":"tformimportformats.aadd.caption","sourcebytes":[65,100,100],"value":"Add"},
    65{"hash":93079237,"name":"tformimportformats.aremove.caption","sourcebytes":[82,101,109,111,118,101],"value":"Remove"},
  • trunk/Forms/UFormImportSources.pas

    r174 r204  
    77uses
    88  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
    9   ActnList, Menus, UAcronym, UJobProgressView, UListViewSort, SpecializedList,
    10   LazUTF8;
     9  ActnList, Menus, UAcronym, UJobProgressView, UListViewSort, LazUTF8, fgl;
    1110
    1211type
     
    6362  private
    6463    procedure ProcessImportJob(Job: TJob);
    65     procedure FilterList(List: TListObject);
     64    procedure FilterList(List: TFPGObjectList<TObject>);
    6665  public
    6766    ImportSources: TImportSources;
     
    297296end;
    298297
    299 procedure TFormImportSources.FilterList(List: TListObject);
     298procedure TFormImportSources.FilterList(List: TFPGObjectList<TObject>);
    300299var
    301300  I: Integer;
  • trunk/Forms/UFormMain.pas

    r200 r204  
    99  ComCtrls, StdCtrls, ExtCtrls, ActnList, Grids, UAcronym, UPersistentForm,
    1010  URegistry, ULastOpenedList, UListViewSort, UJobProgressView,
    11   Registry, SpecializedList, LazUTF8, LazFileUtils;
     11  Registry, fgl, LazUTF8, LazFileUtils;
    1212
    1313type
     
    151151    function FilterCell(Text1, Text2: string): Boolean;
    152152    procedure ProcessImportsJob(Job: TJob);
    153     procedure FilterList(List: TListObject);
     153    procedure FilterList(List: TFPGObjectList<TObject>);
    154154    procedure OpenRecentClick(Sender: TObject);
    155155    procedure SetToolbarHints;
     
    655655end;
    656656
    657 procedure TFormMain.FilterList(List: TListObject);
     657procedure TFormMain.FilterList(List: TFPGObjectList<TObject>);
    658658var
    659659  I: Integer;
Note: See TracChangeset for help on using the changeset viewer.