aboutsummaryrefslogtreecommitdiff
path: root/Source/toolbarunit.pas
blob: c479260a58c4c597985f6e3b52bb47d80385ad07 (plain)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
unit toolbarunit;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  ComCtrls, ToolWin, Buttons, ExtCtrls, StdCtrls, ImgList,
  SendKeys, Filez;

type
  Ttoolbar = class(TForm)
    bar: TStatusBar;
    sd: TScanDir;
    Panel3: TPanel;
    PageControl1: TPageControl;
    TabSheet1: TTabSheet;
    TabSheet2: TTabSheet;
    Panel2: TPanel;
    LVTools: TListView;
    m1: TMemo;
    Panel1: TPanel;
    LVFilters: TListView;
    procedure FormCreate(Sender: TObject);
    procedure LVFiltersCustomDrawItem(Sender: TCustomListView;
      Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
    procedure LVFiltersChange(Sender: TObject; Item: TListItem;
      Change: TItemChange);
    procedure LVFiltersSelectItem(Sender: TObject; Item: TListItem;
      Selected: Boolean);
    procedure LVToolsSelectItem(Sender: TObject; Item: TListItem;
      Selected: Boolean);
    procedure sdHandleFile(const SearchRec: TSearchRec;
      const FullPath: String);
  private
    { Private declarations }
    SendKey: TSendKey;
  public
    { Public declarations }
  end;

var
  toolbar: Ttoolbar;

implementation

uses
  mainunit, strz;

{$R *.DFM}

procedure Ttoolbar.sdHandleFile(const SearchRec: TSearchRec;
  const FullPath: String);
begin
  if ExtractFileExt(UpperCase(FullPath))<>'.8BF' then Exit;

  with LVFilters.Items.Add do begin
    Caption := ExtractFileName(FullPath);
    Caption := Copy(Caption, 1, Length(Caption)-4);
    Data := Pointer(-1);
  end;
end;

procedure Ttoolbar.FormCreate(Sender: TObject);
var
  i: Integer;
begin
  // Load tools
  if FileExists(main.FSFolder+'\toolbar.txt') then begin
    m1.Lines.LoadFromFile(main.FSFolder+'\toolbar.txt');
    if m1.Lines.Count>0 then
      for i:=0 to m1.Lines.Count-1 do begin
        with LVTools.Items.Add do begin
          Caption := ExtractWord(1, m1.Lines[i], [' ']);
          Data := Pointer(i);
        end;
      end;
  end;

  // Load plugins
  if main.Plugins.Names.Count>0 then
    for i:=0 to main.Plugins.Names.Count-1 do begin
      with LVFilters.Items.Add do begin
        Caption := main.Plugins.Names[i];
        SubItems.Add(main.Plugins.Info(i));
        Data := Pointer(i);
      end;
    end;

  // Load photoshop-filters
  sd.Scan(main.FSFolder+'\Filters');

  SendKey := TSendKey.Create(Self);
  Show;
end;

const
  it: TListItem = nil;

procedure Ttoolbar.LVFiltersChange(Sender: TObject; Item: TListItem;
  Change: TItemChange);
begin
  if Item.Selected then
    it := item;
  if Item.ListView.Selected=nil then it:=nil;
end;

procedure Ttoolbar.LVFiltersCustomDrawItem(Sender: TCustomListView;
  Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
var
  Title: array[0..255] of Char;
  s: String;
  h: THandle;
begin
  if (it=nil) or (Item.Caption='') then Exit;
  if it.Caption=item.Caption then begin
    Sleep(50); // wait for pd window to get focus
    h := GetForegroundWindow;
    if GetWindowText(h, Title, SizeOf(Title))>0 then begin
      s := StrPas(@Title);
      if Pos(' - ', S)>0 then begin
        Delete(S, Pos(' - ', S), 255);
        if Pos('*', S)>0 then Delete(S, Pos('*', S), 255);
//        main.Post(Item.Caption+' -> '+S);
        if Item.ListView=LVFilters then
          main.SendReturnValues('obj pd-'+S+'=msg 10 10 '+Item.Caption+';')
        else begin
          SendKey.Delay := 100;
          SendKey.TitleText := S;
          SendKey.Keys := '{^1}'+Item.Caption;
          SendKey.execute;
        end;
        Item.ListView.Selected := nil;
      end;
    end;
  end;
end;

procedure Ttoolbar.LVFiltersSelectItem(Sender: TObject; Item: TListItem;
  Selected: Boolean);
var
  i: Longint;
  S: String;
begin
  i := Longint(Item.Data);
  if i=-1 then bar.SimpleText := Item.Caption+': Photoshop-filter'
  else begin
    S := main.Plugins.Info(i);
    if S='' then
      bar.SimpleText := Item.Caption+': <no info available>'
    else
      bar.SimpleText := Item.Caption+': '+S;
  end;
end;

procedure Ttoolbar.LVToolsSelectItem(Sender: TObject; Item: TListItem;
  Selected: Boolean);
var
  S: String;
  i: Integer;
begin
  i := Integer(Item.Data);
  if (i>=0) and (i<m1.Lines.Count) then begin
    S := m1.Lines[i];
    if Pos(' ', S)>0 then Delete(S, 1, Pos(' ', S));
    bar.SimpleText := S;
  end;
end;

end.