|
|
@@ -311,6 +311,7 @@ type
|
|
|
procedure btDelAutoResponseClick(Sender: TObject);
|
|
|
procedure btAddAutoResponseClick(Sender: TObject);
|
|
|
procedure btModiAutoResponseClick(Sender: TObject);
|
|
|
+ procedure pnlClientClick(Sender: TObject);
|
|
|
private
|
|
|
FModifyWebPanel: Boolean;
|
|
|
FPageIndex: Integer;
|
|
|
@@ -375,6 +376,8 @@ type
|
|
|
|
|
|
var
|
|
|
OptionsForm: TOptionsForm;
|
|
|
+
|
|
|
+ {$INCLUDE ..\LXTalk.inc}
|
|
|
implementation
|
|
|
|
|
|
uses MainFrm, TalkingFrm, AddWebTabFrm, WebTabAcountsFrm, OptionFormController,
|
|
|
@@ -597,7 +600,10 @@ begin
|
|
|
|
|
|
FModifyWebPanel := False;
|
|
|
|
|
|
-
|
|
|
+ {$IFDEF LBQST}
|
|
|
+ LVOptions.Items.Delete(12);
|
|
|
+ LVOptions.Items.Delete(10);
|
|
|
+ {$ENDIF}
|
|
|
end;
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
@@ -619,7 +625,13 @@ procedure TOptionsForm.LVOptionsChange(Sender: TObject; Item: TListItem;
|
|
|
Change: TItemChange);
|
|
|
begin
|
|
|
lbOptionIndex.Caption := ' ' + Item.Caption;
|
|
|
- if LVOptions.ItemIndex >=0 then PageControl.ActivePageIndex := LVOptions.ItemIndex;
|
|
|
+ if LVOptions.ItemIndex >=0 then
|
|
|
+ begin
|
|
|
+ if LVOptions.ItemIndex = 10 then
|
|
|
+ PageControl.ActivePageIndex := 11
|
|
|
+ else
|
|
|
+ PageControl.ActivePageIndex := LVOptions.ItemIndex;
|
|
|
+ end;
|
|
|
end;
|
|
|
//------------------------------------------------------------------------------
|
|
|
procedure TOptionsForm.lvWebTabsChange(Sender: TObject; Item: TListItem;
|
|
|
@@ -649,6 +661,11 @@ end;
|
|
|
|
|
|
|
|
|
|
|
|
+procedure TOptionsForm.pnlClientClick(Sender: TObject);
|
|
|
+begin
|
|
|
+
|
|
|
+end;
|
|
|
+
|
|
|
//------------------------------------------------------------------------------
|
|
|
procedure TOptionsForm.SetWebTabButtonState;
|
|
|
var
|
|
|
@@ -1234,6 +1251,9 @@ var
|
|
|
WebTabAcount1, WebTabAcount2: TWebTabAcount;
|
|
|
WebPanel, WebPanel1: TWebPanel;
|
|
|
begin
|
|
|
+ {$IFDEF LBQST}
|
|
|
+ Exit;
|
|
|
+ {$ENDIF}
|
|
|
if FModifyWebPanel then
|
|
|
begin
|
|
|
with MainForm do
|
|
|
@@ -2392,6 +2412,9 @@ procedure TOptionsForm.SetSysMsgInterfaceSet;
|
|
|
var iLoop:Integer;
|
|
|
SysMsgInterface:TSysMsgInterface;
|
|
|
begin
|
|
|
+ {$IFDEF LBQST}
|
|
|
+ Exit;
|
|
|
+ {$ENDIF}
|
|
|
for iLoop := 0 to lvSysMsgInterface.Items.Count - 1 do
|
|
|
begin
|
|
|
SysMsgInterface:=lvSysMsgInterface.Items[iLoop].data;
|