| 183 |
GroupBox5: TGroupBox; |
GroupBox5: TGroupBox; |
| 184 |
BrowserMaxLabel: TLabel; |
BrowserMaxLabel: TLabel; |
| 185 |
BrowserMaxCombo: TComboBox; |
BrowserMaxCombo: TComboBox; |
| 186 |
|
GroupBox17: TGroupBox; |
| 187 |
|
SelectIntervalLabel: TLabel; |
| 188 |
|
SelectIntervalEdit: TEdit; |
| 189 |
|
Label4: TLabel; |
| 190 |
|
Label6: TLabel; |
| 191 |
procedure FormCreate(Sender: TObject); |
procedure FormCreate(Sender: TObject); |
| 192 |
procedure FormDestroy(Sender: TObject); |
procedure FormDestroy(Sender: TObject); |
| 193 |
procedure ApplyButtonClick(Sender: TObject); |
procedure ApplyButtonClick(Sender: TObject); |
| 774 |
ThreadListIconCheckBox.Checked := GikoSys.Setting.ListIconVisible; |
ThreadListIconCheckBox.Checked := GikoSys.Setting.ListIconVisible; |
| 775 |
CreationTimeLogsCheckBox.Checked := GikoSys.Setting.CreationTimeLogs; |
CreationTimeLogsCheckBox.Checked := GikoSys.Setting.CreationTimeLogs; |
| 776 |
FutureThreadCheckBox.Checked := GikoSys.Setting.FutureThread; |
FutureThreadCheckBox.Checked := GikoSys.Setting.FutureThread; |
| 777 |
|
SelectIntervalEdit.Text := IntToStr(GikoSys.Setting.SelectInterval); |
| 778 |
|
|
| 779 |
//スレッド一覧でLogのあるスレッドのみスレ作成日を表示するか |
//スレッド一覧でLogのあるスレッドのみスレ作成日を表示するか |
| 780 |
//ExistLogCheckBox.Checked := |
//ExistLogCheckBox.Checked := |
| 781 |
|
|
| 987 |
//スレッド一覧更新アイコン |
//スレッド一覧更新アイコン |
| 988 |
GikoSys.Setting.ListIconVisible := ThreadListIconCheckBox.Checked; |
GikoSys.Setting.ListIconVisible := ThreadListIconCheckBox.Checked; |
| 989 |
GikoSys.Setting.CreationTimeLogs := CreationTimeLogsCheckBox.Checked; |
GikoSys.Setting.CreationTimeLogs := CreationTimeLogsCheckBox.Checked; |
| 990 |
GikoSys.Setting.FutureThread := FutureThreadCheckBox.Checked; |
GikoSys.Setting.FutureThread := FutureThreadCheckBox.Checked; |
| 991 |
|
if StrToIntDef(SelectIntervalEdit.Text, 110) > 55 then |
| 992 |
|
GikoSys.Setting.SelectInterval := StrToIntDef(SelectIntervalEdit.Text, 110) |
| 993 |
|
else |
| 994 |
|
GikoSys.Setting.SelectInterval := 55; |
| 995 |
|
|
| 996 |
//書き込み時マシン時間使用設定 |
//書き込み時マシン時間使用設定 |
| 997 |
GikoSys.Setting.UseMachineTime := PostTimeCheckBox.Checked; |
GikoSys.Setting.UseMachineTime := PostTimeCheckBox.Checked; |
| 998 |
if GikoSys.IsNumeric(PostTimeEdit.Text) then |
if GikoSys.IsNumeric(PostTimeEdit.Text) then |