-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathoptions_dialog.ui
More file actions
1133 lines (1133 loc) · 41.4 KB
/
options_dialog.ui
File metadata and controls
1133 lines (1133 loc) · 41.4 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>optionsdialogue</class>
<widget class="QWidget" name="optionsdialogue">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>450</width>
<height>415</height>
</rect>
</property>
<property name="contextMenuPolicy">
<enum>Qt::NoContextMenu</enum>
</property>
<property name="windowTitle">
<string>Settings</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QTabWidget" name="settings_tabs">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="gameplay_tab">
<attribute name="title">
<string>Gameplay</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QScrollArea" name="scroll">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="form_layout_widget">
<property name="geometry">
<rect>
<x>0</x>
<y>-585</y>
<width>394</width>
<height>902</height>
</rect>
</property>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="theme_label">
<property name="toolTip">
<string>Sets the theme used in-game. If the new theme changes the lobby's look as well, you'll need to reload the Lobby for the changes to take effect, such as by joining a server and leaving it.</string>
</property>
<property name="text">
<string>Theme:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="theme_combobox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="subtheme_label">
<property name="toolTip">
<string>Sets a 'subtheme', which will stack on top of the current theme and replace anything it can. Keep it at 'server' to let the server decide. Keep it at 'default' to keep it unchanging.</string>
</property>
<property name="text">
<string>Subtheme:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="subtheme_combobox"/>
</item>
<item row="2" column="1">
<widget class="QPushButton" name="theme_reload_button">
<property name="toolTip">
<string>Refresh the theme and update all of the ui elements to match.</string>
</property>
<property name="text">
<string>Reload Theme</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QPushButton" name="theme_folder_button">
<property name="toolTip">
<string>Open the theme folder of the currently selected theme.</string>
</property>
<property name="text">
<string>Open Theme Folder</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="theme_scaling_factor_lbl">
<property name="toolTip">
<string><html><head/><body><p>The factor by which to scale the size of the UI</p></body></html></string>
</property>
<property name="text">
<string>UI Scaling Factor</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QSpinBox" name="theme_scaling_factor_sb">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>8</number>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="animated_theme_lbl">
<property name="toolTip">
<string>If ticked, themes will be allowed to have animated elements.</string>
</property>
<property name="text">
<string>Animated Theme:</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QCheckBox" name="animated_theme_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QFrame" name="theme_log_divider">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QLabel" name="stay_time_lbl">
<property name="toolTip">
<string>Minimum amount of time (in miliseconds) an IC message must stay on screen before the next IC message is shown, acting as a 'queue'. Set to 0 to disable this behavior.</string>
</property>
<property name="text">
<string>Text Stay Time:</string>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QSpinBox" name="stay_time_spinbox">
<property name="suffix">
<string> ms</string>
</property>
<property name="maximum">
<number>10000</number>
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QLabel" name="instant_objection_lbl">
<property name="text">
<string>Instant Objection:</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QCheckBox" name="instant_objection_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QLabel" name="text_crawl_lbl">
<property name="toolTip">
<string>Amount of time (in miliseconds) spent on each letter when the in-character text is being displayed.</string>
</property>
<property name="text">
<string>Text crawl:</string>
</property>
</widget>
</item>
<item row="9" column="1">
<widget class="QSpinBox" name="text_crawl_spinbox">
<property name="suffix">
<string> ms</string>
</property>
<property name="maximum">
<number>500</number>
</property>
</widget>
</item>
<item row="10" column="0">
<widget class="QLabel" name="chat_ratelimit_lbl">
<property name="text">
<string>Chat Rate Limit:</string>
</property>
<property name="textFormat">
<enum>Qt::PlainText</enum>
</property>
</widget>
</item>
<item row="10" column="1">
<widget class="QSpinBox" name="chat_ratelimit_spinbox">
<property name="suffix">
<string> ms</string>
</property>
<property name="maximum">
<number>5000</number>
</property>
</widget>
</item>
<item row="11" column="1">
<widget class="QFrame" name="log_names_divider">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item>
<item row="12" column="0">
<widget class="QLabel" name="username_lbl">
<property name="toolTip">
<string>Your OOC name will be automatically set to this value when you join a server.</string>
</property>
<property name="text">
<string>Default username:</string>
</property>
</widget>
</item>
<item row="12" column="1">
<widget class="QLineEdit" name="username_textbox">
<property name="maxLength">
<number>30</number>
</property>
</widget>
</item>
<item row="13" column="0">
<widget class="QLabel" name="showname_lbl">
<property name="toolTip">
<string>Gives the default value for the in-game 'Custom shownames' tickbox, which in turn determines whether the client should display custom in-character names.</string>
</property>
<property name="text">
<string>Custom shownames:</string>
</property>
</widget>
</item>
<item row="13" column="1">
<widget class="QCheckBox" name="showname_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="14" column="0">
<widget class="QLabel" name="default_showname_lbl">
<property name="toolTip">
<string>Your showname will be automatically set to this value when you join a server.</string>
</property>
<property name="text">
<string>Default showname:</string>
</property>
</widget>
</item>
<item row="14" column="1">
<widget class="QLineEdit" name="default_showname_textbox"/>
</item>
<item row="15" column="1">
<widget class="QFrame" name="net_divider">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item>
<item row="16" column="0">
<widget class="QLabel" name="ms_lbl">
<property name="toolTip">
<string>Overrides the base URL to retrieve server information from.</string>
</property>
<property name="text">
<string>Alternate Server List:</string>
</property>
</widget>
</item>
<item row="16" column="1">
<widget class="QLineEdit" name="ms_textbox"/>
</item>
<item row="17" column="0">
<widget class="QLabel" name="discord_lbl">
<property name="toolTip">
<string>Allows others on Discord to see what server you are in, what character are you playing, and how long you have been playing for.</string>
</property>
<property name="text">
<string>Discord:</string>
</property>
</widget>
</item>
<item row="17" column="1">
<widget class="QCheckBox" name="discord_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="18" column="0">
<widget class="QLabel" name="language_label">
<property name="toolTip">
<string>Sets the language if you don't want to use your system language.</string>
</property>
<property name="text">
<string>Language:</string>
</property>
</widget>
</item>
<item row="18" column="1">
<widget class="QComboBox" name="language_combobox"/>
</item>
<item row="20" column="0">
<widget class="QLabel" name="shake_lbl">
<property name="toolTip">
<string>Allows screenshaking. Disable this if you have concerns or issues with photosensitivity and/or seizures.</string>
</property>
<property name="text">
<string>Allow Screenshake:</string>
</property>
</widget>
</item>
<item row="20" column="1">
<widget class="QCheckBox" name="shake_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="21" column="0">
<widget class="QLabel" name="effects_lbl">
<property name="toolTip">
<string>Allows screen effects. Disable this if you have concerns or issues with photosensitivity and/or seizures.</string>
</property>
<property name="text">
<string>Allow Effects:</string>
</property>
</widget>
</item>
<item row="21" column="1">
<widget class="QCheckBox" name="effects_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="22" column="0">
<widget class="QLabel" name="framenetwork_lbl">
<property name="toolTip">
<string>Send screen-shaking, flashes and sounds as defined in the char.ini over the network. Only works for servers that support this functionality.</string>
</property>
<property name="text">
<string>Network Frame Effects:</string>
</property>
</widget>
</item>
<item row="22" column="1">
<widget class="QCheckBox" name="framenetwork_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="23" column="0">
<widget class="QLabel" name="colorlog_lbl">
<property name="toolTip">
<string>Use the markup colors in the server IC chatlog.</string>
</property>
<property name="text">
<string>Colors in IC Log:</string>
</property>
</widget>
</item>
<item row="23" column="1">
<widget class="QCheckBox" name="colorlog_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="24" column="0">
<widget class="QLabel" name="stickysounds_lbl">
<property name="toolTip">
<string>Turn this on to prevent the sound dropdown from clearing the sound after playing it.</string>
</property>
<property name="text">
<string>Sticky Sounds:</string>
</property>
</widget>
</item>
<item row="24" column="1">
<widget class="QCheckBox" name="stickysounds_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="25" column="0">
<widget class="QLabel" name="stickyeffects_lbl">
<property name="toolTip">
<string>Turn this on to prevent the effects dropdown from clearing the effect after playing it.</string>
</property>
<property name="text">
<string>Sticky Effects:</string>
</property>
</widget>
</item>
<item row="25" column="1">
<widget class="QCheckBox" name="stickyeffects_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="26" column="0">
<widget class="QLabel" name="stickypres_lbl">
<property name="toolTip">
<string>Turn this on to prevent preanimation checkbox from clearing after playing the emote.</string>
</property>
<property name="text">
<string>Sticky Preanims:</string>
</property>
</widget>
</item>
<item row="26" column="1">
<widget class="QCheckBox" name="stickypres_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="27" column="0">
<widget class="QLabel" name="customchat_lbl">
<property name="toolTip">
<string>Turn this on to allow characters to define their own custom chat box designs.</string>
</property>
<property name="text">
<string>Custom Chatboxes:</string>
</property>
</widget>
</item>
<item row="27" column="1">
<widget class="QCheckBox" name="customchat_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="28" column="0">
<widget class="QLabel" name="sticker_lbl">
<property name="toolTip">
<string>Turn this on to allow characters to define their own stickers (unique images that show up over the chatbox - like avatars or shownames).</string>
</property>
<property name="text">
<string>Stickers:</string>
</property>
</widget>
</item>
<item row="28" column="1">
<widget class="QCheckBox" name="sticker_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="29" column="0">
<widget class="QLabel" name="continuous_lbl">
<property name="toolTip">
<string>Whether or not to resume playing animations from where they left off. Turning off might reduce lag.</string>
</property>
<property name="text">
<string>Continuous Playback:</string>
</property>
</widget>
</item>
<item row="29" column="1">
<widget class="QCheckBox" name="continuous_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="30" column="0">
<widget class="QLabel" name="category_stop_lbl">
<property name="toolTip">
<string>Stop music when double-clicking a category. If this is disabled, use the right-click context menu to stop music.</string>
</property>
<property name="text">
<string>Stop Music w/ Category:</string>
</property>
</widget>
</item>
<item row="30" column="1">
<widget class="QCheckBox" name="category_stop_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="31" column="0">
<widget class="QLabel" name="sfx_on_idle_lbl">
<property name="toolTip">
<string>If the SFX dropdown has an SFX selected, send the custom SFX alongside the message even if Preanim is OFF.</string>
</property>
<property name="text">
<string>Always Send SFX:</string>
</property>
</widget>
</item>
<item row="31" column="1">
<widget class="QCheckBox" name="sfx_on_idle_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="32" column="0">
<widget class="QLabel" name="evidence_double_click_lbl">
<property name="toolTip">
<string>If ticked, Evidence needs a double-click to view rather than a single click.</string>
</property>
<property name="text">
<string>Evidence Double Click:</string>
</property>
</widget>
</item>
<item row="32" column="1">
<widget class="QCheckBox" name="evidence_double_click_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="33" column="0">
<widget class="QLabel" name="slides_lbl">
<property name="toolTip">
<string>If ticked, slide animations will play when requested.</string>
</property>
<property name="text">
<string>Slide Animations:</string>
</property>
</widget>
</item>
<item row="33" column="1">
<widget class="QCheckBox" name="slides_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="19" column="0">
<widget class="QLabel" name="resize_lbl">
<property name="toolTip">
<string><html><head/><body><p>The scaling algorithm to be used when upscaling or downscaling images.</p><p>Automatic: The image will be scaled based on the image's predetermined scaling algorithm.<br/>Pixelated: The image will be scaled using a nearest neighbor algorithm.<br/>Smooth: The image will be scaled using a bilinear algorithm.</p></body></html></string>
</property>
<property name="text">
<string>Image Scaling</string>
</property>
</widget>
</item>
<item row="19" column="1">
<widget class="QComboBox" name="resize_combobox">
<property name="toolTip">
<string><html><head/><body><p>The scaling algorithm to be used when upscaling or downscaling images.</p><p>Automatic: The image will be scaled based on the image's predetermined scaling algorithm.<br/>Pixelated: The image will be scaled using a nearest neighbor algorithm.<br/>Smooth: The image will be scaled using a bilinear algorithm.</p></body></html></string>
</property>
<item>
<property name="text">
<string>Automatic</string>
</property>
</item>
<item>
<property name="text">
<string>Pixelated</string>
</property>
</item>
<item>
<property name="text">
<string>Smooth</string>
</property>
</item>
</widget>
</item>
<item row="34" column="0">
<widget class="QLabel" name="restoreposition_lbl">
<property name="toolTip">
<string>If ticked, some windows restore their last known position where they were closed.</string>
</property>
<property name="text">
<string>Restore Window Position</string>
</property>
</widget>
</item>
<item row="34" column="1">
<widget class="QCheckBox" name="restoreposition_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="35" column="0">
<widget class="QLabel" name="playerlist_format_lbl">
<property name="toolTip">
<string><html><head/><body>Set the format for the player list to use.<br><br>Valid fields are:<br>{id} - Client ID<br>{displayname} - Character display name<br>{character} - Character folder name<br>{username} - Out-of-character name<br>(Note: Some servers may hide out-of-character names.)</body></html></string>
</property>
<property name="text">
<string>Playerlist Format:</string>
</property>
</widget>
</item>
<item row="35" column="1">
<widget class="QLineEdit" name="playerlist_format_edit"/>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="callwords_tab">
<attribute name="title">
<string>Callwords</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_5">
<item>
<widget class="QPlainTextEdit" name="callwords_textbox"/>
</item>
<item>
<widget class="QLabel" name="callwords_explain_lbl">
<property name="text">
<string><html><head/><body><p>Enter as many callwords as you would like. These are case insensitive. Make sure to leave every callword in its own line!<br/><br/>Do not leave a line with a space at the end -- you will be alerted everytime someone uses a space in their messages.</p></body></html></string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="audio_tab">
<attribute name="title">
<string>Audio</string>
</attribute>
<layout class="QFormLayout" name="formLayout_2">
<item row="0" column="0">
<widget class="QLabel" name="audio_device_lbl">
<property name="text">
<string>Audio device:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="audio_device_combobox"/>
</item>
<item row="1" column="0" colspan="2">
<widget class="QFrame" name="audio_volume_divider">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="suppress_audio_lbl">
<property name="toolTip">
<string>How much of the volume to suppress when client is not in focus.</string>
</property>
<property name="text">
<string>Suppress Audio:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="suppress_audio_spinbox">
<property name="suffix">
<string>%</string>
</property>
<property name="maximum">
<number>100</number>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<widget class="QFrame" name="volume_blip_divider">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="bliprate_lbl">
<property name="toolTip">
<string>Sets the delay between playing the blip sounds.</string>
</property>
<property name="text">
<string>Blip rate:</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QSpinBox" name="bliprate_spinbox">
<property name="toolTip">
<string>Play a blip sound \"once per every X symbols\", where X is the blip rate. 0 plays a blip sound only once.</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="blank_blips_lbl">
<property name="toolTip">
<string>If true, the game will play a blip sound even when a space is 'being said'.</string>
</property>
<property name="text">
<string>Blank blips:</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QCheckBox" name="blank_blips_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel" name="loopsfx_lbl">
<property name="toolTip">
<string>If true, the game will allow looping sound effects to play on preanimations.</string>
</property>
<property name="text">
<string>Enable Looping SFX:</string>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QCheckBox" name="loopsfx_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QLabel" name="objectmusic_lbl">
<property name="toolTip">
<string>If true, AO2 will ask the server to stop music when you use 'Objection!'</string>
</property>
<property name="text">
<string>Kill Music On Objection:</string>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QCheckBox" name="objectmusic_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QLabel" name="disablestreams_lbl">
<property name="toolTip">
<string>If true, AO2 will not play any streamed audio and show that streaming is disabled.</string>
</property>
<property name="text">
<string>Music Streaming enabled:</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QCheckBox" name="disablestreams_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="assets_tab">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<attribute name="title">
<string>Assets</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QLabel" name="asset_lbl">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string><html><head/><body><p>Add or remove base folders for use by assets.</p><p><br/>Base folders on the bottom are prioritized over those above them.</p></body></html></string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QListWidget" name="mount_list">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item>
<layout class="QGridLayout" name="mount_buttons_layout">
<item row="2" column="5">
<spacer name="mount_buttons_spacer_2">
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="4">
<widget class="QPushButton" name="mount_down">
<property name="maximumSize">
<size>
<width>40</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>↓</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QPushButton" name="mount_remove">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Remove</string>
</property>
</widget>
</item>
<item row="2" column="2">
<spacer name="mount_buttons_spacer">
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="3">
<widget class="QPushButton" name="mount_up">
<property name="maximumSize">
<size>
<width>40</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>↑</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QPushButton" name="mount_add">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Add...</string>
</property>
</widget>
</item>
<item row="2" column="6">
<widget class="QPushButton" name="mount_clear_cache">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>Clears the lookup cache for assets.
Use this when you have added an asset that takes precedence over another existing asset.</string>
</property>
<property name="text">
<string>Clear Cache</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QWidget" name="logging_tab">
<attribute name="title">
<string>Logging</string>
</attribute>
<layout class="QFormLayout" name="formLayout_3">
<item row="0" column="0">
<widget class="QLabel" name="downwards_lbl">
<property name="toolTip">
<string>If ticked, new messages will appear at the bottom (like the OOC chatlog). The traditional (AO1) behaviour is equivalent to this being unticked.</string>
</property>
<property name="text">
<string>Log goes downwards:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QCheckBox" name="downwards_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="length_lbl">
<property name="toolTip">
<string>The amount of message lines the IC chatlog will keep before deleting older message lines. A value of 0 or below counts as 'infinite'.</string>
</property>
<property name="text">
<string>Log length:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="length_spinbox">
<property name="suffix">
<string> entries</string>
</property>
<property name="maximum">
<number>10000</number>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="log_newline_lbl">
<property name="toolTip">
<string>If ticked, new messages will appear separated, with the message coming on the next line after the name.
When unticked, it displays it as 'name: message'.</string>
</property>
<property name="text">
<string>Log newline:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QCheckBox" name="log_newline_cb">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="log_margin_lbl">
<property name="toolTip">
<string>The distance in pixels between each entry in the IC log.
Default: 0.</string>
</property>
<property name="text">
<string>Log margin:</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QSpinBox" name="log_margin_spinbox">
<property name="suffix">
<string> px</string>
</property>
<property name="maximum">
<number>1000</number>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="log_timestamp_lbl">
<property name="toolTip">
<string>If ticked, log will contain a timestamp in UTC before the name.</string>
</property>
<property name="text">
<string>Log timestamp:</string>