├── @Resources ├── Addons │ └── AudioDeviceCmdlets │ │ └── AudioDeviceCmdlets.dll ├── ImageUnderlay │ ├── ImageUnderlay0.inc │ └── ImageUnderlay1.inc ├── Images │ ├── Boxes.png │ ├── Original.png │ ├── VectorBar.png │ └── menherachan.png ├── Measures │ ├── AudioMeasures.inc │ ├── BarAnalyzer.inc │ ├── RoundAnalyzer.inc │ └── VectorAnalyzer.inc ├── Scripts │ ├── Crafter.ps1 │ └── GetAudioDevices.ps1 ├── UserImages │ ├── 10825696.jpg │ ├── 9nzly4v0hfk61.png │ ├── Patterns-4K-Ultra-HD-Wallpaper-3840x2160.jpg │ ├── alena-aenami.jpg │ ├── nordgirl.png │ ├── pinkgirl.jpg │ ├── starrysky.jpg │ ├── vectorbar.jpg │ ├── wp7309638.jpg │ └── wp7309870.jpg ├── Variables │ ├── Boxes │ │ ├── AudioAnalyzerSettings.inc │ │ ├── Bar.inc │ │ ├── Bar │ │ │ ├── MirrorX.inc │ │ │ ├── MirrorXY.inc │ │ │ ├── MirrorY.inc │ │ │ ├── Normal.inc │ │ │ └── Reflection.inc │ │ ├── Colors.inc │ │ ├── Round.inc │ │ ├── Vector.inc │ │ └── Vector │ │ │ ├── Gradient.inc │ │ │ └── Solid.inc │ ├── Main.inc │ ├── Original │ │ ├── AudioAnalyzerSettings.inc │ │ ├── Bar.inc │ │ ├── Bar │ │ │ ├── MirrorX.inc │ │ │ ├── MirrorXY.inc │ │ │ ├── MirrorY.inc │ │ │ ├── Normal.inc │ │ │ └── Reflection.inc │ │ ├── Colors.inc │ │ ├── Round.inc │ │ ├── Vector.inc │ │ └── Vector │ │ │ ├── Gradient.inc │ │ │ └── Solid.inc │ └── VectorBar │ │ ├── AudioAnalyzerSettings.inc │ │ ├── Bar.inc │ │ ├── Bar │ │ ├── MirrorX.inc │ │ ├── MirrorXY.inc │ │ ├── MirrorY.inc │ │ ├── Normal.inc │ │ └── Reflection.inc │ │ ├── Colors.inc │ │ ├── Round.inc │ │ ├── Vector.inc │ │ └── Vector │ │ ├── Gradient.inc │ │ └── Solid.inc └── Visualizer │ ├── Bar.inc │ ├── Round.inc │ └── Vector.inc ├── ASimpleVisualizer2.ini └── settings ├── ColorPickerUI ├── ColorPickerUI.ini ├── DesktopPicker │ ├── DesktopPicker.ini │ └── crosshair.png ├── Resources │ ├── Images │ │ ├── ColorWheel2.png │ │ ├── arrow.png │ │ ├── checkmark.png │ │ ├── colordropper.png │ │ ├── copy.png │ │ └── trbg.jpg │ └── Scripts │ │ ├── Color.lua │ │ └── ColorPickerUIActivator.lua └── UserVariables.inc ├── categories ├── 0.inc ├── 1.inc ├── 10.inc ├── 2.inc ├── 3.inc ├── 4.inc ├── 5.inc ├── 6.inc ├── 7.inc ├── 8.inc ├── 9.inc ├── CategoryList.inc ├── DeviceID │ ├── DeviceList.inc │ ├── Installed.inc │ └── NotInstalled.inc └── VisTypes │ ├── Bar.inc │ ├── Bar │ ├── MirrorX.inc │ ├── MirrorXY.inc │ ├── MirrorY.inc │ ├── Normal.inc │ └── Reflection.inc │ ├── Round.inc │ ├── Round │ └── Dummy.inc │ ├── Vector.inc │ └── Vector │ ├── Gradient.inc │ └── Solid.inc ├── includes ├── Background.inc ├── ListItems.inc ├── MeterStyles.inc ├── Variables.inc ├── s_OnChangeAction.inc └── themes │ ├── 0.inc │ ├── 1.inc │ └── 2.inc └── settings.ini /@Resources/Addons/AudioDeviceCmdlets/AudioDeviceCmdlets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Addons/AudioDeviceCmdlets/AudioDeviceCmdlets.dll -------------------------------------------------------------------------------- /@Resources/ImageUnderlay/ImageUnderlay0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/ImageUnderlay/ImageUnderlay0.inc -------------------------------------------------------------------------------- /@Resources/ImageUnderlay/ImageUnderlay1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/ImageUnderlay/ImageUnderlay1.inc -------------------------------------------------------------------------------- /@Resources/Images/Boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Images/Boxes.png -------------------------------------------------------------------------------- /@Resources/Images/Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Images/Original.png -------------------------------------------------------------------------------- /@Resources/Images/VectorBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Images/VectorBar.png -------------------------------------------------------------------------------- /@Resources/Images/menherachan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Images/menherachan.png -------------------------------------------------------------------------------- /@Resources/Measures/BarAnalyzer.inc: -------------------------------------------------------------------------------- 1 | [AudioAnalyzer] 2 | Measure=Plugin 3 | Plugin=AudioAnalyzer 4 | Type=Parent 5 | Source=[#AnalyzerPort] 6 | ProcessingUnits=Main 7 | Unit-Main=Channels [#Channel] | Handlers MainFFT, MainBR(MainFFT), MainBCT(MainBR), MainTR(MainBCT) ,MainFinalOutput(MainTR) 8 | ;, 9 | ; | Filter Custom bqHighPass(Q 0.2, Freq 20, ForcedGain 5.58), bqLowPass(Q 1, Freq 16000, ForcedGain 20) 10 | Handler-MainFFT=Type FFT | BinWidth 8 | OverlapBoost 10 | CascadesCount 2 | WindowFunction [#WindowFunction] 11 | Handler-MainBR=Type BandResampler | Bands Log(Count (#Bands# + 1), FreqMin 20, FreqMax 16000) | CubicInterpolation true 12 | Handler-MainBCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 13 | Handler-MainTR=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 14 | Handler-MainFinalOutput=Type UniformBlur | Radius [#BlurRadius] | RadiusAdaptation 1 15 | LogUnusedOptions=false -------------------------------------------------------------------------------- /@Resources/Measures/RoundAnalyzer.inc: -------------------------------------------------------------------------------- 1 | [AudioAnalyzer] 2 | Measure=Plugin 3 | Plugin=AudioAnalyzer 4 | Type=Parent 5 | Source=[#AnalyzerPort] 6 | ProcessingUnits=Main 7 | Unit-Main=Channels [#Channel] | Handlers MainFFT, MainBR(MainFFT), MainBCT(MainBR), MainTR(MainBCT), MainFinalOutput(MainTR) | Filter Custom bqHighPass(Q 0.2, Freq 20, ForcedGain 5.58), bqLowPass(Q 1, Freq 16000, ForcedGain 20) 8 | Handler-MainFFT=Type FFT | BinWidth 8 | OverlapBoost 10 | CascadesCount 2 | WindowFunction [#WindowFunction] 9 | Handler-MainBR=Type BandResampler | Bands Log(Count (#Bands# + 1), FreqMin 20, FreqMax 16000) | CubicInterpolation true 10 | Handler-MainBCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 11 | Handler-MainTR=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 12 | Handler-MainFinalOutput=Type UniformBlur | Radius [#BlurRadius] | RadiusAdaptation 1 13 | LogUnusedOptions=false -------------------------------------------------------------------------------- /@Resources/Measures/VectorAnalyzer.inc: -------------------------------------------------------------------------------- 1 |  2 | [AudioAnalyzer] 3 | Measure=Plugin 4 | Plugin=AudioAnalyzer 5 | Type=Parent 6 | Source=[#AnalyzerPort] 7 | ProcessingUnits=Main 8 | Unit-Main=Channels [#Channel] | Handlers MainFFT, Layer1BR(MainFFT), Layer1BCT(Layer1BR), Layer1Output(Layer1BCT), Layer2BR(MainFFT), Layer2BCT(Layer2BR), Layer2Output(Layer2BCT), Layer3BR(MainFFT), Layer3BCT(Layer3BR), Layer3Output(Layer3BCT), Layer4BR(MainFFT), Layer4BCT(Layer4BR), Layer4Output(Layer4BCT) | Filter Custom bqHighPass(Q 0.2, Freq 20, ForcedGain 5.58), bqLowPass(Q 1, Freq 16000, ForcedGain 20) 9 | Handler-MainFFT=Type FFT | BinWidth 8 | OverlapBoost 10 | CascadesCount 2 | WindowFunction [#WindowFunction] 10 | 11 | Handler-Layer1BR=Type BandResampler | Bands Log(Count 10, FreqMin 20, FreqMax 16000) | CubicInterpolation true 12 | Handler-Layer1BCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 13 | Handler-Layer1Output=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 14 | 15 | 16 | Handler-Layer2BR=Type BandResampler | Bands Log(Count 18, FreqMin 20, FreqMax 16000) | CubicInterpolation true 17 | Handler-Layer2BCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 18 | Handler-Layer2Output=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 19 | 20 | 21 | Handler-Layer3BR=Type BandResampler | Bands Log(Count 34, FreqMin 20, FreqMax 16000) | CubicInterpolation true 22 | Handler-Layer3BCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 23 | Handler-Layer3Output=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 24 | 25 | 26 | Handler-Layer4BR=Type BandResampler | Bands Log(Count 66, FreqMin 20, FreqMax 16000) | CubicInterpolation true 27 | Handler-Layer4BCT=Type BandCascadeTransformer | MixFunction Average | MinWeight 0.01 | TargetWeight 2 | ZeroLevelMultiplier 1 28 | Handler-Layer4Output=Type TimeResampler | Attack [#Attack] | Decay [#Decay] | Transform dB, Map(From -[#MaxSensitivity] : -[#MinSensitivity]), Clamp 29 | 30 | 31 | LogUnusedOptions=false 32 | 33 | -------------------------------------------------------------------------------- /@Resources/Scripts/Crafter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Scripts/Crafter.ps1 -------------------------------------------------------------------------------- /@Resources/Scripts/GetAudioDevices.ps1: -------------------------------------------------------------------------------- 1 | $env:PSModulePath+="$([System.IO.Path]::PathSeparator)$($RmAPI.VariableStr('@'))Addons" 2 | 3 | function ListAudioDevices { 4 | $a=Get-AudioDevice -List 5 | $device=@" 6 | 7 | [Variables] 8 | DevScroll=0 9 | [DevicesContainer] 10 | Meter=Shape 11 | X=55 12 | Y=295 13 | Shape=Rectangle 0,0,370,190,7 | Fill Color 0090F0 | StrokeWidth 0 14 | MouseScrollDownAction=[!SetVariable DevScroll "(Clamp([#DevScroll]+15, 0, (Max([Scroller]-172,0))))"][!Log Down][!UpdateMeterGroup DeviceList][!Redraw] 15 | MouseScrollUpAction=[!SetVariable DevScroll "(Clamp([#DevScroll]-15, 0, (Max([Scroller]-172,0))))"][!Log Up][!UpdateMeterGroup DeviceList][!Redraw] 16 | Group=DeviceList 17 | Hidden=1 18 | [DevicesBackground] 19 | Meter=Shape 20 | Shape=Rectangle 0,0,370,190,7 | Fill Color 81FCFDFF | StrokeWidth 0 21 | Container=DevicesContainer 22 | Group=DeviceList 23 | Hidden=1 24 | [DeviceStringStyle] 25 | X=r 26 | Y=3R 27 | W=342 28 | FontFace=Segoe UI Semibold 29 | FontSize=11 30 | FontColor=000000 31 | AntiAlias=1 32 | ClipString=1 33 | Container=DevicesContainer 34 | Group=DeviceList 35 | Hidden=1 36 | [Output] 37 | Meter=String 38 | Text=Output 39 | X=14 40 | Y=(14-[#DevScroll]) 41 | FontFace=Segoe UI Bold 42 | FontSize=12 43 | FontColor=303030 44 | AntiAlias=1 45 | DynamicVariables=1 46 | Container=DevicesContainer 47 | Group=DeviceList 48 | Hidden=1 49 | 50 | "@ 51 | $index=0 52 | $a.GetEnumerator() | ForEach-Object { 53 | if ($_.Type -eq 'PlayBack') { 54 | $device+=@" 55 | 56 | [OutputDevice$index] 57 | Meter=String 58 | Text=$($_.Name) 59 | MeterStyle=DeviceStringStyle 60 | LeftMouseUpAction=[!WriteKeyValue Variables DeviceName `"$($_.Name)`" `"#@#Variables\Main.inc`"][!WriteKeyValue Variables DeviceID `"$($_.ID)`" `"#@#Variables\Main.inc`"][!Refresh "#ROOTCONFIG#"][!Refresh] 61 | "@ 62 | } 63 | $index++ 64 | } 65 | $device+=@" 66 | 67 | [HR] 68 | Meter=Image 69 | X=20 70 | Y=8R 71 | H=2 72 | W=330 73 | SolidColor=202020 74 | Container=DevicesContainer 75 | Group=DeviceList 76 | Hidden=1 77 | [Input] 78 | Meter=String 79 | Text=Input 80 | X=14 81 | Y=6R 82 | FontFace=Segoe UI Bold 83 | FontSize=12 84 | FontColor=303030 85 | AntiAlias=1 86 | Container=DevicesContainer 87 | Group=DeviceList 88 | Hidden=1 89 | 90 | "@ 91 | $index=0 92 | $a.GetEnumerator() | ForEach-Object { 93 | if ($_.Type -eq 'Recording') { 94 | $device+=@" 95 | 96 | [InputDevice$index] 97 | Meter=String 98 | Text=$($_.Name) 99 | MeterStyle=DeviceStringStyle 100 | LeftMouseUpAction=[!WriteKeyValue Variables DeviceName `"$($_.Name)`" `"#@#Variables\Main.inc`"][!WriteKeyValue Variables DeviceID `"$($_.ID)`" `"#@#Variables\Main.inc`"][!Refresh "#ROOTCONFIG#"][!Refresh] 101 | "@ 102 | } 103 | $index++ 104 | } 105 | $device+=@" 106 | 107 | [DevLastItem] 108 | Meter=String 109 | Y=([#DevScroll])R 110 | DynamicVariables=1 111 | Container=DevicesContainer 112 | Group=DeviceList 113 | Hidden=1 114 | [Scroller] 115 | Measure=Calc 116 | DynamicVariables=1 117 | Formula=([DevLastItem:Y]-[DevicesContainer:Y]) 118 | 119 | "@ 120 | $device | Out-File -FilePath $($RmAPI.VariableStr('ROOTCONFIGPATH') + 'settings\categories\DeviceID\DeviceList.inc') 121 | $RmAPI.Bang('!Refresh') 122 | } -------------------------------------------------------------------------------- /@Resources/UserImages/10825696.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/10825696.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/9nzly4v0hfk61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/9nzly4v0hfk61.png -------------------------------------------------------------------------------- /@Resources/UserImages/Patterns-4K-Ultra-HD-Wallpaper-3840x2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/Patterns-4K-Ultra-HD-Wallpaper-3840x2160.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/alena-aenami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/alena-aenami.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/nordgirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/nordgirl.png -------------------------------------------------------------------------------- /@Resources/UserImages/pinkgirl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/pinkgirl.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/starrysky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/starrysky.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/vectorbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/vectorbar.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/wp7309638.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/wp7309638.jpg -------------------------------------------------------------------------------- /@Resources/UserImages/wp7309870.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/UserImages/wp7309870.jpg -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/AudioAnalyzerSettings.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name AudioAnalyzer 3 | 4 | ;?Integer | Name Maximum Sensititvity 5 | MaxSensitivity=45 6 | 7 | ;?Integer | Name Minimum Sensitivity 8 | MinSensitivity=9 9 | 10 | ;?Integer | Name Rising Delay | Description in milliseconds 11 | Attack=0 12 | 13 | ;?Integer | Name Falling Delay | Description in milliseconds 14 | Decay=0 15 | 16 | ;?Integer | Name Smoothing Level | Description How smooth your visuallizer is 17 | BlurRadius=1 18 | 19 | ;?String | Name Channel | Description Auto::C::FL::FR::BL::BR::BC::SL::SR 20 | Channel=Auto 21 | 22 | ;?String | Name Window Function 23 | WindowFunction=Kaiser 24 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Boxes/Bar.inc -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar/MirrorX.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorX 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar/MirrorXY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorXY 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name First Y-Offset 11 | Group1YOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=-1000 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=28 18 | 19 | ;?Integer | Name Third X-Offset 20 | Group3XOffset=0 21 | 22 | ;?Integer | Name Third Y-Offset 23 | Group3YOffset=28 24 | 25 | ;?Integer | Name Fourth X-Offset 26 | Group4XOffset=-1000 27 | 28 | ;?Integer | Name Fourth Y-Offset 29 | Group4YOffset=56 30 | 31 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip; Group3,Group3XFlip; Group4,Group4XFlip 32 | Group1XFlip=0 33 | Group2XFlip=0 34 | Group3XFlip=0 35 | Group4XFlip=0 36 | 37 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip; Group3,Group3YFlip; Group4,Group4YFlip 38 | Group1YFlip=0 39 | Group2YFlip=0 40 | Group3YFlip=0 41 | Group4YFlip=0 42 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar/MirrorY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorY 3 | 4 | ;?Info | Name MirrorY | Description Settings for MirrorY | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar/Normal.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name Normal 3 | 4 | ;?Info | Name Normal | Description Settings for Normal | Link 0 5 | = 6 | 7 | ;?List | Name Flip | Options FlipX,flipX; FlipY,flipY 8 | flipX=0 9 | flipY=0 10 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Bar/Reflection.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Reflection 3 | 4 | ;?Info | Name Reflection | Description Settings for Reflection | Link 0 5 | = 6 | 7 | ;?Integer | Name Reflection Percentage | Description (of total height) 8 | ReflectionPercentage=60 9 | 10 | ;?Integer | Name First X-Offset 11 | Group1XOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=0 15 | 16 | ;?Integer | Name First Y-Offset 17 | Group1YOffset=0 18 | 19 | ;?Integer | Name Second Y-Offset 20 | Group2YOffset=0 21 | 22 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 23 | Group1XFlip=0 24 | Group2XFlip=0 25 | 26 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 27 | Group1YFlip=0 28 | Group2YFlip=0 -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Boxes/Colors.inc -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Round.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Boxes/Round.inc -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Vector.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@ | Name Vector 4 | 5 | ;?Integer | Name LayerCount 6 | LayerCount=4 7 | 8 | ;?Integer | Name Points 9 | VectorBands=12 10 | 11 | ;?String | Name Width 12 | VectorWidth=1366 13 | 14 | ;?String | Name Width 15 | MinimumHeight=30 16 | 17 | ;?Integer | Name Layer1 Height 18 | Layer1Height=160 19 | 20 | ;?Integer | Name Layer2 Height 21 | Layer2Height=140 22 | 23 | ;?Integer | Name Layer3 Height 24 | Layer3Height=110 25 | 26 | ;?Integer | Name Layer4 Height 27 | Layer4Height=90 28 | 29 | ;?RadioButton | Name Color Mode | Options Solid; Gradient 30 | BarType=Solid 31 | 32 | ;?Integer | Name Angle 33 | Angle=0 34 | 35 | @includeVectorColors=Vector\[#BarType].inc 36 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Vector/Gradient.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Gradient | Description Gradients for vector layers | Link 0 5 | = 6 | 7 | ;?String | Layer1 8 | Layer1Gradient=180 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 9 | ;?String | Layer2 10 | Layer2Gradient=0 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 11 | ;?String | Layer3 12 | Layer3Gradient=180 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 13 | ;?String | Layer4 14 | Layer4Gradient=180 | 9, 136, 51, 255;0.0 | 9, 136, 51, 255;1.0 15 | -------------------------------------------------------------------------------- /@Resources/Variables/Boxes/Vector/Solid.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Solid | Description Solid colors for vector layers | Link 0 5 | = 6 | 7 | ;?Color | Name Layer 1 8 | Layer1Color=255,255,255,30 9 | ;?Color | Name Layer 2 10 | Layer2Color=47,160,255,99 11 | ;?Color | Name Layer 3 12 | Layer3Color=43,255,19,165 13 | ;?Color | Name Layer 4 14 | Layer4Color=255,22,28 15 | -------------------------------------------------------------------------------- /@Resources/Variables/Main.inc: -------------------------------------------------------------------------------- 1 | ; __ __ 2 | ;|\ /| /\ | |\ | 3 | ;| \ / | / \ | | \ | 4 | ;| \ / | / \ | | \ | 5 | ;| \ / | / \ | | \ | 6 | ;| \ / | / \ | | \ | 7 | ;| \ / | /----------\ | | \ | 8 | ;| \ / | / \ | | \ | 9 | ;| \ / | / \ | | \ | 10 | ;| \/ |/ \__|__ | \| 11 | 12 | [Variables] 13 | ;@About | Name Settings | Description Control how your visualizer is rendered here. | Icon [\xE771] 14 | ;@Topic | Name Personalization | Icon [\xE771] 15 | ;@ | Name Visualizer | Icon [\xF61F] 16 | ;?RadioButton | Name Visualizer Type | Options Bar; Round; Vector 17 | VisualizerType=Vector 18 | ;@ | Name Extra | Icon [\xF0B9] 19 | ;@ | Name Image Underlay | Description Add an image underlay to your visualizer | Icon [\xE81E] 20 | ;@ | Name Colors | Description Define colors of your visualizer | Icon [\xE790] 21 | ;@Topic | Name Equalizer Settings | Icon [\xF4C3] 22 | ;@ | Name Device | Description Select a specific device(for advanced users) | Icon [\xE95B] 23 | ;@ | Name AudioAnalyzer | Icon [\xF0ED] 24 | 25 | Preset=VectorBar 26 | 27 | ImageUnderlay=1 28 | ImageUnderlayName=C:\Users\sahoo\OneDrive\Documents\Rainmeter\Skins\ASimpleVisualizer2\@Resources\UserImages\vectorbar.jpg 29 | 30 | DeviceName= 31 | DeviceID= 32 | 33 | ;?RadioButton | Name Audio Source | Options Output,DefaultOutput; Input,DefaultInput; DeviceID,"ID: [#DeviceID]" 34 | AnalyzerPort=DefaultOutput 35 | 36 | @includeVariables=#@#Variables\[#Preset]\[#VisualizerType].inc 37 | @includeAnalyzer=#@#Variables\[#Preset]\AudioAnalyzerSettings.inc 38 | @includeColors=#@#Variables\[#Preset]\Colors.inc 39 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/AudioAnalyzerSettings.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name AudioAnalyzer 3 | 4 | ;?Integer | Name Maximum Sensititvity 5 | MaxSensitivity=45 6 | 7 | ;?Integer | Name Minimum Sensitivity 8 | MinSensitivity=9 9 | 10 | ;?Integer | Name Rising Delay | Description in milliseconds 11 | Attack=0 12 | 13 | ;?Integer | Name Falling Delay | Description in milliseconds 14 | Decay=0 15 | 16 | ;?Integer | Name Smoothing Level | Description How smooth your visuallizer is 17 | BlurRadius=1 18 | 19 | ;?String | Name Channel | Description Auto::C::FL::FR::BL::BR::BC::SL::SR 20 | Channel=Auto 21 | 22 | ;?String | Name Window Function 23 | WindowFunction=Kaiser 24 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Original/Bar.inc -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar/MirrorX.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorX 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar/MirrorXY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorXY 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name First Y-Offset 11 | Group1YOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=-1000 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=28 18 | 19 | ;?Integer | Name Third X-Offset 20 | Group3XOffset=0 21 | 22 | ;?Integer | Name Third Y-Offset 23 | Group3YOffset=28 24 | 25 | ;?Integer | Name Fourth X-Offset 26 | Group4XOffset=-1000 27 | 28 | ;?Integer | Name Fourth Y-Offset 29 | Group4YOffset=56 30 | 31 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip; Group3,Group3XFlip; Group4,Group4XFlip 32 | Group1XFlip=0 33 | Group2XFlip=0 34 | Group3XFlip=0 35 | Group4XFlip=0 36 | 37 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip; Group3,Group3YFlip; Group4,Group4YFlip 38 | Group1YFlip=0 39 | Group2YFlip=0 40 | Group3YFlip=0 41 | Group4YFlip=0 42 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar/MirrorY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorY 3 | 4 | ;?Info | Name MirrorY | Description Settings for MirrorY | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar/Normal.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name Normal 3 | 4 | ;?Info | Name Normal | Description Settings for Normal | Link 0 5 | = 6 | 7 | ;?List | Name Flip | Options FlipX,flipX; FlipY,flipY 8 | flipX=0 9 | flipY=0 10 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Bar/Reflection.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Reflection 3 | 4 | ;?Info | Name Reflection | Description Settings for Reflection | Link 0 5 | = 6 | 7 | ;?Integer | Name Reflection Percentage | Description (of total height) 8 | ReflectionPercentage=60 9 | 10 | ;?Integer | Name First X-Offset 11 | Group1XOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=0 15 | 16 | ;?Integer | Name First Y-Offset 17 | Group1YOffset=0 18 | 19 | ;?Integer | Name Second Y-Offset 20 | Group2YOffset=0 21 | 22 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 23 | Group1XFlip=0 24 | Group2XFlip=0 25 | 26 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 27 | Group1YFlip=0 28 | Group2YFlip=0 -------------------------------------------------------------------------------- /@Resources/Variables/Original/Colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Original/Colors.inc -------------------------------------------------------------------------------- /@Resources/Variables/Original/Round.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/Original/Round.inc -------------------------------------------------------------------------------- /@Resources/Variables/Original/Vector.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@ | Name Vector 4 | 5 | ;?Integer | Name LayerCount 6 | LayerCount=4 7 | 8 | ;?Integer | Name Points 9 | VectorBands=12 10 | 11 | ;?String | Name Width 12 | VectorWidth=1366 13 | 14 | ;?String | Name Width 15 | MinimumHeight=30 16 | 17 | ;?Integer | Name Layer1 Height 18 | Layer1Height=160 19 | 20 | ;?Integer | Name Layer2 Height 21 | Layer2Height=140 22 | 23 | ;?Integer | Name Layer3 Height 24 | Layer3Height=110 25 | 26 | ;?Integer | Name Layer4 Height 27 | Layer4Height=90 28 | 29 | ;?RadioButton | Name Color Mode | Options Solid; Gradient 30 | BarType=Solid 31 | 32 | ;?Integer | Name Angle 33 | Angle=0 34 | 35 | @includeVectorColors=Vector\[#BarType].inc 36 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Vector/Gradient.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Gradient | Description Gradients for vector layers | Link 0 5 | = 6 | 7 | ;?String | Layer1 8 | Layer1Gradient=180 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 9 | ;?String | Layer2 10 | Layer2Gradient=0 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 11 | ;?String | Layer3 12 | Layer3Gradient=180 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 13 | ;?String | Layer4 14 | Layer4Gradient=180 | 9, 136, 51, 255;0.0 | 9, 136, 51, 255;1.0 15 | -------------------------------------------------------------------------------- /@Resources/Variables/Original/Vector/Solid.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Solid | Description Solid colors for vector layers | Link 0 5 | = 6 | 7 | ;?Color | Name Layer 1 8 | Layer1Color=255,255,255,30 9 | ;?Color | Name Layer 2 10 | Layer2Color=255,255,255,106 11 | ;?Color | Name Layer 3 12 | Layer3Color=43,255,19,165 13 | ;?Color | Name Layer 4 14 | Layer4Color=255,255,255 15 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/AudioAnalyzerSettings.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name AudioAnalyzer 3 | 4 | ;?Integer | Name Maximum Sensititvity 5 | MaxSensitivity=45 6 | 7 | ;?Integer | Name Minimum Sensitivity 8 | MinSensitivity=9 9 | 10 | ;?Integer | Name Rising Delay | Description in milliseconds 11 | Attack=0 12 | 13 | ;?Integer | Name Falling Delay | Description in milliseconds 14 | Decay=0 15 | 16 | ;?Integer | Name Smoothing Level | Description How smooth your visuallizer is 17 | BlurRadius=1 18 | 19 | ;?String | Name Channel | Description Auto::C::FL::FR::BL::BR::BC::SL::SR 20 | Channel=Auto 21 | 22 | ;?String | Name Window Function 23 | WindowFunction=Kaiser 24 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/VectorBar/Bar.inc -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar/MirrorX.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorX 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar/MirrorXY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorXY 3 | 4 | ;?Info | Name MirrorX | Description Settings for MirrorX | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name First Y-Offset 11 | Group1YOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=-1000 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=28 18 | 19 | ;?Integer | Name Third X-Offset 20 | Group3XOffset=0 21 | 22 | ;?Integer | Name Third Y-Offset 23 | Group3YOffset=28 24 | 25 | ;?Integer | Name Fourth X-Offset 26 | Group4XOffset=-1000 27 | 28 | ;?Integer | Name Fourth Y-Offset 29 | Group4YOffset=56 30 | 31 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip; Group3,Group3XFlip; Group4,Group4XFlip 32 | Group1XFlip=0 33 | Group2XFlip=0 34 | Group3XFlip=0 35 | Group4XFlip=0 36 | 37 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip; Group3,Group3YFlip; Group4,Group4YFlip 38 | Group1YFlip=0 39 | Group2YFlip=0 40 | Group3YFlip=0 41 | Group4YFlip=0 42 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar/MirrorY.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name MirrorY 3 | 4 | ;?Info | Name MirrorY | Description Settings for MirrorY | Link 0 5 | = 6 | 7 | ;?Integer | Name First X-Offset 8 | Group1XOffset=0 9 | 10 | ;?Integer | Name Second X-Offset 11 | Group2XOffset=0 12 | 13 | ;?Integer | Name First Y-Offset 14 | Group1YOffset=0 15 | 16 | ;?Integer | Name Second Y-Offset 17 | Group2YOffset=0 18 | 19 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 20 | Group1XFlip=0 21 | Group2XFlip=0 22 | 23 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 24 | Group1YFlip=0 25 | Group2YFlip=0 26 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar/Normal.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@Default | Name Normal 3 | 4 | ;?Info | Name Normal | Description Settings for Normal | Link 0 5 | = 6 | 7 | ;?List | Name Flip | Options FlipX,flipX; FlipY,flipY 8 | flipX=0 9 | flipY=0 10 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Bar/Reflection.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Reflection 3 | 4 | ;?Info | Name Reflection | Description Settings for Reflection | Link 0 5 | = 6 | 7 | ;?Integer | Name Reflection Percentage | Description (of total height) 8 | ReflectionPercentage=60 9 | 10 | ;?Integer | Name First X-Offset 11 | Group1XOffset=0 12 | 13 | ;?Integer | Name Second X-Offset 14 | Group2XOffset=0 15 | 16 | ;?Integer | Name First Y-Offset 17 | Group1YOffset=0 18 | 19 | ;?Integer | Name Second Y-Offset 20 | Group2YOffset=0 21 | 22 | ;?List | Name X-Flip | Options Group1,Group1XFlip; Group2,Group2XFlip 23 | Group1XFlip=0 24 | Group2XFlip=0 25 | 26 | ;?List | Name Y-Flip | Options Group1,Group1YFlip; Group2,Group2YFlip 27 | Group1YFlip=0 28 | Group2YFlip=0 -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/VectorBar/Colors.inc -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Round.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/@Resources/Variables/VectorBar/Round.inc -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Vector.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@ | Name Vector 4 | 5 | ;?Integer | Name LayerCount 6 | LayerCount=4 7 | 8 | ;?Integer | Name Points 9 | VectorBands=9 10 | 11 | ;?String | Name Width 12 | VectorWidth=#SCREENAREAWIDTH# 13 | 14 | ;?String | Name Width 15 | MinimumHeight=30 16 | 17 | ;?Integer | Name Layer1 Height 18 | Layer1Height=160 19 | 20 | ;?Integer | Name Layer2 Height 21 | Layer2Height=140 22 | 23 | ;?Integer | Name Layer3 Height 24 | Layer3Height=110 25 | 26 | ;?Integer | Name Layer4 Height 27 | Layer4Height=90 28 | 29 | ;?RadioButton | Name Color Mode | Options Solid; Gradient 30 | BarType=Solid 31 | 32 | ;?Integer | Name Angle 33 | Angle=0 34 | 35 | @includeVectorColors=Vector\[#BarType].inc 36 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Vector/Gradient.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Gradient | Description Gradients for vector layers | Link 0 5 | = 6 | 7 | ;?String | Layer1 8 | Layer1Gradient=180 | 212, 179, 50, 150;0.0 | 20, 225, 55, 150;1.0 9 | ;?String | Layer2 10 | Layer2Gradient=0 | 255,0,0, 150;0.0 | 20, 225, 55, 150;1.0 11 | ;?String | Layer3 12 | Layer3Gradient=180 | 12, 179, 76, 150;0.0 | 20, 225, 55, 150;1.0 13 | ;?String | Layer4 14 | Layer4Gradient=180 | 9, 136, 51, 255;0.0 | 9, 136, 51, 255;1.0 15 | -------------------------------------------------------------------------------- /@Resources/Variables/VectorBar/Vector/Solid.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ;@ | Name Solid 3 | 4 | ;?Info | Name Solid | Description Solid colors for vector layers | Link 0 5 | = 6 | 7 | ;?Color | Name Layer 1 8 | Layer1Color=255,255,255,69 9 | ;?Color | Name Layer 2 10 | Layer2Color=255,255,255,100 11 | ;?Color | Name Layer 3 12 | Layer3Color=255,255,255,150 13 | ;?Color | Name Layer 4 14 | Layer4Color=48,48,48 15 | -------------------------------------------------------------------------------- /@Resources/Visualizer/Vector.inc: -------------------------------------------------------------------------------- 1 |  2 | [Shape] 3 | Meter=Shape 4 | DynamicVariables=1 5 | W=1366 6 | H=160 7 | TransformationMatrix=1;0;0;1;0;0 8 | Shape=Path Layer1 | StrokeWidth 0 | Extend [#BarType]1 9 | Layer1 = 0,160 | LineTo 0,130 | LineTo 0, (-30 + 160*(1-[MeasureL11])) | LineTo 303.555555555556, (-30 + 160*(1-[MeasureL12])) | LineTo 455.333333333333, (-30 + 160*(1-[MeasureL13])) | LineTo 607.111111111111, (-30 + 160*(1-[MeasureL14])) | LineTo 758.888888888889, (-30 + 160*(1-[MeasureL15])) | LineTo 910.666666666667, (-30 + 160*(1-[MeasureL16])) | LineTo 1062.44444444444, (-30 + 160*(1-[MeasureL17])) | LineTo 1214.22222222222, (-30 + 160*(1-[MeasureL18])) | LineTo 1366, (-30 + 160*(1-[MeasureL19])) | LineTo 1366,130 | LineTo 1366,160 | ClosePath 1 10 | Solid1=Fill Color 255,255,255,69 11 | Gradient1=Fill LinearGradient1 MyGradient1 12 | MyGradient1= 13 | Shape2=Path Layer2 | StrokeWidth 0 | Extend [#BarType]2 14 | Layer2 = 0,160 | LineTo 0,130 | LineTo 0, (-10 + 140*(1-[MeasureL21])) | LineTo 160.705882352941, (-10 + 140*(1-[MeasureL22])) | LineTo 241.058823529412, (-10 + 140*(1-[MeasureL23])) | LineTo 321.411764705882, (-10 + 140*(1-[MeasureL24])) | LineTo 401.764705882353, (-10 + 140*(1-[MeasureL25])) | LineTo 482.117647058824, (-10 + 140*(1-[MeasureL26])) | LineTo 562.470588235294, (-10 + 140*(1-[MeasureL27])) | LineTo 642.823529411765, (-10 + 140*(1-[MeasureL28])) | LineTo 723.176470588235, (-10 + 140*(1-[MeasureL29])) | LineTo 803.529411764706, (-10 + 140*(1-[MeasureL210])) | LineTo 883.882352941177, (-10 + 140*(1-[MeasureL211])) | LineTo 964.235294117647, (-10 + 140*(1-[MeasureL212])) | LineTo 1044.58823529412, (-10 + 140*(1-[MeasureL213])) | LineTo 1124.94117647059, (-10 + 140*(1-[MeasureL214])) | LineTo 1205.29411764706, (-10 + 140*(1-[MeasureL215])) | LineTo 1285.64705882353, (-10 + 140*(1-[MeasureL216])) | LineTo 1366, (-10 + 140*(1-[MeasureL217])) | LineTo 1366,130 | LineTo 1366,160 | ClosePath 1 15 | Solid2=Fill Color 255,255,255,100 16 | Gradient2=Fill LinearGradient1 MyGradient2 17 | MyGradient2= 18 | Shape3=Path Layer3 | StrokeWidth 0 | Extend [#BarType]3 19 | Layer3 = 0,160 | LineTo 0,130 | LineTo 0, (20 + 110*(1-[MeasureL31])) | LineTo 82.7878787878788, (20 + 110*(1-[MeasureL32])) | LineTo 124.181818181818, (20 + 110*(1-[MeasureL33])) | LineTo 165.575757575758, (20 + 110*(1-[MeasureL34])) | LineTo 206.969696969697, (20 + 110*(1-[MeasureL35])) | LineTo 248.363636363636, (20 + 110*(1-[MeasureL36])) | LineTo 289.757575757576, (20 + 110*(1-[MeasureL37])) | LineTo 331.151515151515, (20 + 110*(1-[MeasureL38])) | LineTo 372.545454545455, (20 + 110*(1-[MeasureL39])) | LineTo 413.939393939394, (20 + 110*(1-[MeasureL310])) | LineTo 455.333333333333, (20 + 110*(1-[MeasureL311])) | LineTo 496.727272727273, (20 + 110*(1-[MeasureL312])) | LineTo 538.121212121212, (20 + 110*(1-[MeasureL313])) | LineTo 579.515151515152, (20 + 110*(1-[MeasureL314])) | LineTo 620.909090909091, (20 + 110*(1-[MeasureL315])) | LineTo 662.30303030303, (20 + 110*(1-[MeasureL316])) | LineTo 703.69696969697, (20 + 110*(1-[MeasureL317])) | LineTo 745.090909090909, (20 + 110*(1-[MeasureL318])) | LineTo 786.484848484848, (20 + 110*(1-[MeasureL319])) | LineTo 827.878787878788, (20 + 110*(1-[MeasureL320])) | LineTo 869.272727272727, (20 + 110*(1-[MeasureL321])) | LineTo 910.666666666667, (20 + 110*(1-[MeasureL322])) | LineTo 952.060606060606, (20 + 110*(1-[MeasureL323])) | LineTo 993.454545454545, (20 + 110*(1-[MeasureL324])) | LineTo 1034.84848484848, (20 + 110*(1-[MeasureL325])) | LineTo 1076.24242424242, (20 + 110*(1-[MeasureL326])) | LineTo 1117.63636363636, (20 + 110*(1-[MeasureL327])) | LineTo 1159.0303030303, (20 + 110*(1-[MeasureL328])) | LineTo 1200.42424242424, (20 + 110*(1-[MeasureL329])) | LineTo 1241.81818181818, (20 + 110*(1-[MeasureL330])) | LineTo 1283.21212121212, (20 + 110*(1-[MeasureL331])) | LineTo 1324.60606060606, (20 + 110*(1-[MeasureL332])) | LineTo 1366, (20 + 110*(1-[MeasureL333])) | LineTo 1366,130 | LineTo 1366,160 | ClosePath 1 20 | Solid3=Fill Color 255,255,255,150 21 | Gradient3=Fill LinearGradient1 MyGradient3 22 | MyGradient3= 23 | Shape4=Path Layer4 | StrokeWidth 0 | Extend [#BarType]4 24 | Layer4 = 0,160 | LineTo 0,130 | LineTo 0, (40 + 90*(1-[MeasureL41])) | LineTo 42.0307692307692, (40 + 90*(1-[MeasureL42])) | LineTo 63.0461538461538, (40 + 90*(1-[MeasureL43])) | LineTo 84.0615384615385, (40 + 90*(1-[MeasureL44])) | LineTo 105.076923076923, (40 + 90*(1-[MeasureL45])) | LineTo 126.092307692308, (40 + 90*(1-[MeasureL46])) | LineTo 147.107692307692, (40 + 90*(1-[MeasureL47])) | LineTo 168.123076923077, (40 + 90*(1-[MeasureL48])) | LineTo 189.138461538462, (40 + 90*(1-[MeasureL49])) | LineTo 210.153846153846, (40 + 90*(1-[MeasureL410])) | LineTo 231.169230769231, (40 + 90*(1-[MeasureL411])) | LineTo 252.184615384615, (40 + 90*(1-[MeasureL412])) | LineTo 273.2, (40 + 90*(1-[MeasureL413])) | LineTo 294.215384615385, (40 + 90*(1-[MeasureL414])) | LineTo 315.230769230769, (40 + 90*(1-[MeasureL415])) | LineTo 336.246153846154, (40 + 90*(1-[MeasureL416])) | LineTo 357.261538461538, (40 + 90*(1-[MeasureL417])) | LineTo 378.276923076923, (40 + 90*(1-[MeasureL418])) | LineTo 399.292307692308, (40 + 90*(1-[MeasureL419])) | LineTo 420.307692307692, (40 + 90*(1-[MeasureL420])) | LineTo 441.323076923077, (40 + 90*(1-[MeasureL421])) | LineTo 462.338461538462, (40 + 90*(1-[MeasureL422])) | LineTo 483.353846153846, (40 + 90*(1-[MeasureL423])) | LineTo 504.369230769231, (40 + 90*(1-[MeasureL424])) | LineTo 525.384615384615, (40 + 90*(1-[MeasureL425])) | LineTo 546.4, (40 + 90*(1-[MeasureL426])) | LineTo 567.415384615385, (40 + 90*(1-[MeasureL427])) | LineTo 588.430769230769, (40 + 90*(1-[MeasureL428])) | LineTo 609.446153846154, (40 + 90*(1-[MeasureL429])) | LineTo 630.461538461538, (40 + 90*(1-[MeasureL430])) | LineTo 651.476923076923, (40 + 90*(1-[MeasureL431])) | LineTo 672.492307692308, (40 + 90*(1-[MeasureL432])) | LineTo 693.507692307692, (40 + 90*(1-[MeasureL433])) | LineTo 714.523076923077, (40 + 90*(1-[MeasureL434])) | LineTo 735.538461538462, (40 + 90*(1-[MeasureL435])) | LineTo 756.553846153846, (40 + 90*(1-[MeasureL436])) | LineTo 777.569230769231, (40 + 90*(1-[MeasureL437])) | LineTo 798.584615384615, (40 + 90*(1-[MeasureL438])) | LineTo 819.6, (40 + 90*(1-[MeasureL439])) | LineTo 840.615384615385, (40 + 90*(1-[MeasureL440])) | LineTo 861.630769230769, (40 + 90*(1-[MeasureL441])) | LineTo 882.646153846154, (40 + 90*(1-[MeasureL442])) | LineTo 903.661538461538, (40 + 90*(1-[MeasureL443])) | LineTo 924.676923076923, (40 + 90*(1-[MeasureL444])) | LineTo 945.692307692308, (40 + 90*(1-[MeasureL445])) | LineTo 966.707692307692, (40 + 90*(1-[MeasureL446])) | LineTo 987.723076923077, (40 + 90*(1-[MeasureL447])) | LineTo 1008.73846153846, (40 + 90*(1-[MeasureL448])) | LineTo 1029.75384615385, (40 + 90*(1-[MeasureL449])) | LineTo 1050.76923076923, (40 + 90*(1-[MeasureL450])) | LineTo 1071.78461538462, (40 + 90*(1-[MeasureL451])) | LineTo 1092.8, (40 + 90*(1-[MeasureL452])) | LineTo 1113.81538461538, (40 + 90*(1-[MeasureL453])) | LineTo 1134.83076923077, (40 + 90*(1-[MeasureL454])) | LineTo 1155.84615384615, (40 + 90*(1-[MeasureL455])) | LineTo 1176.86153846154, (40 + 90*(1-[MeasureL456])) | LineTo 1197.87692307692, (40 + 90*(1-[MeasureL457])) | LineTo 1218.89230769231, (40 + 90*(1-[MeasureL458])) | LineTo 1239.90769230769, (40 + 90*(1-[MeasureL459])) | LineTo 1260.92307692308, (40 + 90*(1-[MeasureL460])) | LineTo 1281.93846153846, (40 + 90*(1-[MeasureL461])) | LineTo 1302.95384615385, (40 + 90*(1-[MeasureL462])) | LineTo 1323.96923076923, (40 + 90*(1-[MeasureL463])) | LineTo 1344.98461538462, (40 + 90*(1-[MeasureL464])) | LineTo 1366, (40 + 90*(1-[MeasureL465])) | LineTo 1366,130 | LineTo 1366,160 | ClosePath 1 25 | Solid4=Fill Color 48,48,48 26 | Gradient4=Fill LinearGradient1 MyGradient4 27 | MyGradient4= 28 | -------------------------------------------------------------------------------- /ASimpleVisualizer2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/ASimpleVisualizer2.ini -------------------------------------------------------------------------------- /settings/ColorPickerUI/ColorPickerUI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/ColorPickerUI.ini -------------------------------------------------------------------------------- /settings/ColorPickerUI/DesktopPicker/DesktopPicker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/DesktopPicker/DesktopPicker.ini -------------------------------------------------------------------------------- /settings/ColorPickerUI/DesktopPicker/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/DesktopPicker/crosshair.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/ColorWheel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/ColorWheel2.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/arrow.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/checkmark.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/colordropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/colordropper.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/copy.png -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Images/trbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Images/trbg.jpg -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Scripts/Color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Scripts/Color.lua -------------------------------------------------------------------------------- /settings/ColorPickerUI/Resources/Scripts/ColorPickerUIActivator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/Resources/Scripts/ColorPickerUIActivator.lua -------------------------------------------------------------------------------- /settings/ColorPickerUI/UserVariables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/ColorPickerUI/UserVariables.inc -------------------------------------------------------------------------------- /settings/categories/0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/0.inc -------------------------------------------------------------------------------- /settings/categories/1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/1.inc -------------------------------------------------------------------------------- /settings/categories/10.inc: -------------------------------------------------------------------------------- 1 | [FirstRightPanel] 2 | Meter=String 3 | Text=First 4 | FontColor=0,0,0,0 5 | MeterStyle=FirstItem | RightPanel 6 | Y=[#s_ScrollRightPanel] 7 | [CategoryIcon2] 8 | Meter=String 9 | Text=[\xE74C] 10 | MeterStyle=CategoryIcon | RightPanel 11 | 12 | [Title2] 13 | Meter=String 14 | Text=Presets 15 | MeterStyle=CategoryTitle | RightPanel 16 | W=([#s_RightPanelW] - [CategoryIcon2:W]) 17 | 18 | [CategoryDescription2] 19 | Meter=String 20 | Text= 21 | MeterStyle=VarDescription | ThickDescription | RightPanel 22 | 23 | [CategoryTitleSeparator2] 24 | Meter=Image 25 | MeterStyle=CategoryTitleSeparator | RightPanel 26 | 27 | 28 | 29 | [VariableIcon0] 30 | Meter=String 31 | Text= 32 | MeterStyle=VariableIcon | RightPanel 33 | Hidden= 34 | [VariableTitle0] 35 | Meter=String 36 | Text=Preset 37 | MeterStyle=VarTitle | RightPanel 38 | Hidden= 39 | [VariableDescription0] 40 | Meter=String 41 | Text= 42 | MeterStyle=VarDescription | RightPanel 43 | Hidden= 44 | 45 | 46 | [MeasureRadio0Original] 47 | Measure=String 48 | String=[#Preset] 49 | IfMatch=^Original$ 50 | IfMatchAction=[!SetOption RadioString0Original InlinePattern ".*"][!SetOption RadioButton0Original Text "[\xECCB]"][!Update][!Redraw] 51 | [RadioButton0Original] 52 | Meter=String 53 | Text=[\xECCA] 54 | FontSize=15 55 | MeterStyle=VariableIcon | RightPanel 56 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "Original" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 57 | [RadioString0Original] 58 | Meter=String 59 | Text=Original 60 | Y=-1r 61 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 62 | MeterStyle=VarStringValue | VarColorString | RightPanel 63 | InlinePattern=^$ 64 | InlineSetting=Weight | 600 65 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "Original" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 66 | 67 | [MeasureRadio0Boxes] 68 | Measure=String 69 | String=[#Preset] 70 | IfMatch=^Boxes$ 71 | IfMatchAction=[!SetOption RadioString0Boxes InlinePattern ".*"][!SetOption RadioButton0Boxes Text "[\xECCB]"][!Update][!Redraw] 72 | [RadioButton0Boxes] 73 | Meter=String 74 | Text=[\xECCA] 75 | FontSize=15 76 | MeterStyle=VariableIcon | RightPanel 77 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "Boxes" "#@#\Variables\Main.inc"][!WriteKeyValue Variables VisualizerType "Bar" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 78 | [RadioString0Boxes] 79 | Meter=String 80 | Text=Boxes 81 | Y=-1r 82 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 83 | MeterStyle=VarStringValue | VarColorString | RightPanel 84 | InlinePattern=^$ 85 | InlineSetting=Weight | 600 86 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "Boxes" "#@#\Variables\Main.inc"][!WriteKeyValue Variables VisualizerType "Bar" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 87 | 88 | [MeasureRadio0VectorBar] 89 | Measure=String 90 | String=[#Preset] 91 | IfMatch=^VectorBar$ 92 | IfMatchAction=[!SetOption RadioString0VectorBar InlinePattern ".*"][!SetOption RadioButton0VectorBar Text "[\xECCB]"][!Update][!Redraw] 93 | [RadioButton0VectorBar] 94 | Meter=String 95 | FontColor=303030 96 | Text=[\xECCA] 97 | FontSize=15 98 | MeterStyle=VariableIcon | RightPanel 99 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "VectorBar" "#@#\Variables\Main.inc"][!WriteKeyValue Variables VisualizerType "Vector" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 100 | [RadioString0VectorBar] 101 | Meter=String 102 | Text=VectorBar 103 | FontColor=303030 104 | Y=-1r 105 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 106 | MouseOverAction=[] 107 | MouseLeaveAction=[] 108 | MeterStyle=VarStringValue | VarColorString | RightPanel 109 | InlinePattern=^$ 110 | InlineSetting=Weight | 600 111 | DynamicVariables=1 112 | LeftMouseUpAction=[!WriteKeyValue Variables Preset "VectorBar" "#@#\Variables\Main.inc"][!WriteKeyValue Variables VisualizerType "Vector" "#@#\Variables\Main.inc"][#ConstChangeAction][!Refresh] 113 | 114 | [PreviewImage] 115 | Meter=Image 116 | X=-20r 117 | Y=10R 118 | H=198 119 | W=352 120 | ImageName=#@#Images\[#Preset] 121 | PreserveAspectRatio=1 122 | SolidColor=00000030 123 | DynamicVariables=1 124 | MeterStyle=RightPanel 125 | 126 | [LastRightPanel] 127 | Meter=String 128 | Text=Last 129 | FontColor=255,0,0,0 130 | MeterStyle=LastItem | RightPanel 131 | 132 | [ScrollDownRightPanel] 133 | Measure=Calc 134 | Formula=[#s_ScrollRightPanel] - [#s_ScrollSpeed] 135 | IfCondition=([LastRightPanel:Y] > [#s_ScrollTreshold]) 136 | IfTrueAction=[!SetVariable "s_ScrollRightPanel" "[&ScrollDownRightPanel]"][!DisableMeasure "ScrollDownRightPanel"][!Update][!Redraw] 137 | IfFalseAction=[!DisableMeasure "ScrollDownRightPanel"] 138 | IfConditionMode=1 139 | Disabled=1 140 | DynamicVariables=1 141 | 142 | [ScrollUpRightPanel] 143 | Measure=Calc 144 | Formula=[#s_ScrollRightPanel] + [#s_ScrollSpeed] 145 | IfCondition=([FirstRightPanel:Y] < 0) 146 | IfTrueAction=[!SetVariable "s_ScrollRightPanel" "[&ScrollUpRightPanel]"][!DisableMeasure "ScrollUpRightPanel"][!Update][!Redraw] 147 | IfFalseAction=[!DisableMeasure "ScrollUpRightPanel"] 148 | IfConditionMode=1 149 | Disabled=1 150 | DynamicVariables=1 -------------------------------------------------------------------------------- /settings/categories/2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/2.inc -------------------------------------------------------------------------------- /settings/categories/3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/3.inc -------------------------------------------------------------------------------- /settings/categories/4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/4.inc -------------------------------------------------------------------------------- /settings/categories/5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/5.inc -------------------------------------------------------------------------------- /settings/categories/6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/6.inc -------------------------------------------------------------------------------- /settings/categories/7.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/7.inc -------------------------------------------------------------------------------- /settings/categories/8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/8.inc -------------------------------------------------------------------------------- /settings/categories/9.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/9.inc -------------------------------------------------------------------------------- /settings/categories/CategoryList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/CategoryList.inc -------------------------------------------------------------------------------- /settings/categories/DeviceID/DeviceList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/categories/DeviceID/DeviceList.inc -------------------------------------------------------------------------------- /settings/categories/DeviceID/Installed.inc: -------------------------------------------------------------------------------- 1 | [DeviceIDString] 2 | Measure=String 3 | String=[#DeviceID] 4 | Substitute="":"None" 5 | 6 | [DeviceNameString] 7 | Measure=String 8 | String=[#DeviceName] 9 | Substitute="":"None" 10 | 11 | [MouseX] 12 | Measure=Plugin 13 | Plugin=MouseXY 14 | Dimension=X 15 | MaxValue=#SCREENAREAWIDTH# 16 | Group=Mouse 17 | 18 | [MouseY] 19 | Measure=Plugin 20 | Plugin=MouseXY 21 | Dimension=Y 22 | MaxValue=#SCREENAREAHEIGHT# 23 | Group=Mouse 24 | 25 | [VariableIcon0] 26 | Meter=String 27 | Text= 28 | MeterStyle=VariableIcon | RightPanel 29 | Hidden= 30 | [VariableTitle0] 31 | Meter=String 32 | Text=Selected Device 33 | MeterStyle=VarTitle | RightPanel 34 | [VariableIcon0X] 35 | Meter=String 36 | X=-80R 37 | Y=8r 38 | FontSize=12 39 | Text=[\xE72C] 40 | MeterStyle=VariableIcon | RightPanel 41 | Hidden= 42 | LeftMouseUpAction=[!CommandMeasure PRM ListAudioDevices] 43 | [VariableDescription0] 44 | Meter=String 45 | Text= 46 | MeterStyle=VarDescription | RightPanel 47 | Hidden= 48 | [VariableVariableValue0] 49 | Meter=String 50 | Text=[&DeviceNameString] 51 | MeterStyle=VarStringValue | RightPanel 52 | LeftMouseUpAction=[!ToggleMeterGroup DeviceList][!Update][!Redraw] 53 | Hidden= 54 | 55 | [VariableIcon1] 56 | Meter=String 57 | Text= 58 | MeterStyle=VariableIcon | RightPanel 59 | Hidden= 60 | [VariableTitle1] 61 | Meter=String 62 | Text=Selected DeviceID 63 | MeterStyle=VarTitle | RightPanel 64 | Hidden= 65 | [VariableDescription1] 66 | Meter=String 67 | Text=Click to copy to clipboard 68 | MeterStyle=VarDescription | RightPanel 69 | Hidden= 70 | [VariableVariableValue1] 71 | Meter=String 72 | Text=[&DeviceIDString] 73 | MeterStyle=VarStringValue | RightPanel 74 | LeftMouseUpAction=[!SetClip [#DeviceID]] 75 | Hidden= 76 | 77 | @includeDeviceList=DeviceList.inc -------------------------------------------------------------------------------- /settings/categories/DeviceID/NotInstalled.inc: -------------------------------------------------------------------------------- 1 | [VariableTitle1] 2 | Meter=String 3 | Y=R 4 | X=20 5 | Text=Install module 6 | MeterStyle=VarTitle | RightPanel 7 | [VariableDescription1] 8 | Meter=String 9 | Text=You need to install AudioDeviceCmdlets by frgnca in order to choose a audio device. Click on the text to install AudioDeviceCmdlets. 10 | LeftMouseUpAction=[!CommandMeasure PRM GetAudioDevices] 11 | MeterStyle=VarDescription | RightPanel -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon1] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle1] 7 | Meter=String 8 | Text=Bar Type 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription1] 12 | Meter=String 13 | Text= 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | 17 | 18 | [MeasureRadio1Normal] 19 | Measure=String 20 | String=[#BarType] 21 | DynamicVariables=1 22 | IfMatch=^normal$ 23 | IfMatchAction=[!SetOption RadioString1Normal InlinePattern ".*"][!SetOption RadioButton1Normal Text "[\xECCB]"][!Update][!Redraw] 24 | IfNotMatchAction=[!SetOption RadioString1Normal InlinePattern "^$"][!SetOption RadioButton1Normal Text "[\xECCA]"][!Update][!Redraw] 25 | [RadioButton1Normal] 26 | Meter=String 27 | Text=[\xECCA] 28 | FontSize=15 29 | MeterStyle=VariableIcon | RightPanel 30 | DynamicVariables=1 31 | LeftMouseUpAction=[!SetVariable BarType "normal"][!WriteKeyValue Variables BarType "normal" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 32 | [RadioString1Normal] 33 | Meter=String 34 | Text=Normal 35 | Y=-1r 36 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 37 | MeterStyle=VarStringValue | VarColorString | RightPanel 38 | InlinePattern=^$ 39 | InlineSetting=Weight | 600 40 | LeftMouseUpAction=[!SetVariable BarType "normal"][!WriteKeyValue Variables BarType "normal" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 41 | 42 | [MeasureRadio1MirrorX] 43 | Measure=String 44 | String=[#BarType] 45 | DynamicVariables=1 46 | IfMatch=^mirrorX$ 47 | IfMatchAction=[!SetOption RadioString1MirrorX InlinePattern ".*"][!SetOption RadioButton1MirrorX Text "[\xECCB]"][!Update][!Redraw] 48 | IfNotMatchAction=[!SetOption RadioString1MirrorX InlinePattern "^$"][!SetOption RadioButton1MirrorX Text "[\xECCA]"][!Update][!Redraw] 49 | [RadioButton1MirrorX] 50 | Meter=String 51 | Text=[\xECCA] 52 | FontSize=15 53 | MeterStyle=VariableIcon | RightPanel 54 | DynamicVariables=1 55 | LeftMouseUpAction=[!SetVariable BarType "mirrorX"][!WriteKeyValue Variables BarType "mirrorX" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 56 | [RadioString1MirrorX] 57 | Meter=String 58 | Text=MirrorX 59 | Y=-1r 60 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 61 | MeterStyle=VarStringValue | VarColorString | RightPanel 62 | InlinePattern=^$ 63 | InlineSetting=Weight | 600 64 | LeftMouseUpAction=[!SetVariable BarType "mirrorX"][!WriteKeyValue Variables BarType "mirrorX" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 65 | 66 | [MeasureRadio1MirrorY] 67 | Measure=String 68 | String=[#BarType] 69 | DynamicVariables=1 70 | IfMatch=^mirrorY$ 71 | IfMatchAction=[!SetOption RadioString1MirrorY InlinePattern ".*"][!SetOption RadioButton1MirrorY Text "[\xECCB]"][!Update][!Redraw] 72 | IfNotMatchAction=[!SetOption RadioString1MirrorY InlinePattern "^$"][!SetOption RadioButton1MirrorY Text "[\xECCA]"][!Update][!Redraw] 73 | [RadioButton1MirrorY] 74 | Meter=String 75 | Text=[\xECCA] 76 | FontSize=15 77 | MeterStyle=VariableIcon | RightPanel 78 | DynamicVariables=1 79 | LeftMouseUpAction=[!SetVariable BarType "mirrorY"][!WriteKeyValue Variables BarType "mirrorY" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 80 | [RadioString1MirrorY] 81 | Meter=String 82 | Text=MirrorY 83 | Y=-1r 84 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 85 | MeterStyle=VarStringValue | VarColorString | RightPanel 86 | InlinePattern=^$ 87 | InlineSetting=Weight | 600 88 | LeftMouseUpAction=[!SetVariable BarType "mirrorY"][!WriteKeyValue Variables BarType "mirrorY" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 89 | 90 | [MeasureRadio1MirrorXY] 91 | Measure=String 92 | String=[#BarType] 93 | DynamicVariables=1 94 | IfMatch=^mirrorXY$ 95 | IfMatchAction=[!SetOption RadioString1MirrorXY InlinePattern ".*"][!SetOption RadioButton1MirrorXY Text "[\xECCB]"][!Update][!Redraw] 96 | IfNotMatchAction=[!SetOption RadioString1MirrorXY InlinePattern "^$"][!SetOption RadioButton1MirrorXY Text "[\xECCA]"][!Update][!Redraw] 97 | [RadioButton1MirrorXY] 98 | Meter=String 99 | Text=[\xECCA] 100 | FontSize=15 101 | MeterStyle=VariableIcon | RightPanel 102 | DynamicVariables=1 103 | LeftMouseUpAction=[!SetVariable BarType "mirrorXY"][!WriteKeyValue Variables BarType "mirrorXY" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 104 | [RadioString1MirrorXY] 105 | Meter=String 106 | Text=MirrorXY 107 | Y=-1r 108 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 109 | MeterStyle=VarStringValue | VarColorString | RightPanel 110 | InlinePattern=^$ 111 | InlineSetting=Weight | 600 112 | LeftMouseUpAction=[!SetVariable BarType "mirrorXY"][!WriteKeyValue Variables BarType "mirrorXY" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 113 | 114 | [MeasureRadio1Reflection] 115 | Measure=String 116 | String=[#BarType] 117 | DynamicVariables=1 118 | IfMatch=^reflection$ 119 | IfMatchAction=[!SetOption RadioString1Reflection InlinePattern ".*"][!SetOption RadioButton1Reflection Text "[\xECCB]"][!Update][!Redraw] 120 | IfNotMatchAction=[!SetOption RadioString1Reflection InlinePattern "^$"][!SetOption RadioButton1Reflection Text "[\xECCA]"][!Update][!Redraw] 121 | [RadioButton1Reflection] 122 | Meter=String 123 | Text=[\xECCA] 124 | FontSize=15 125 | MeterStyle=VariableIcon | RightPanel 126 | DynamicVariables=1 127 | LeftMouseUpAction=[!SetVariable BarType "reflection"][!WriteKeyValue Variables BarType "reflection" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 128 | [RadioString1Reflection] 129 | Meter=String 130 | Text=Reflection 131 | Y=-1r 132 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 133 | MeterStyle=VarStringValue | VarColorString | RightPanel 134 | InlinePattern=^$ 135 | InlineSetting=Weight | 600 136 | LeftMouseUpAction=[!SetVariable BarType "reflection"][!WriteKeyValue Variables BarType "reflection" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!Refresh] 137 | [VariableIcon2] 138 | Meter=String 139 | Text= 140 | MeterStyle=VariableIcon | RightPanel 141 | Hidden= 142 | [VariableTitle2] 143 | Meter=String 144 | Text=BarCount 145 | MeterStyle=VarTitle | RightPanel 146 | Hidden= 147 | [VariableDescription2] 148 | Meter=String 149 | Text=Number of Bars 150 | MeterStyle=VarDescription | RightPanel 151 | Hidden= 152 | [VariableValue2] 153 | Meter=String 154 | Text=[#Bands] 155 | MeterStyle=VarStringValue | RightPanel 156 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 157 | Hidden= 158 | [InputText2] 159 | Measure=Plugin 160 | Plugin=InputText 161 | SolidColor=[#s_RightPanelBackgroundColor] 162 | FontColor=[#s_FontColor] 163 | FontFace=[#s_FontFace] 164 | FontSize=[#s_InputTextFontSize] 165 | Disabled= 166 | X=([VariableValue2:X]) 167 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 168 | H=[VariableValue2:H] 169 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 170 | DynamicVariables=1 171 | DefaultValue=[#Bands] 172 | Command1=[!SetVariable "Bands" "$UserInput$"][!WriteKeyValue "Variables" "Bands" "[#Bands]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 173 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 174 | InputNumber=1 175 | 176 | [VariableIcon3] 177 | Meter=String 178 | Text= 179 | MeterStyle=VariableIcon | RightPanel 180 | Hidden= 181 | [VariableTitle3] 182 | Meter=String 183 | Text=Height 184 | MeterStyle=VarTitle | RightPanel 185 | Hidden= 186 | [VariableDescription3] 187 | Meter=String 188 | Text=Height of Bars 189 | MeterStyle=VarDescription | RightPanel 190 | Hidden= 191 | [VariableValue3] 192 | Meter=String 193 | Text=[#Height] 194 | MeterStyle=VarStringValue | RightPanel 195 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 196 | Hidden= 197 | [InputText3] 198 | Measure=Plugin 199 | Plugin=InputText 200 | SolidColor=[#s_RightPanelBackgroundColor] 201 | FontColor=[#s_FontColor] 202 | FontFace=[#s_FontFace] 203 | FontSize=[#s_InputTextFontSize] 204 | Disabled= 205 | X=([VariableValue3:X]) 206 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 207 | H=[VariableValue3:H] 208 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 209 | DynamicVariables=1 210 | DefaultValue=[#Height] 211 | Command1=[!SetVariable "Height" "$UserInput$"][!WriteKeyValue "Variables" "Height" "[#Height]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 212 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 213 | InputNumber=1 214 | 215 | [VariableIcon4] 216 | Meter=String 217 | Text= 218 | MeterStyle=VariableIcon | RightPanel 219 | Hidden= 220 | [VariableTitle4] 221 | Meter=String 222 | Text=Bar Width 223 | MeterStyle=VarTitle | RightPanel 224 | Hidden= 225 | [VariableDescription4] 226 | Meter=String 227 | Text=Width of individual Bars 228 | MeterStyle=VarDescription | RightPanel 229 | Hidden= 230 | [VariableValue4] 231 | Meter=String 232 | Text=[#BarWidth] 233 | MeterStyle=VarStringValue | RightPanel 234 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 235 | Hidden= 236 | [InputText4] 237 | Measure=Plugin 238 | Plugin=InputText 239 | SolidColor=[#s_RightPanelBackgroundColor] 240 | FontColor=[#s_FontColor] 241 | FontFace=[#s_FontFace] 242 | FontSize=[#s_InputTextFontSize] 243 | Disabled= 244 | X=([VariableValue4:X]) 245 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 246 | H=[VariableValue4:H] 247 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 248 | DynamicVariables=1 249 | DefaultValue=[#BarWidth] 250 | Command1=[!SetVariable "BarWidth" "$UserInput$"][!WriteKeyValue "Variables" "BarWidth" "[#BarWidth]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 251 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 252 | InputNumber=1 253 | 254 | [VariableIcon5] 255 | Meter=String 256 | Text= 257 | MeterStyle=VariableIcon | RightPanel 258 | Hidden= 259 | [VariableTitle5] 260 | Meter=String 261 | Text=Bar Gap 262 | MeterStyle=VarTitle | RightPanel 263 | Hidden= 264 | [VariableDescription5] 265 | Meter=String 266 | Text=Gap between consecutive Bars 267 | MeterStyle=VarDescription | RightPanel 268 | Hidden= 269 | [VariableValue5] 270 | Meter=String 271 | Text=[#BarGap] 272 | MeterStyle=VarStringValue | RightPanel 273 | LeftMouseUpAction=[!CommandMeasure "InputText5" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 274 | Hidden= 275 | [InputText5] 276 | Measure=Plugin 277 | Plugin=InputText 278 | SolidColor=[#s_RightPanelBackgroundColor] 279 | FontColor=[#s_FontColor] 280 | FontFace=[#s_FontFace] 281 | FontSize=[#s_InputTextFontSize] 282 | Disabled= 283 | X=([VariableValue5:X]) 284 | Y=([VariableValue5:Y] + [#s_ValueYPadding]) 285 | H=[VariableValue5:H] 286 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 287 | DynamicVariables=1 288 | DefaultValue=[#BarGap] 289 | Command1=[!SetVariable "BarGap" "$UserInput$"][!WriteKeyValue "Variables" "BarGap" "[#BarGap]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue5][!Redraw][#s_OnChangeAction] 290 | OnDismissAction=[!SetOption VariableValue5 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue5][!Redraw] 291 | InputNumber=1 292 | 293 | [VariableIcon6] 294 | Meter=String 295 | Text= 296 | MeterStyle=VariableIcon | RightPanel 297 | Hidden= 298 | [VariableTitle6] 299 | Meter=String 300 | Text=StrokeWidth 301 | MeterStyle=VarTitle | RightPanel 302 | Hidden= 303 | [VariableDescription6] 304 | Meter=String 305 | Text=Stroke width of Bars 306 | MeterStyle=VarDescription | RightPanel 307 | Hidden= 308 | [VariableValue6] 309 | Meter=String 310 | Text=[#BarStrokeWidth] 311 | MeterStyle=VarStringValue | RightPanel 312 | LeftMouseUpAction=[!CommandMeasure "InputText6" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 313 | Hidden= 314 | [InputText6] 315 | Measure=Plugin 316 | Plugin=InputText 317 | SolidColor=[#s_RightPanelBackgroundColor] 318 | FontColor=[#s_FontColor] 319 | FontFace=[#s_FontFace] 320 | FontSize=[#s_InputTextFontSize] 321 | Disabled= 322 | X=([VariableValue6:X]) 323 | Y=([VariableValue6:Y] + [#s_ValueYPadding]) 324 | H=[VariableValue6:H] 325 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 326 | DynamicVariables=1 327 | DefaultValue=[#BarStrokeWidth] 328 | Command1=[!SetVariable "BarStrokeWidth" "$UserInput$"][!WriteKeyValue "Variables" "BarStrokeWidth" "[#BarStrokeWidth]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue6][!Redraw][#s_OnChangeAction] 329 | OnDismissAction=[!SetOption VariableValue6 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue6][!Redraw] 330 | InputNumber=1 331 | 332 | [VariableIcon7] 333 | Meter=String 334 | Text= 335 | MeterStyle=VariableIcon | RightPanel 336 | Hidden= 337 | [VariableTitle7] 338 | Meter=String 339 | Text=Corner Rounding 340 | MeterStyle=VarTitle | RightPanel 341 | Hidden= 342 | [VariableDescription7] 343 | Meter=String 344 | Text=How rounded the bars are 345 | MeterStyle=VarDescription | RightPanel 346 | Hidden= 347 | [VariableValue7] 348 | Meter=String 349 | Text=[#CornerRounding] 350 | MeterStyle=VarStringValue | RightPanel 351 | LeftMouseUpAction=[!CommandMeasure "InputText7" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 352 | Hidden= 353 | [InputText7] 354 | Measure=Plugin 355 | Plugin=InputText 356 | SolidColor=[#s_RightPanelBackgroundColor] 357 | FontColor=[#s_FontColor] 358 | FontFace=[#s_FontFace] 359 | FontSize=[#s_InputTextFontSize] 360 | Disabled= 361 | X=([VariableValue7:X]) 362 | Y=([VariableValue7:Y] + [#s_ValueYPadding]) 363 | H=[VariableValue7:H] 364 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 365 | DynamicVariables=1 366 | DefaultValue=[#CornerRounding] 367 | Command1=[!SetVariable "CornerRounding" "$UserInput$"][!WriteKeyValue "Variables" "CornerRounding" "[#CornerRounding]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue7][!Redraw][#s_OnChangeAction] 368 | OnDismissAction=[!SetOption VariableValue7 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue7][!Redraw] 369 | InputNumber=1 370 | 371 | [VariableIcon8] 372 | Meter=String 373 | Text= 374 | MeterStyle=VariableIcon | RightPanel 375 | Hidden= 376 | [VariableTitle8] 377 | Meter=String 378 | Text=Levitation 379 | MeterStyle=VarTitle | RightPanel 380 | Hidden= 381 | [VariableDescription8] 382 | Meter=String 383 | Text=The amount bars go up while visualizing 384 | MeterStyle=VarDescription | RightPanel 385 | Hidden= 386 | [VariableValue8] 387 | Meter=String 388 | Text=[#Levitate] 389 | MeterStyle=VarStringValue | RightPanel 390 | LeftMouseUpAction=[!CommandMeasure "InputText8" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 391 | Hidden= 392 | [InputText8] 393 | Measure=Plugin 394 | Plugin=InputText 395 | SolidColor=[#s_RightPanelBackgroundColor] 396 | FontColor=[#s_FontColor] 397 | FontFace=[#s_FontFace] 398 | FontSize=[#s_InputTextFontSize] 399 | Disabled= 400 | X=([VariableValue8:X]) 401 | Y=([VariableValue8:Y] + [#s_ValueYPadding]) 402 | H=[VariableValue8:H] 403 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 404 | DynamicVariables=1 405 | DefaultValue=[#Levitate] 406 | Command1=[!SetVariable "Levitate" "$UserInput$"][!WriteKeyValue "Variables" "Levitate" "[#Levitate]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue8][!Redraw][#s_OnChangeAction] 407 | OnDismissAction=[!SetOption VariableValue8 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue8][!Redraw] 408 | InputNumber=1 409 | 410 | [VariableIcon9] 411 | Meter=String 412 | Text= 413 | MeterStyle=VariableIcon | RightPanel 414 | Hidden= 415 | [VariableTitle9] 416 | Meter=String 417 | Text=Angle 418 | MeterStyle=VarTitle | RightPanel 419 | Hidden= 420 | [VariableDescription9] 421 | Meter=String 422 | Text=Angle of visualizer 423 | MeterStyle=VarDescription | RightPanel 424 | Hidden= 425 | [VariableValue9] 426 | Meter=String 427 | Text=[#Angle] 428 | MeterStyle=VarStringValue | RightPanel 429 | LeftMouseUpAction=[!CommandMeasure "InputText9" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 430 | Hidden= 431 | [InputText9] 432 | Measure=Plugin 433 | Plugin=InputText 434 | SolidColor=[#s_RightPanelBackgroundColor] 435 | FontColor=[#s_FontColor] 436 | FontFace=[#s_FontFace] 437 | FontSize=[#s_InputTextFontSize] 438 | Disabled= 439 | X=([VariableValue9:X]) 440 | Y=([VariableValue9:Y] + [#s_ValueYPadding]) 441 | H=[VariableValue9:H] 442 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 443 | DynamicVariables=1 444 | DefaultValue=[#Angle] 445 | Command1=[!SetVariable "Angle" "$UserInput$"][!WriteKeyValue "Variables" "Angle" "[#Angle]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue9][!Redraw][#s_OnChangeAction] 446 | OnDismissAction=[!SetOption VariableValue9 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue9][!Redraw] 447 | InputNumber=1 448 | 449 | [VariableIcon10] 450 | Meter=String 451 | Text= 452 | MeterStyle=VariableIcon | RightPanel 453 | Hidden= 454 | [VariableTitle10] 455 | Meter=String 456 | Text=Minimum Height 457 | MeterStyle=VarTitle | RightPanel 458 | Hidden= 459 | [VariableDescription10] 460 | Meter=String 461 | Text=Minimun height of Bars 462 | MeterStyle=VarDescription | RightPanel 463 | Hidden= 464 | [VariableValue10] 465 | Meter=String 466 | Text=[#MinimumHeight] 467 | MeterStyle=VarStringValue | RightPanel 468 | LeftMouseUpAction=[!CommandMeasure "InputText10" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 469 | Hidden= 470 | [InputText10] 471 | Measure=Plugin 472 | Plugin=InputText 473 | SolidColor=[#s_RightPanelBackgroundColor] 474 | FontColor=[#s_FontColor] 475 | FontFace=[#s_FontFace] 476 | FontSize=[#s_InputTextFontSize] 477 | Disabled= 478 | X=([VariableValue10:X]) 479 | Y=([VariableValue10:Y] + [#s_ValueYPadding]) 480 | H=[VariableValue10:H] 481 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 482 | DynamicVariables=1 483 | DefaultValue=[#MinimumHeight] 484 | Command1=[!SetVariable "MinimumHeight" "$UserInput$"][!WriteKeyValue "Variables" "MinimumHeight" "[#MinimumHeight]" "#@#\Variables\[#Preset]\Bar.inc"][#ConstChangeAction][!UpdateMeter VariableValue10][!Redraw][#s_OnChangeAction] 485 | OnDismissAction=[!SetOption VariableValue10 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue10][!Redraw] 486 | InputNumber=1 -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar/MirrorX.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon0] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle0] 7 | Meter=String 8 | Text=MirrorX 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription0] 12 | Meter=String 13 | Text=Settings for MirrorX 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue0] 17 | Meter=String 18 | Text= 19 | MeterStyle=VarStringValue | Link0 | RightPanel 20 | Hidden= 21 | LeftMouseUpAction=[" "] 22 | [MeasureLinkStatus0] 23 | Measure=Calc 24 | Formula=0 25 | IfCondition=(0 = #CURRENTSECTION#) 26 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 27 | Disabled= 28 | 29 | [VariableIcon1] 30 | Meter=String 31 | Text= 32 | MeterStyle=VariableIcon | RightPanel 33 | Hidden= 34 | [VariableTitle1] 35 | Meter=String 36 | Text=First X-Offset 37 | MeterStyle=VarTitle | RightPanel 38 | Hidden= 39 | [VariableDescription1] 40 | Meter=String 41 | Text= 42 | MeterStyle=VarDescription | RightPanel 43 | Hidden= 44 | [VariableValue1] 45 | Meter=String 46 | Text=[#Group1XOffset] 47 | MeterStyle=VarStringValue | RightPanel 48 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 49 | Hidden= 50 | [InputText1] 51 | Measure=Plugin 52 | Plugin=InputText 53 | SolidColor=[#s_RightPanelBackgroundColor] 54 | FontColor=[#s_FontColor] 55 | FontFace=[#s_FontFace] 56 | FontSize=[#s_InputTextFontSize] 57 | Disabled= 58 | X=([VariableValue1:X]) 59 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 60 | H=[VariableValue1:H] 61 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 62 | DynamicVariables=1 63 | DefaultValue=[#Group1XOffset] 64 | Command1=[!SetVariable "Group1XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1XOffset" "[#Group1XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 65 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 66 | InputNumber=1 67 | 68 | [VariableIcon2] 69 | Meter=String 70 | Text= 71 | MeterStyle=VariableIcon | RightPanel 72 | Hidden= 73 | [VariableTitle2] 74 | Meter=String 75 | Text=Second X-Offset 76 | MeterStyle=VarTitle | RightPanel 77 | Hidden= 78 | [VariableDescription2] 79 | Meter=String 80 | Text= 81 | MeterStyle=VarDescription | RightPanel 82 | Hidden= 83 | [VariableValue2] 84 | Meter=String 85 | Text=[#Group2XOffset] 86 | MeterStyle=VarStringValue | RightPanel 87 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 88 | Hidden= 89 | [InputText2] 90 | Measure=Plugin 91 | Plugin=InputText 92 | SolidColor=[#s_RightPanelBackgroundColor] 93 | FontColor=[#s_FontColor] 94 | FontFace=[#s_FontFace] 95 | FontSize=[#s_InputTextFontSize] 96 | Disabled= 97 | X=([VariableValue2:X]) 98 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 99 | H=[VariableValue2:H] 100 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 101 | DynamicVariables=1 102 | DefaultValue=[#Group2XOffset] 103 | Command1=[!SetVariable "Group2XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2XOffset" "[#Group2XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 104 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 105 | InputNumber=1 106 | 107 | [VariableIcon3] 108 | Meter=String 109 | Text= 110 | MeterStyle=VariableIcon | RightPanel 111 | Hidden= 112 | [VariableTitle3] 113 | Meter=String 114 | Text=First Y-Offset 115 | MeterStyle=VarTitle | RightPanel 116 | Hidden= 117 | [VariableDescription3] 118 | Meter=String 119 | Text= 120 | MeterStyle=VarDescription | RightPanel 121 | Hidden= 122 | [VariableValue3] 123 | Meter=String 124 | Text=[#Group1YOffset] 125 | MeterStyle=VarStringValue | RightPanel 126 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 127 | Hidden= 128 | [InputText3] 129 | Measure=Plugin 130 | Plugin=InputText 131 | SolidColor=[#s_RightPanelBackgroundColor] 132 | FontColor=[#s_FontColor] 133 | FontFace=[#s_FontFace] 134 | FontSize=[#s_InputTextFontSize] 135 | Disabled= 136 | X=([VariableValue3:X]) 137 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 138 | H=[VariableValue3:H] 139 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 140 | DynamicVariables=1 141 | DefaultValue=[#Group1YOffset] 142 | Command1=[!SetVariable "Group1YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1YOffset" "[#Group1YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 143 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 144 | InputNumber=1 145 | 146 | [VariableIcon4] 147 | Meter=String 148 | Text= 149 | MeterStyle=VariableIcon | RightPanel 150 | Hidden= 151 | [VariableTitle4] 152 | Meter=String 153 | Text=Second Y-Offset 154 | MeterStyle=VarTitle | RightPanel 155 | Hidden= 156 | [VariableDescription4] 157 | Meter=String 158 | Text= 159 | MeterStyle=VarDescription | RightPanel 160 | Hidden= 161 | [VariableValue4] 162 | Meter=String 163 | Text=[#Group2YOffset] 164 | MeterStyle=VarStringValue | RightPanel 165 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 166 | Hidden= 167 | [InputText4] 168 | Measure=Plugin 169 | Plugin=InputText 170 | SolidColor=[#s_RightPanelBackgroundColor] 171 | FontColor=[#s_FontColor] 172 | FontFace=[#s_FontFace] 173 | FontSize=[#s_InputTextFontSize] 174 | Disabled= 175 | X=([VariableValue4:X]) 176 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 177 | H=[VariableValue4:H] 178 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 179 | DynamicVariables=1 180 | DefaultValue=[#Group2YOffset] 181 | Command1=[!SetVariable "Group2YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2YOffset" "[#Group2YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 182 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 183 | InputNumber=1 184 | 185 | 186 | [VariableIcon5] 187 | Meter=String 188 | Text= 189 | MeterStyle=VariableIcon | RightPanel 190 | Hidden= 191 | [VariableTitle5] 192 | Meter=String 193 | Text=X-Flip 194 | MeterStyle=VarTitle | RightPanel 195 | Hidden= 196 | [VariableDescription5] 197 | Meter=String 198 | Text= 199 | MeterStyle=VarDescription | RightPanel 200 | Hidden= 201 | [MeasureList5Group1] 202 | Measure=Calc 203 | Formula=[#Group1XFlip] 204 | DynamicVariables=1 205 | IfEqualValue=1 206 | IfEqualAction=[!SetOption "ListCheck5Group1" Text "[\xE73A]"][!Update][!Redraw] 207 | IfBelowValue=1 208 | IfBelowAction=[!SetOption "ListCheck5Group1" Text "[\xE739]"][!Update][!Redraw] 209 | [ListCheck5Group1] 210 | Meter=String 211 | Text=[\xE739] 212 | FontSize=15 213 | MeterStyle=VariableIcon | RightPanel 214 | DynamicVariables=1 215 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList5Group1"][!Redraw][#s_OnChangeAction] 216 | [ListString5Group1] 217 | Meter=String 218 | Text=Group1 219 | Y=-1r 220 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 221 | MeterStyle=VarStringValue | VarColorString | RightPanel 222 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList5Group1"][!Redraw][#s_OnChangeAction] 223 | 224 | [MeasureList5Group2] 225 | Measure=Calc 226 | Formula=[#Group2XFlip] 227 | DynamicVariables=1 228 | IfEqualValue=1 229 | IfEqualAction=[!SetOption "ListCheck5Group2" Text "[\xE73A]"][!Update][!Redraw] 230 | IfBelowValue=1 231 | IfBelowAction=[!SetOption "ListCheck5Group2" Text "[\xE739]"][!Update][!Redraw] 232 | [ListCheck5Group2] 233 | Meter=String 234 | Text=[\xE739] 235 | FontSize=15 236 | MeterStyle=VariableIcon | RightPanel 237 | DynamicVariables=1 238 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList5Group2"][!Redraw][#s_OnChangeAction] 239 | [ListString5Group2] 240 | Meter=String 241 | Text=Group2 242 | Y=-1r 243 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 244 | MeterStyle=VarStringValue | VarColorString | RightPanel 245 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList5Group2"][!Redraw][#s_OnChangeAction] 246 | 247 | [VariableIcon6] 248 | Meter=String 249 | Text= 250 | MeterStyle=VariableIcon | RightPanel 251 | Hidden= 252 | [VariableTitle6] 253 | Meter=String 254 | Text=Y-Flip 255 | MeterStyle=VarTitle | RightPanel 256 | Hidden= 257 | [VariableDescription6] 258 | Meter=String 259 | Text= 260 | MeterStyle=VarDescription | RightPanel 261 | Hidden= 262 | [MeasureList6Group1] 263 | Measure=Calc 264 | Formula=[#Group1YFlip] 265 | DynamicVariables=1 266 | IfEqualValue=1 267 | IfEqualAction=[!SetOption "ListCheck6Group1" Text "[\xE73A]"][!Update][!Redraw] 268 | IfBelowValue=1 269 | IfBelowAction=[!SetOption "ListCheck6Group1" Text "[\xE739]"][!Update][!Redraw] 270 | [ListCheck6Group1] 271 | Meter=String 272 | Text=[\xE739] 273 | FontSize=15 274 | MeterStyle=VariableIcon | RightPanel 275 | DynamicVariables=1 276 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 277 | [ListString6Group1] 278 | Meter=String 279 | Text=Group1 280 | Y=-1r 281 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 282 | MeterStyle=VarStringValue | VarColorString | RightPanel 283 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 284 | 285 | [MeasureList6Group2] 286 | Measure=Calc 287 | Formula=[#Group2YFlip] 288 | DynamicVariables=1 289 | IfEqualValue=1 290 | IfEqualAction=[!SetOption "ListCheck6Group2" Text "[\xE73A]"][!Update][!Redraw] 291 | IfBelowValue=1 292 | IfBelowAction=[!SetOption "ListCheck6Group2" Text "[\xE739]"][!Update][!Redraw] 293 | [ListCheck6Group2] 294 | Meter=String 295 | Text=[\xE739] 296 | FontSize=15 297 | MeterStyle=VariableIcon | RightPanel 298 | DynamicVariables=1 299 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] 300 | [ListString6Group2] 301 | Meter=String 302 | Text=Group2 303 | Y=-1r 304 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 305 | MeterStyle=VarStringValue | VarColorString | RightPanel 306 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorX.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar/MirrorXY.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon0] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle0] 7 | Meter=String 8 | Text=MirrorXY 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription0] 12 | Meter=String 13 | Text=Settings for MirrorXY 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue0] 17 | Meter=String 18 | Text= 19 | MeterStyle=VarStringValue | Link0 | RightPanel 20 | Hidden= 21 | LeftMouseUpAction=[" "] 22 | [MeasureLinkStatus0] 23 | Measure=Calc 24 | Formula=0 25 | IfCondition=(0 = #CURRENTSECTION#) 26 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 27 | Disabled= 28 | 29 | [VariableIcon1] 30 | Meter=String 31 | Text= 32 | MeterStyle=VariableIcon | RightPanel 33 | Hidden= 34 | [VariableTitle1] 35 | Meter=String 36 | Text=First X-Offset 37 | MeterStyle=VarTitle | RightPanel 38 | Hidden= 39 | [VariableDescription1] 40 | Meter=String 41 | Text= 42 | MeterStyle=VarDescription | RightPanel 43 | Hidden= 44 | [VariableValue1] 45 | Meter=String 46 | Text=[#Group1XOffset] 47 | MeterStyle=VarStringValue | RightPanel 48 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 49 | Hidden= 50 | [InputText1] 51 | Measure=Plugin 52 | Plugin=InputText 53 | SolidColor=[#s_RightPanelBackgroundColor] 54 | FontColor=[#s_FontColor] 55 | FontFace=[#s_FontFace] 56 | FontSize=[#s_InputTextFontSize] 57 | Disabled= 58 | X=([VariableValue1:X]) 59 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 60 | H=[VariableValue1:H] 61 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 62 | DynamicVariables=1 63 | DefaultValue=[#Group1XOffset] 64 | Command1=[!SetVariable "Group1XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1XOffset" "[#Group1XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 65 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 66 | InputNumber=1 67 | 68 | [VariableIcon2] 69 | Meter=String 70 | Text= 71 | MeterStyle=VariableIcon | RightPanel 72 | Hidden= 73 | [VariableTitle2] 74 | Meter=String 75 | Text=First Y-Offset 76 | MeterStyle=VarTitle | RightPanel 77 | Hidden= 78 | [VariableDescription2] 79 | Meter=String 80 | Text= 81 | MeterStyle=VarDescription | RightPanel 82 | Hidden= 83 | [VariableValue2] 84 | Meter=String 85 | Text=[#Group1YOffset] 86 | MeterStyle=VarStringValue | RightPanel 87 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 88 | Hidden= 89 | [InputText2] 90 | Measure=Plugin 91 | Plugin=InputText 92 | SolidColor=[#s_RightPanelBackgroundColor] 93 | FontColor=[#s_FontColor] 94 | FontFace=[#s_FontFace] 95 | FontSize=[#s_InputTextFontSize] 96 | Disabled= 97 | X=([VariableValue2:X]) 98 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 99 | H=[VariableValue2:H] 100 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 101 | DynamicVariables=1 102 | DefaultValue=[#Group1YOffset] 103 | Command1=[!SetVariable "Group1YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1YOffset" "[#Group1YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 104 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 105 | InputNumber=1 106 | 107 | [VariableIcon3] 108 | Meter=String 109 | Text= 110 | MeterStyle=VariableIcon | RightPanel 111 | Hidden= 112 | [VariableTitle3] 113 | Meter=String 114 | Text=Second X-Offset 115 | MeterStyle=VarTitle | RightPanel 116 | Hidden= 117 | [VariableDescription3] 118 | Meter=String 119 | Text= 120 | MeterStyle=VarDescription | RightPanel 121 | Hidden= 122 | [VariableValue3] 123 | Meter=String 124 | Text=[#Group2XOffset] 125 | MeterStyle=VarStringValue | RightPanel 126 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 127 | Hidden= 128 | [InputText3] 129 | Measure=Plugin 130 | Plugin=InputText 131 | SolidColor=[#s_RightPanelBackgroundColor] 132 | FontColor=[#s_FontColor] 133 | FontFace=[#s_FontFace] 134 | FontSize=[#s_InputTextFontSize] 135 | Disabled= 136 | X=([VariableValue3:X]) 137 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 138 | H=[VariableValue3:H] 139 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 140 | DynamicVariables=1 141 | DefaultValue=[#Group2XOffset] 142 | Command1=[!SetVariable "Group2XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2XOffset" "[#Group2XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 143 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 144 | InputNumber=1 145 | 146 | [VariableIcon4] 147 | Meter=String 148 | Text= 149 | MeterStyle=VariableIcon | RightPanel 150 | Hidden= 151 | [VariableTitle4] 152 | Meter=String 153 | Text=Second Y-Offset 154 | MeterStyle=VarTitle | RightPanel 155 | Hidden= 156 | [VariableDescription4] 157 | Meter=String 158 | Text= 159 | MeterStyle=VarDescription | RightPanel 160 | Hidden= 161 | [VariableValue4] 162 | Meter=String 163 | Text=[#Group2YOffset] 164 | MeterStyle=VarStringValue | RightPanel 165 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 166 | Hidden= 167 | [InputText4] 168 | Measure=Plugin 169 | Plugin=InputText 170 | SolidColor=[#s_RightPanelBackgroundColor] 171 | FontColor=[#s_FontColor] 172 | FontFace=[#s_FontFace] 173 | FontSize=[#s_InputTextFontSize] 174 | Disabled= 175 | X=([VariableValue4:X]) 176 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 177 | H=[VariableValue4:H] 178 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 179 | DynamicVariables=1 180 | DefaultValue=[#Group2YOffset] 181 | Command1=[!SetVariable "Group2YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2YOffset" "[#Group2YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 182 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 183 | InputNumber=1 184 | 185 | [VariableIcon5] 186 | Meter=String 187 | Text= 188 | MeterStyle=VariableIcon | RightPanel 189 | Hidden= 190 | [VariableTitle5] 191 | Meter=String 192 | Text=Third X-Offset 193 | MeterStyle=VarTitle | RightPanel 194 | Hidden= 195 | [VariableDescription5] 196 | Meter=String 197 | Text= 198 | MeterStyle=VarDescription | RightPanel 199 | Hidden= 200 | [VariableValue5] 201 | Meter=String 202 | Text=[#Group3XOffset] 203 | MeterStyle=VarStringValue | RightPanel 204 | LeftMouseUpAction=[!CommandMeasure "InputText5" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 205 | Hidden= 206 | [InputText5] 207 | Measure=Plugin 208 | Plugin=InputText 209 | SolidColor=[#s_RightPanelBackgroundColor] 210 | FontColor=[#s_FontColor] 211 | FontFace=[#s_FontFace] 212 | FontSize=[#s_InputTextFontSize] 213 | Disabled= 214 | X=([VariableValue5:X]) 215 | Y=([VariableValue5:Y] + [#s_ValueYPadding]) 216 | H=[VariableValue5:H] 217 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 218 | DynamicVariables=1 219 | DefaultValue=[#Group3XOffset] 220 | Command1=[!SetVariable "Group3XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group3XOffset" "[#Group3XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue5][!Redraw][#s_OnChangeAction] 221 | OnDismissAction=[!SetOption VariableValue5 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue5][!Redraw] 222 | InputNumber=1 223 | 224 | [VariableIcon6] 225 | Meter=String 226 | Text= 227 | MeterStyle=VariableIcon | RightPanel 228 | Hidden= 229 | [VariableTitle6] 230 | Meter=String 231 | Text=Third Y-Offset 232 | MeterStyle=VarTitle | RightPanel 233 | Hidden= 234 | [VariableDescription6] 235 | Meter=String 236 | Text= 237 | MeterStyle=VarDescription | RightPanel 238 | Hidden= 239 | [VariableValue6] 240 | Meter=String 241 | Text=[#Group3YOffset] 242 | MeterStyle=VarStringValue | RightPanel 243 | LeftMouseUpAction=[!CommandMeasure "InputText6" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 244 | Hidden= 245 | [InputText6] 246 | Measure=Plugin 247 | Plugin=InputText 248 | SolidColor=[#s_RightPanelBackgroundColor] 249 | FontColor=[#s_FontColor] 250 | FontFace=[#s_FontFace] 251 | FontSize=[#s_InputTextFontSize] 252 | Disabled= 253 | X=([VariableValue6:X]) 254 | Y=([VariableValue6:Y] + [#s_ValueYPadding]) 255 | H=[VariableValue6:H] 256 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 257 | DynamicVariables=1 258 | DefaultValue=[#Group3YOffset] 259 | Command1=[!SetVariable "Group3YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group3YOffset" "[#Group3YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue6][!Redraw][#s_OnChangeAction] 260 | OnDismissAction=[!SetOption VariableValue6 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue6][!Redraw] 261 | InputNumber=1 262 | 263 | [VariableIcon7] 264 | Meter=String 265 | Text= 266 | MeterStyle=VariableIcon | RightPanel 267 | Hidden= 268 | [VariableTitle7] 269 | Meter=String 270 | Text=Fourth X-Offset 271 | MeterStyle=VarTitle | RightPanel 272 | Hidden= 273 | [VariableDescription7] 274 | Meter=String 275 | Text= 276 | MeterStyle=VarDescription | RightPanel 277 | Hidden= 278 | [VariableValue7] 279 | Meter=String 280 | Text=[#Group4XOffset] 281 | MeterStyle=VarStringValue | RightPanel 282 | LeftMouseUpAction=[!CommandMeasure "InputText7" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 283 | Hidden= 284 | [InputText7] 285 | Measure=Plugin 286 | Plugin=InputText 287 | SolidColor=[#s_RightPanelBackgroundColor] 288 | FontColor=[#s_FontColor] 289 | FontFace=[#s_FontFace] 290 | FontSize=[#s_InputTextFontSize] 291 | Disabled= 292 | X=([VariableValue7:X]) 293 | Y=([VariableValue7:Y] + [#s_ValueYPadding]) 294 | H=[VariableValue7:H] 295 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 296 | DynamicVariables=1 297 | DefaultValue=[#Group4XOffset] 298 | Command1=[!SetVariable "Group4XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group4XOffset" "[#Group4XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue7][!Redraw][#s_OnChangeAction] 299 | OnDismissAction=[!SetOption VariableValue7 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue7][!Redraw] 300 | InputNumber=1 301 | 302 | [VariableIcon8] 303 | Meter=String 304 | Text= 305 | MeterStyle=VariableIcon | RightPanel 306 | Hidden= 307 | [VariableTitle8] 308 | Meter=String 309 | Text=Fourth Y-Offset 310 | MeterStyle=VarTitle | RightPanel 311 | Hidden= 312 | [VariableDescription8] 313 | Meter=String 314 | Text= 315 | MeterStyle=VarDescription | RightPanel 316 | Hidden= 317 | [VariableValue8] 318 | Meter=String 319 | Text=[#Group4YOffset] 320 | MeterStyle=VarStringValue | RightPanel 321 | LeftMouseUpAction=[!CommandMeasure "InputText8" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 322 | Hidden= 323 | [InputText8] 324 | Measure=Plugin 325 | Plugin=InputText 326 | SolidColor=[#s_RightPanelBackgroundColor] 327 | FontColor=[#s_FontColor] 328 | FontFace=[#s_FontFace] 329 | FontSize=[#s_InputTextFontSize] 330 | Disabled= 331 | X=([VariableValue8:X]) 332 | Y=([VariableValue8:Y] + [#s_ValueYPadding]) 333 | H=[VariableValue8:H] 334 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 335 | DynamicVariables=1 336 | DefaultValue=[#Group4YOffset] 337 | Command1=[!SetVariable "Group4YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group4YOffset" "[#Group4YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeter VariableValue8][!Redraw][#s_OnChangeAction] 338 | OnDismissAction=[!SetOption VariableValue8 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue8][!Redraw] 339 | InputNumber=1 340 | 341 | 342 | [VariableIcon9] 343 | Meter=String 344 | Text= 345 | MeterStyle=VariableIcon | RightPanel 346 | Hidden= 347 | [VariableTitle9] 348 | Meter=String 349 | Text=X-Flip 350 | MeterStyle=VarTitle | RightPanel 351 | Hidden= 352 | [VariableDescription9] 353 | Meter=String 354 | Text= 355 | MeterStyle=VarDescription | RightPanel 356 | Hidden= 357 | [MeasureList9Group1] 358 | Measure=Calc 359 | Formula=[#Group1XFlip] 360 | DynamicVariables=1 361 | IfEqualValue=1 362 | IfEqualAction=[!SetOption "ListCheck9Group1" Text "[\xE73A]"][!Update][!Redraw] 363 | IfBelowValue=1 364 | IfBelowAction=[!SetOption "ListCheck9Group1" Text "[\xE739]"][!Update][!Redraw] 365 | [ListCheck9Group1] 366 | Meter=String 367 | Text=[\xE739] 368 | FontSize=15 369 | MeterStyle=VariableIcon | RightPanel 370 | DynamicVariables=1 371 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group1"][!Redraw][#s_OnChangeAction] 372 | [ListString9Group1] 373 | Meter=String 374 | Text=Group1 375 | Y=-1r 376 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 377 | MeterStyle=VarStringValue | VarColorString | RightPanel 378 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group1"][!Redraw][#s_OnChangeAction] 379 | 380 | [MeasureList9Group2] 381 | Measure=Calc 382 | Formula=[#Group2XFlip] 383 | DynamicVariables=1 384 | IfEqualValue=1 385 | IfEqualAction=[!SetOption "ListCheck9Group2" Text "[\xE73A]"][!Update][!Redraw] 386 | IfBelowValue=1 387 | IfBelowAction=[!SetOption "ListCheck9Group2" Text "[\xE739]"][!Update][!Redraw] 388 | [ListCheck9Group2] 389 | Meter=String 390 | Text=[\xE739] 391 | FontSize=15 392 | MeterStyle=VariableIcon | RightPanel 393 | DynamicVariables=1 394 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group2"][!Redraw][#s_OnChangeAction] 395 | [ListString9Group2] 396 | Meter=String 397 | Text=Group2 398 | Y=-1r 399 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 400 | MeterStyle=VarStringValue | VarColorString | RightPanel 401 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group2"][!Redraw][#s_OnChangeAction] 402 | 403 | [MeasureList9Group3] 404 | Measure=Calc 405 | Formula=[#Group3XFlip] 406 | DynamicVariables=1 407 | IfEqualValue=1 408 | IfEqualAction=[!SetOption "ListCheck9Group3" Text "[\xE73A]"][!Update][!Redraw] 409 | IfBelowValue=1 410 | IfBelowAction=[!SetOption "ListCheck9Group3" Text "[\xE739]"][!Update][!Redraw] 411 | [ListCheck9Group3] 412 | Meter=String 413 | Text=[\xE739] 414 | FontSize=15 415 | MeterStyle=VariableIcon | RightPanel 416 | DynamicVariables=1 417 | LeftMouseUpAction=[!SetVariable Group3XFlip "(1-[#Group3XFlip])"][!WriteKeyValue Variables Group3XFlip "[#Group3XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group3"][!Redraw][#s_OnChangeAction] 418 | [ListString9Group3] 419 | Meter=String 420 | Text=Group3 421 | Y=-1r 422 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 423 | MeterStyle=VarStringValue | VarColorString | RightPanel 424 | LeftMouseUpAction=[!SetVariable Group3XFlip "(1-[#Group3XFlip])"][!WriteKeyValue Variables Group3XFlip "[#Group3XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group3"][!Redraw][#s_OnChangeAction] 425 | 426 | [MeasureList9Group4] 427 | Measure=Calc 428 | Formula=[#Group4XFlip] 429 | DynamicVariables=1 430 | IfEqualValue=1 431 | IfEqualAction=[!SetOption "ListCheck9Group4" Text "[\xE73A]"][!Update][!Redraw] 432 | IfBelowValue=1 433 | IfBelowAction=[!SetOption "ListCheck9Group4" Text "[\xE739]"][!Update][!Redraw] 434 | [ListCheck9Group4] 435 | Meter=String 436 | Text=[\xE739] 437 | FontSize=15 438 | MeterStyle=VariableIcon | RightPanel 439 | DynamicVariables=1 440 | LeftMouseUpAction=[!SetVariable Group4XFlip "(1-[#Group4XFlip])"][!WriteKeyValue Variables Group4XFlip "[#Group4XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group4"][!Redraw][#s_OnChangeAction] 441 | [ListString9Group4] 442 | Meter=String 443 | Text=Group4 444 | Y=-1r 445 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 446 | MeterStyle=VarStringValue | VarColorString | RightPanel 447 | LeftMouseUpAction=[!SetVariable Group4XFlip "(1-[#Group4XFlip])"][!WriteKeyValue Variables Group4XFlip "[#Group4XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList9Group4"][!Redraw][#s_OnChangeAction] 448 | 449 | [VariableIcon10] 450 | Meter=String 451 | Text= 452 | MeterStyle=VariableIcon | RightPanel 453 | Hidden= 454 | [VariableTitle10] 455 | Meter=String 456 | Text=Y-Flip 457 | MeterStyle=VarTitle | RightPanel 458 | Hidden= 459 | [VariableDescription10] 460 | Meter=String 461 | Text= 462 | MeterStyle=VarDescription | RightPanel 463 | Hidden= 464 | [MeasureList10Group1] 465 | Measure=Calc 466 | Formula=[#Group1YFlip] 467 | DynamicVariables=1 468 | IfEqualValue=1 469 | IfEqualAction=[!SetOption "ListCheck10Group1" Text "[\xE73A]"][!Update][!Redraw] 470 | IfBelowValue=1 471 | IfBelowAction=[!SetOption "ListCheck10Group1" Text "[\xE739]"][!Update][!Redraw] 472 | [ListCheck10Group1] 473 | Meter=String 474 | Text=[\xE739] 475 | FontSize=15 476 | MeterStyle=VariableIcon | RightPanel 477 | DynamicVariables=1 478 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group1"][!Redraw][#s_OnChangeAction] 479 | [ListString10Group1] 480 | Meter=String 481 | Text=Group1 482 | Y=-1r 483 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 484 | MeterStyle=VarStringValue | VarColorString | RightPanel 485 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group1"][!Redraw][#s_OnChangeAction] 486 | 487 | [MeasureList10Group2] 488 | Measure=Calc 489 | Formula=[#Group2YFlip] 490 | DynamicVariables=1 491 | IfEqualValue=1 492 | IfEqualAction=[!SetOption "ListCheck10Group2" Text "[\xE73A]"][!Update][!Redraw] 493 | IfBelowValue=1 494 | IfBelowAction=[!SetOption "ListCheck10Group2" Text "[\xE739]"][!Update][!Redraw] 495 | [ListCheck10Group2] 496 | Meter=String 497 | Text=[\xE739] 498 | FontSize=15 499 | MeterStyle=VariableIcon | RightPanel 500 | DynamicVariables=1 501 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group2"][!Redraw][#s_OnChangeAction] 502 | [ListString10Group2] 503 | Meter=String 504 | Text=Group2 505 | Y=-1r 506 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 507 | MeterStyle=VarStringValue | VarColorString | RightPanel 508 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group2"][!Redraw][#s_OnChangeAction] 509 | 510 | [MeasureList10Group3] 511 | Measure=Calc 512 | Formula=[#Group3YFlip] 513 | DynamicVariables=1 514 | IfEqualValue=1 515 | IfEqualAction=[!SetOption "ListCheck10Group3" Text "[\xE73A]"][!Update][!Redraw] 516 | IfBelowValue=1 517 | IfBelowAction=[!SetOption "ListCheck10Group3" Text "[\xE739]"][!Update][!Redraw] 518 | [ListCheck10Group3] 519 | Meter=String 520 | Text=[\xE739] 521 | FontSize=15 522 | MeterStyle=VariableIcon | RightPanel 523 | DynamicVariables=1 524 | LeftMouseUpAction=[!SetVariable Group3YFlip "(1-[#Group3YFlip])"][!WriteKeyValue Variables Group3YFlip "[#Group3YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group3"][!Redraw][#s_OnChangeAction] 525 | [ListString10Group3] 526 | Meter=String 527 | Text=Group3 528 | Y=-1r 529 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 530 | MeterStyle=VarStringValue | VarColorString | RightPanel 531 | LeftMouseUpAction=[!SetVariable Group3YFlip "(1-[#Group3YFlip])"][!WriteKeyValue Variables Group3YFlip "[#Group3YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group3"][!Redraw][#s_OnChangeAction] 532 | 533 | [MeasureList10Group4] 534 | Measure=Calc 535 | Formula=[#Group4YFlip] 536 | DynamicVariables=1 537 | IfEqualValue=1 538 | IfEqualAction=[!SetOption "ListCheck10Group4" Text "[\xE73A]"][!Update][!Redraw] 539 | IfBelowValue=1 540 | IfBelowAction=[!SetOption "ListCheck10Group4" Text "[\xE739]"][!Update][!Redraw] 541 | [ListCheck10Group4] 542 | Meter=String 543 | Text=[\xE739] 544 | FontSize=15 545 | MeterStyle=VariableIcon | RightPanel 546 | DynamicVariables=1 547 | LeftMouseUpAction=[!SetVariable Group4YFlip "(1-[#Group4YFlip])"][!WriteKeyValue Variables Group4YFlip "[#Group4YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group4"][!Redraw][#s_OnChangeAction] 548 | [ListString10Group4] 549 | Meter=String 550 | Text=Group4 551 | Y=-1r 552 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 553 | MeterStyle=VarStringValue | VarColorString | RightPanel 554 | LeftMouseUpAction=[!SetVariable Group4YFlip "(1-[#Group4YFlip])"][!WriteKeyValue Variables Group4YFlip "[#Group4YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorXY.inc"][!UpdateMeasure "MeasureList10Group4"][!Redraw][#s_OnChangeAction] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar/MirrorY.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon0] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle0] 7 | Meter=String 8 | Text=MirrorY 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription0] 12 | Meter=String 13 | Text=Settings for MirrorY 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue0] 17 | Meter=String 18 | Text= 19 | MeterStyle=VarStringValue | Link0 | RightPanel 20 | Hidden= 21 | LeftMouseUpAction=[" "] 22 | [MeasureLinkStatus0] 23 | Measure=Calc 24 | Formula=0 25 | IfCondition=(0 = #CURRENTSECTION#) 26 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 27 | Disabled= 28 | 29 | [VariableIcon1] 30 | Meter=String 31 | Text= 32 | MeterStyle=VariableIcon | RightPanel 33 | Hidden= 34 | [VariableTitle1] 35 | Meter=String 36 | Text=First X-Offset 37 | MeterStyle=VarTitle | RightPanel 38 | Hidden= 39 | [VariableDescription1] 40 | Meter=String 41 | Text= 42 | MeterStyle=VarDescription | RightPanel 43 | Hidden= 44 | [VariableValue1] 45 | Meter=String 46 | Text=[#Group1XOffset] 47 | MeterStyle=VarStringValue | RightPanel 48 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 49 | Hidden= 50 | [InputText1] 51 | Measure=Plugin 52 | Plugin=InputText 53 | SolidColor=[#s_RightPanelBackgroundColor] 54 | FontColor=[#s_FontColor] 55 | FontFace=[#s_FontFace] 56 | FontSize=[#s_InputTextFontSize] 57 | Disabled= 58 | X=([VariableValue1:X]) 59 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 60 | H=[VariableValue1:H] 61 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 62 | DynamicVariables=1 63 | DefaultValue=[#Group1XOffset] 64 | Command1=[!SetVariable "Group1XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1XOffset" "[#Group1XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 65 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 66 | InputNumber=1 67 | 68 | [VariableIcon2] 69 | Meter=String 70 | Text= 71 | MeterStyle=VariableIcon | RightPanel 72 | Hidden= 73 | [VariableTitle2] 74 | Meter=String 75 | Text=Second X-Offset 76 | MeterStyle=VarTitle | RightPanel 77 | Hidden= 78 | [VariableDescription2] 79 | Meter=String 80 | Text= 81 | MeterStyle=VarDescription | RightPanel 82 | Hidden= 83 | [VariableValue2] 84 | Meter=String 85 | Text=[#Group2XOffset] 86 | MeterStyle=VarStringValue | RightPanel 87 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 88 | Hidden= 89 | [InputText2] 90 | Measure=Plugin 91 | Plugin=InputText 92 | SolidColor=[#s_RightPanelBackgroundColor] 93 | FontColor=[#s_FontColor] 94 | FontFace=[#s_FontFace] 95 | FontSize=[#s_InputTextFontSize] 96 | Disabled= 97 | X=([VariableValue2:X]) 98 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 99 | H=[VariableValue2:H] 100 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 101 | DynamicVariables=1 102 | DefaultValue=[#Group2XOffset] 103 | Command1=[!SetVariable "Group2XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2XOffset" "[#Group2XOffset]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 104 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 105 | InputNumber=1 106 | 107 | [VariableIcon3] 108 | Meter=String 109 | Text= 110 | MeterStyle=VariableIcon | RightPanel 111 | Hidden= 112 | [VariableTitle3] 113 | Meter=String 114 | Text=First Y-Offset 115 | MeterStyle=VarTitle | RightPanel 116 | Hidden= 117 | [VariableDescription3] 118 | Meter=String 119 | Text= 120 | MeterStyle=VarDescription | RightPanel 121 | Hidden= 122 | [VariableValue3] 123 | Meter=String 124 | Text=[#Group1YOffset] 125 | MeterStyle=VarStringValue | RightPanel 126 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 127 | Hidden= 128 | [InputText3] 129 | Measure=Plugin 130 | Plugin=InputText 131 | SolidColor=[#s_RightPanelBackgroundColor] 132 | FontColor=[#s_FontColor] 133 | FontFace=[#s_FontFace] 134 | FontSize=[#s_InputTextFontSize] 135 | Disabled= 136 | X=([VariableValue3:X]) 137 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 138 | H=[VariableValue3:H] 139 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 140 | DynamicVariables=1 141 | DefaultValue=[#Group1YOffset] 142 | Command1=[!SetVariable "Group1YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1YOffset" "[#Group1YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 143 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 144 | InputNumber=1 145 | 146 | [VariableIcon4] 147 | Meter=String 148 | Text= 149 | MeterStyle=VariableIcon | RightPanel 150 | Hidden= 151 | [VariableTitle4] 152 | Meter=String 153 | Text=Second Y-Offset 154 | MeterStyle=VarTitle | RightPanel 155 | Hidden= 156 | [VariableDescription4] 157 | Meter=String 158 | Text= 159 | MeterStyle=VarDescription | RightPanel 160 | Hidden= 161 | [VariableValue4] 162 | Meter=String 163 | Text=[#Group2YOffset] 164 | MeterStyle=VarStringValue | RightPanel 165 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 166 | Hidden= 167 | [InputText4] 168 | Measure=Plugin 169 | Plugin=InputText 170 | SolidColor=[#s_RightPanelBackgroundColor] 171 | FontColor=[#s_FontColor] 172 | FontFace=[#s_FontFace] 173 | FontSize=[#s_InputTextFontSize] 174 | Disabled= 175 | X=([VariableValue4:X]) 176 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 177 | H=[VariableValue4:H] 178 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 179 | DynamicVariables=1 180 | DefaultValue=[#Group2YOffset] 181 | Command1=[!SetVariable "Group2YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2YOffset" "[#Group2YOffset]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 182 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 183 | InputNumber=1 184 | 185 | 186 | [VariableIcon5] 187 | Meter=String 188 | Text= 189 | MeterStyle=VariableIcon | RightPanel 190 | Hidden= 191 | [VariableTitle5] 192 | Meter=String 193 | Text=X-Flip 194 | MeterStyle=VarTitle | RightPanel 195 | Hidden= 196 | [VariableDescription5] 197 | Meter=String 198 | Text= 199 | MeterStyle=VarDescription | RightPanel 200 | Hidden= 201 | [MeasureList5Group1] 202 | Measure=Calc 203 | Formula=[#Group1XFlip] 204 | DynamicVariables=1 205 | IfEqualValue=1 206 | IfEqualAction=[!SetOption "ListCheck5Group1" Text "[\xE73A]"][!Update][!Redraw] 207 | IfBelowValue=1 208 | IfBelowAction=[!SetOption "ListCheck5Group1" Text "[\xE739]"][!Update][!Redraw] 209 | [ListCheck5Group1] 210 | Meter=String 211 | Text=[\xE739] 212 | FontSize=15 213 | MeterStyle=VariableIcon | RightPanel 214 | DynamicVariables=1 215 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList5Group1"][!Redraw][#s_OnChangeAction] 216 | [ListString5Group1] 217 | Meter=String 218 | Text=Group1 219 | Y=-1r 220 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 221 | MeterStyle=VarStringValue | VarColorString | RightPanel 222 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList5Group1"][!Redraw][#s_OnChangeAction] 223 | 224 | [MeasureList5Group2] 225 | Measure=Calc 226 | Formula=[#Group2XFlip] 227 | DynamicVariables=1 228 | IfEqualValue=1 229 | IfEqualAction=[!SetOption "ListCheck5Group2" Text "[\xE73A]"][!Update][!Redraw] 230 | IfBelowValue=1 231 | IfBelowAction=[!SetOption "ListCheck5Group2" Text "[\xE739]"][!Update][!Redraw] 232 | [ListCheck5Group2] 233 | Meter=String 234 | Text=[\xE739] 235 | FontSize=15 236 | MeterStyle=VariableIcon | RightPanel 237 | DynamicVariables=1 238 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList5Group2"][!Redraw][#s_OnChangeAction] 239 | [ListString5Group2] 240 | Meter=String 241 | Text=Group2 242 | Y=-1r 243 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 244 | MeterStyle=VarStringValue | VarColorString | RightPanel 245 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList5Group2"][!Redraw][#s_OnChangeAction] 246 | 247 | [VariableIcon6] 248 | Meter=String 249 | Text= 250 | MeterStyle=VariableIcon | RightPanel 251 | Hidden= 252 | [VariableTitle6] 253 | Meter=String 254 | Text=Y-Flip 255 | MeterStyle=VarTitle | RightPanel 256 | Hidden= 257 | [VariableDescription6] 258 | Meter=String 259 | Text= 260 | MeterStyle=VarDescription | RightPanel 261 | Hidden= 262 | [MeasureList6Group1] 263 | Measure=Calc 264 | Formula=[#Group1YFlip] 265 | DynamicVariables=1 266 | IfEqualValue=1 267 | IfEqualAction=[!SetOption "ListCheck6Group1" Text "[\xE73A]"][!Update][!Redraw] 268 | IfBelowValue=1 269 | IfBelowAction=[!SetOption "ListCheck6Group1" Text "[\xE739]"][!Update][!Redraw] 270 | [ListCheck6Group1] 271 | Meter=String 272 | Text=[\xE739] 273 | FontSize=15 274 | MeterStyle=VariableIcon | RightPanel 275 | DynamicVariables=1 276 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 277 | [ListString6Group1] 278 | Meter=String 279 | Text=Group1 280 | Y=-1r 281 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 282 | MeterStyle=VarStringValue | VarColorString | RightPanel 283 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 284 | 285 | [MeasureList6Group2] 286 | Measure=Calc 287 | Formula=[#Group2YFlip] 288 | DynamicVariables=1 289 | IfEqualValue=1 290 | IfEqualAction=[!SetOption "ListCheck6Group2" Text "[\xE73A]"][!Update][!Redraw] 291 | IfBelowValue=1 292 | IfBelowAction=[!SetOption "ListCheck6Group2" Text "[\xE739]"][!Update][!Redraw] 293 | [ListCheck6Group2] 294 | Meter=String 295 | Text=[\xE739] 296 | FontSize=15 297 | MeterStyle=VariableIcon | RightPanel 298 | DynamicVariables=1 299 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] 300 | [ListString6Group2] 301 | Meter=String 302 | Text=Group2 303 | Y=-1r 304 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 305 | MeterStyle=VarStringValue | VarColorString | RightPanel 306 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\MirrorY.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar/Normal.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon0] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle0] 7 | Meter=String 8 | Text=Normal 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription0] 12 | Meter=String 13 | Text=Settings for Normal 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue0] 17 | Meter=String 18 | Text= 19 | MeterStyle=VarStringValue | Link0 | RightPanel 20 | Hidden= 21 | LeftMouseUpAction=[" "] 22 | [MeasureLinkStatus0] 23 | Measure=Calc 24 | Formula=0 25 | IfCondition=(0 = #CURRENTSECTION#) 26 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 27 | Disabled= 28 | 29 | 30 | [VariableIcon1] 31 | Meter=String 32 | Text= 33 | MeterStyle=VariableIcon | RightPanel 34 | Hidden= 35 | [VariableTitle1] 36 | Meter=String 37 | Text=Flip 38 | MeterStyle=VarTitle | RightPanel 39 | Hidden= 40 | [VariableDescription1] 41 | Meter=String 42 | Text= 43 | MeterStyle=VarDescription | RightPanel 44 | Hidden= 45 | [MeasureList1FlipX] 46 | Measure=Calc 47 | Formula=[#flipX] 48 | DynamicVariables=1 49 | IfEqualValue=1 50 | IfEqualAction=[!SetOption "ListCheck1FlipX" Text "[\xE73A]"][!Update][!Redraw] 51 | IfBelowValue=1 52 | IfBelowAction=[!SetOption "ListCheck1FlipX" Text "[\xE739]"][!Update][!Redraw] 53 | [ListCheck1FlipX] 54 | Meter=String 55 | Text=[\xE739] 56 | FontSize=15 57 | MeterStyle=VariableIcon | RightPanel 58 | DynamicVariables=1 59 | LeftMouseUpAction=[!SetVariable flipX "(1-[#flipX])"][!WriteKeyValue Variables flipX "[#flipX]" "#@#\Variables\[#Preset]\Bar\Normal.inc"][!UpdateMeasure "MeasureList1FlipX"][!Redraw][#s_OnChangeAction] 60 | [ListString1FlipX] 61 | Meter=String 62 | Text=FlipX 63 | Y=-1r 64 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 65 | MeterStyle=VarStringValue | VarColorString | RightPanel 66 | LeftMouseUpAction=[!SetVariable flipX "(1-[#flipX])"][!WriteKeyValue Variables flipX "[#flipX]" "#@#\Variables\[#Preset]\Bar\Normal.inc"][!UpdateMeasure "MeasureList1FlipX"][!Redraw][#s_OnChangeAction] 67 | 68 | [MeasureList1FlipY] 69 | Measure=Calc 70 | Formula=[#flipY] 71 | DynamicVariables=1 72 | IfEqualValue=1 73 | IfEqualAction=[!SetOption "ListCheck1FlipY" Text "[\xE73A]"][!Update][!Redraw] 74 | IfBelowValue=1 75 | IfBelowAction=[!SetOption "ListCheck1FlipY" Text "[\xE739]"][!Update][!Redraw] 76 | [ListCheck1FlipY] 77 | Meter=String 78 | Text=[\xE739] 79 | FontSize=15 80 | MeterStyle=VariableIcon | RightPanel 81 | DynamicVariables=1 82 | LeftMouseUpAction=[!SetVariable flipY "(1-[#flipY])"][!WriteKeyValue Variables flipY "[#flipY]" "#@#\Variables\[#Preset]\Bar\Normal.inc"][!UpdateMeasure "MeasureList1FlipY"][!Redraw][#s_OnChangeAction] 83 | [ListString1FlipY] 84 | Meter=String 85 | Text=FlipY 86 | Y=-1r 87 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 88 | MeterStyle=VarStringValue | VarColorString | RightPanel 89 | LeftMouseUpAction=[!SetVariable flipY "(1-[#flipY])"][!WriteKeyValue Variables flipY "[#flipY]" "#@#\Variables\[#Preset]\Bar\Normal.inc"][!UpdateMeasure "MeasureList1FlipY"][!Redraw][#s_OnChangeAction] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Bar/Reflection.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon0] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle0] 7 | Meter=String 8 | Text=Reflection 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription0] 12 | Meter=String 13 | Text=Settings for Reflection 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue0] 17 | Meter=String 18 | Text= 19 | MeterStyle=VarStringValue | Link0 | RightPanel 20 | Hidden= 21 | LeftMouseUpAction=[" "] 22 | [MeasureLinkStatus0] 23 | Measure=Calc 24 | Formula=0 25 | IfCondition=(0 = #CURRENTSECTION#) 26 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 27 | Disabled= 28 | 29 | [VariableIcon1] 30 | Meter=String 31 | Text= 32 | MeterStyle=VariableIcon | RightPanel 33 | Hidden= 34 | [VariableTitle1] 35 | Meter=String 36 | Text=Reflection Percentage 37 | MeterStyle=VarTitle | RightPanel 38 | Hidden= 39 | [VariableDescription1] 40 | Meter=String 41 | Text=(of total height) 42 | MeterStyle=VarDescription | RightPanel 43 | Hidden= 44 | [VariableValue1] 45 | Meter=String 46 | Text=[#ReflectionPercentage] 47 | MeterStyle=VarStringValue | RightPanel 48 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 49 | Hidden= 50 | [InputText1] 51 | Measure=Plugin 52 | Plugin=InputText 53 | SolidColor=[#s_RightPanelBackgroundColor] 54 | FontColor=[#s_FontColor] 55 | FontFace=[#s_FontFace] 56 | FontSize=[#s_InputTextFontSize] 57 | Disabled= 58 | X=([VariableValue1:X]) 59 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 60 | H=[VariableValue1:H] 61 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 62 | DynamicVariables=1 63 | DefaultValue=[#ReflectionPercentage] 64 | Command1=[!SetVariable "ReflectionPercentage" "$UserInput$"][!WriteKeyValue "Variables" "ReflectionPercentage" "[#ReflectionPercentage]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 65 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 66 | InputNumber=1 67 | 68 | [VariableIcon2] 69 | Meter=String 70 | Text= 71 | MeterStyle=VariableIcon | RightPanel 72 | Hidden= 73 | [VariableTitle2] 74 | Meter=String 75 | Text=First X-Offset 76 | MeterStyle=VarTitle | RightPanel 77 | Hidden= 78 | [VariableDescription2] 79 | Meter=String 80 | Text= 81 | MeterStyle=VarDescription | RightPanel 82 | Hidden= 83 | [VariableValue2] 84 | Meter=String 85 | Text=[#Group1XOffset] 86 | MeterStyle=VarStringValue | RightPanel 87 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 88 | Hidden= 89 | [InputText2] 90 | Measure=Plugin 91 | Plugin=InputText 92 | SolidColor=[#s_RightPanelBackgroundColor] 93 | FontColor=[#s_FontColor] 94 | FontFace=[#s_FontFace] 95 | FontSize=[#s_InputTextFontSize] 96 | Disabled= 97 | X=([VariableValue2:X]) 98 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 99 | H=[VariableValue2:H] 100 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 101 | DynamicVariables=1 102 | DefaultValue=[#Group1XOffset] 103 | Command1=[!SetVariable "Group1XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1XOffset" "[#Group1XOffset]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 104 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 105 | InputNumber=1 106 | 107 | [VariableIcon3] 108 | Meter=String 109 | Text= 110 | MeterStyle=VariableIcon | RightPanel 111 | Hidden= 112 | [VariableTitle3] 113 | Meter=String 114 | Text=Second X-Offset 115 | MeterStyle=VarTitle | RightPanel 116 | Hidden= 117 | [VariableDescription3] 118 | Meter=String 119 | Text= 120 | MeterStyle=VarDescription | RightPanel 121 | Hidden= 122 | [VariableValue3] 123 | Meter=String 124 | Text=[#Group2XOffset] 125 | MeterStyle=VarStringValue | RightPanel 126 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 127 | Hidden= 128 | [InputText3] 129 | Measure=Plugin 130 | Plugin=InputText 131 | SolidColor=[#s_RightPanelBackgroundColor] 132 | FontColor=[#s_FontColor] 133 | FontFace=[#s_FontFace] 134 | FontSize=[#s_InputTextFontSize] 135 | Disabled= 136 | X=([VariableValue3:X]) 137 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 138 | H=[VariableValue3:H] 139 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 140 | DynamicVariables=1 141 | DefaultValue=[#Group2XOffset] 142 | Command1=[!SetVariable "Group2XOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2XOffset" "[#Group2XOffset]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 143 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 144 | InputNumber=1 145 | 146 | [VariableIcon4] 147 | Meter=String 148 | Text= 149 | MeterStyle=VariableIcon | RightPanel 150 | Hidden= 151 | [VariableTitle4] 152 | Meter=String 153 | Text=First Y-Offset 154 | MeterStyle=VarTitle | RightPanel 155 | Hidden= 156 | [VariableDescription4] 157 | Meter=String 158 | Text= 159 | MeterStyle=VarDescription | RightPanel 160 | Hidden= 161 | [VariableValue4] 162 | Meter=String 163 | Text=[#Group1YOffset] 164 | MeterStyle=VarStringValue | RightPanel 165 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 166 | Hidden= 167 | [InputText4] 168 | Measure=Plugin 169 | Plugin=InputText 170 | SolidColor=[#s_RightPanelBackgroundColor] 171 | FontColor=[#s_FontColor] 172 | FontFace=[#s_FontFace] 173 | FontSize=[#s_InputTextFontSize] 174 | Disabled= 175 | X=([VariableValue4:X]) 176 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 177 | H=[VariableValue4:H] 178 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 179 | DynamicVariables=1 180 | DefaultValue=[#Group1YOffset] 181 | Command1=[!SetVariable "Group1YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group1YOffset" "[#Group1YOffset]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 182 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 183 | InputNumber=1 184 | 185 | [VariableIcon5] 186 | Meter=String 187 | Text= 188 | MeterStyle=VariableIcon | RightPanel 189 | Hidden= 190 | [VariableTitle5] 191 | Meter=String 192 | Text=Second Y-Offset 193 | MeterStyle=VarTitle | RightPanel 194 | Hidden= 195 | [VariableDescription5] 196 | Meter=String 197 | Text= 198 | MeterStyle=VarDescription | RightPanel 199 | Hidden= 200 | [VariableValue5] 201 | Meter=String 202 | Text=[#Group2YOffset] 203 | MeterStyle=VarStringValue | RightPanel 204 | LeftMouseUpAction=[!CommandMeasure "InputText5" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 205 | Hidden= 206 | [InputText5] 207 | Measure=Plugin 208 | Plugin=InputText 209 | SolidColor=[#s_RightPanelBackgroundColor] 210 | FontColor=[#s_FontColor] 211 | FontFace=[#s_FontFace] 212 | FontSize=[#s_InputTextFontSize] 213 | Disabled= 214 | X=([VariableValue5:X]) 215 | Y=([VariableValue5:Y] + [#s_ValueYPadding]) 216 | H=[VariableValue5:H] 217 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 218 | DynamicVariables=1 219 | DefaultValue=[#Group2YOffset] 220 | Command1=[!SetVariable "Group2YOffset" "$UserInput$"][!WriteKeyValue "Variables" "Group2YOffset" "[#Group2YOffset]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeter VariableValue5][!Redraw][#s_OnChangeAction] 221 | OnDismissAction=[!SetOption VariableValue5 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue5][!Redraw] 222 | InputNumber=1 223 | 224 | 225 | [VariableIcon6] 226 | Meter=String 227 | Text= 228 | MeterStyle=VariableIcon | RightPanel 229 | Hidden= 230 | [VariableTitle6] 231 | Meter=String 232 | Text=X-Flip 233 | MeterStyle=VarTitle | RightPanel 234 | Hidden= 235 | [VariableDescription6] 236 | Meter=String 237 | Text= 238 | MeterStyle=VarDescription | RightPanel 239 | Hidden= 240 | [MeasureList6Group1] 241 | Measure=Calc 242 | Formula=[#Group1XFlip] 243 | DynamicVariables=1 244 | IfEqualValue=1 245 | IfEqualAction=[!SetOption "ListCheck6Group1" Text "[\xE73A]"][!Update][!Redraw] 246 | IfBelowValue=1 247 | IfBelowAction=[!SetOption "ListCheck6Group1" Text "[\xE739]"][!Update][!Redraw] 248 | [ListCheck6Group1] 249 | Meter=String 250 | Text=[\xE739] 251 | FontSize=15 252 | MeterStyle=VariableIcon | RightPanel 253 | DynamicVariables=1 254 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 255 | [ListString6Group1] 256 | Meter=String 257 | Text=Group1 258 | Y=-1r 259 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 260 | MeterStyle=VarStringValue | VarColorString | RightPanel 261 | LeftMouseUpAction=[!SetVariable Group1XFlip "(1-[#Group1XFlip])"][!WriteKeyValue Variables Group1XFlip "[#Group1XFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList6Group1"][!Redraw][#s_OnChangeAction] 262 | 263 | [MeasureList6Group2] 264 | Measure=Calc 265 | Formula=[#Group2XFlip] 266 | DynamicVariables=1 267 | IfEqualValue=1 268 | IfEqualAction=[!SetOption "ListCheck6Group2" Text "[\xE73A]"][!Update][!Redraw] 269 | IfBelowValue=1 270 | IfBelowAction=[!SetOption "ListCheck6Group2" Text "[\xE739]"][!Update][!Redraw] 271 | [ListCheck6Group2] 272 | Meter=String 273 | Text=[\xE739] 274 | FontSize=15 275 | MeterStyle=VariableIcon | RightPanel 276 | DynamicVariables=1 277 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] 278 | [ListString6Group2] 279 | Meter=String 280 | Text=Group2 281 | Y=-1r 282 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 283 | MeterStyle=VarStringValue | VarColorString | RightPanel 284 | LeftMouseUpAction=[!SetVariable Group2XFlip "(1-[#Group2XFlip])"][!WriteKeyValue Variables Group2XFlip "[#Group2XFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList6Group2"][!Redraw][#s_OnChangeAction] 285 | 286 | [VariableIcon7] 287 | Meter=String 288 | Text= 289 | MeterStyle=VariableIcon | RightPanel 290 | Hidden= 291 | [VariableTitle7] 292 | Meter=String 293 | Text=Y-Flip 294 | MeterStyle=VarTitle | RightPanel 295 | Hidden= 296 | [VariableDescription7] 297 | Meter=String 298 | Text= 299 | MeterStyle=VarDescription | RightPanel 300 | Hidden= 301 | [MeasureList7Group1] 302 | Measure=Calc 303 | Formula=[#Group1YFlip] 304 | DynamicVariables=1 305 | IfEqualValue=1 306 | IfEqualAction=[!SetOption "ListCheck7Group1" Text "[\xE73A]"][!Update][!Redraw] 307 | IfBelowValue=1 308 | IfBelowAction=[!SetOption "ListCheck7Group1" Text "[\xE739]"][!Update][!Redraw] 309 | [ListCheck7Group1] 310 | Meter=String 311 | Text=[\xE739] 312 | FontSize=15 313 | MeterStyle=VariableIcon | RightPanel 314 | DynamicVariables=1 315 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList7Group1"][!Redraw][#s_OnChangeAction] 316 | [ListString7Group1] 317 | Meter=String 318 | Text=Group1 319 | Y=-1r 320 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 321 | MeterStyle=VarStringValue | VarColorString | RightPanel 322 | LeftMouseUpAction=[!SetVariable Group1YFlip "(1-[#Group1YFlip])"][!WriteKeyValue Variables Group1YFlip "[#Group1YFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList7Group1"][!Redraw][#s_OnChangeAction] 323 | 324 | [MeasureList7Group2] 325 | Measure=Calc 326 | Formula=[#Group2YFlip] 327 | DynamicVariables=1 328 | IfEqualValue=1 329 | IfEqualAction=[!SetOption "ListCheck7Group2" Text "[\xE73A]"][!Update][!Redraw] 330 | IfBelowValue=1 331 | IfBelowAction=[!SetOption "ListCheck7Group2" Text "[\xE739]"][!Update][!Redraw] 332 | [ListCheck7Group2] 333 | Meter=String 334 | Text=[\xE739] 335 | FontSize=15 336 | MeterStyle=VariableIcon | RightPanel 337 | DynamicVariables=1 338 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList7Group2"][!Redraw][#s_OnChangeAction] 339 | [ListString7Group2] 340 | Meter=String 341 | Text=Group2 342 | Y=-1r 343 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 344 | MeterStyle=VarStringValue | VarColorString | RightPanel 345 | LeftMouseUpAction=[!SetVariable Group2YFlip "(1-[#Group2YFlip])"][!WriteKeyValue Variables Group2YFlip "[#Group2YFlip]" "#@#\Variables\[#Preset]\Bar\Reflection.inc"][!UpdateMeasure "MeasureList7Group2"][!Redraw][#s_OnChangeAction] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Round.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon1] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle1] 7 | Meter=String 8 | Text=BarCount 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription1] 12 | Meter=String 13 | Text=Number of Bars 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue1] 17 | Meter=String 18 | Text=[#Bands] 19 | MeterStyle=VarStringValue | RightPanel 20 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 21 | Hidden= 22 | [InputText1] 23 | Measure=Plugin 24 | Plugin=InputText 25 | SolidColor=[#s_RightPanelBackgroundColor] 26 | FontColor=[#s_FontColor] 27 | FontFace=[#s_FontFace] 28 | FontSize=[#s_InputTextFontSize] 29 | Disabled= 30 | X=([VariableValue1:X]) 31 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 32 | H=[VariableValue1:H] 33 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 34 | DynamicVariables=1 35 | DefaultValue=[#Bands] 36 | Command1=[!SetVariable "Bands" "$UserInput$"][!WriteKeyValue "Variables" "Bands" "[#Bands]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 37 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 38 | InputNumber=1 39 | 40 | [VariableIcon2] 41 | Meter=String 42 | Text= 43 | MeterStyle=VariableIcon | RightPanel 44 | Hidden= 45 | [VariableTitle2] 46 | Meter=String 47 | Text=Radius 48 | MeterStyle=VarTitle | RightPanel 49 | Hidden= 50 | [VariableDescription2] 51 | Meter=String 52 | Text= 53 | MeterStyle=VarDescription | RightPanel 54 | Hidden= 55 | [VariableValue2] 56 | Meter=String 57 | Text=[#Radius] 58 | MeterStyle=VarStringValue | RightPanel 59 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 60 | Hidden= 61 | [InputText2] 62 | Measure=Plugin 63 | Plugin=InputText 64 | SolidColor=[#s_RightPanelBackgroundColor] 65 | FontColor=[#s_FontColor] 66 | FontFace=[#s_FontFace] 67 | FontSize=[#s_InputTextFontSize] 68 | Disabled= 69 | X=([VariableValue2:X]) 70 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 71 | H=[VariableValue2:H] 72 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 73 | DynamicVariables=1 74 | DefaultValue=[#Radius] 75 | Command1=[!SetVariable "Radius" "$UserInput$"][!WriteKeyValue "Variables" "Radius" "[#Radius]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 76 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 77 | InputNumber=1 78 | 79 | [VariableIcon3] 80 | Meter=String 81 | Text= 82 | MeterStyle=VariableIcon | RightPanel 83 | Hidden= 84 | [VariableTitle3] 85 | Meter=String 86 | Text=Start Angle 87 | MeterStyle=VarTitle | RightPanel 88 | Hidden= 89 | [VariableDescription3] 90 | Meter=String 91 | Text= 92 | MeterStyle=VarDescription | RightPanel 93 | Hidden= 94 | [VariableValue3] 95 | Meter=String 96 | Text=[#StartAngle] 97 | MeterStyle=VarStringValue | RightPanel 98 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 99 | Hidden= 100 | [InputText3] 101 | Measure=Plugin 102 | Plugin=InputText 103 | SolidColor=[#s_RightPanelBackgroundColor] 104 | FontColor=[#s_FontColor] 105 | FontFace=[#s_FontFace] 106 | FontSize=[#s_InputTextFontSize] 107 | Disabled= 108 | X=([VariableValue3:X]) 109 | Y=([VariableValue3:Y] + [#s_ValueYPadding]) 110 | H=[VariableValue3:H] 111 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 112 | DynamicVariables=1 113 | DefaultValue=[#StartAngle] 114 | Command1=[!SetVariable "StartAngle" "$UserInput$"][!WriteKeyValue "Variables" "StartAngle" "[#StartAngle]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue3][!Redraw][#s_OnChangeAction] 115 | OnDismissAction=[!SetOption VariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue3][!Redraw] 116 | InputNumber=1 117 | 118 | [VariableIcon4] 119 | Meter=String 120 | Text= 121 | MeterStyle=VariableIcon | RightPanel 122 | Hidden= 123 | [VariableTitle4] 124 | Meter=String 125 | Text=Total Angle 126 | MeterStyle=VarTitle | RightPanel 127 | Hidden= 128 | [VariableDescription4] 129 | Meter=String 130 | Text= 131 | MeterStyle=VarDescription | RightPanel 132 | Hidden= 133 | [VariableValue4] 134 | Meter=String 135 | Text=[#TotalAngle] 136 | MeterStyle=VarStringValue | RightPanel 137 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 138 | Hidden= 139 | [InputText4] 140 | Measure=Plugin 141 | Plugin=InputText 142 | SolidColor=[#s_RightPanelBackgroundColor] 143 | FontColor=[#s_FontColor] 144 | FontFace=[#s_FontFace] 145 | FontSize=[#s_InputTextFontSize] 146 | Disabled= 147 | X=([VariableValue4:X]) 148 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 149 | H=[VariableValue4:H] 150 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 151 | DynamicVariables=1 152 | DefaultValue=[#TotalAngle] 153 | Command1=[!SetVariable "TotalAngle" "$UserInput$"][!WriteKeyValue "Variables" "TotalAngle" "[#TotalAngle]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 154 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 155 | InputNumber=1 156 | 157 | [VariableIcon5] 158 | Meter=String 159 | Text= 160 | MeterStyle=VariableIcon | RightPanel 161 | Hidden= 162 | [VariableTitle5] 163 | Meter=String 164 | Text=Height 165 | MeterStyle=VarTitle | RightPanel 166 | Hidden= 167 | [VariableDescription5] 168 | Meter=String 169 | Text=Height of Bars 170 | MeterStyle=VarDescription | RightPanel 171 | Hidden= 172 | [VariableValue5] 173 | Meter=String 174 | Text=[#Height] 175 | MeterStyle=VarStringValue | RightPanel 176 | LeftMouseUpAction=[!CommandMeasure "InputText5" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 177 | Hidden= 178 | [InputText5] 179 | Measure=Plugin 180 | Plugin=InputText 181 | SolidColor=[#s_RightPanelBackgroundColor] 182 | FontColor=[#s_FontColor] 183 | FontFace=[#s_FontFace] 184 | FontSize=[#s_InputTextFontSize] 185 | Disabled= 186 | X=([VariableValue5:X]) 187 | Y=([VariableValue5:Y] + [#s_ValueYPadding]) 188 | H=[VariableValue5:H] 189 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 190 | DynamicVariables=1 191 | DefaultValue=[#Height] 192 | Command1=[!SetVariable "Height" "$UserInput$"][!WriteKeyValue "Variables" "Height" "[#Height]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue5][!Redraw][#s_OnChangeAction] 193 | OnDismissAction=[!SetOption VariableValue5 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue5][!Redraw] 194 | InputNumber=1 195 | 196 | [VariableIcon6] 197 | Meter=String 198 | Text= 199 | MeterStyle=VariableIcon | RightPanel 200 | Hidden= 201 | [VariableTitle6] 202 | Meter=String 203 | Text=Bar Width 204 | MeterStyle=VarTitle | RightPanel 205 | Hidden= 206 | [VariableDescription6] 207 | Meter=String 208 | Text=Width of individual Bars 209 | MeterStyle=VarDescription | RightPanel 210 | Hidden= 211 | [VariableValue6] 212 | Meter=String 213 | Text=[#BarWidth] 214 | MeterStyle=VarStringValue | RightPanel 215 | LeftMouseUpAction=[!CommandMeasure "InputText6" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 216 | Hidden= 217 | [InputText6] 218 | Measure=Plugin 219 | Plugin=InputText 220 | SolidColor=[#s_RightPanelBackgroundColor] 221 | FontColor=[#s_FontColor] 222 | FontFace=[#s_FontFace] 223 | FontSize=[#s_InputTextFontSize] 224 | Disabled= 225 | X=([VariableValue6:X]) 226 | Y=([VariableValue6:Y] + [#s_ValueYPadding]) 227 | H=[VariableValue6:H] 228 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 229 | DynamicVariables=1 230 | DefaultValue=[#BarWidth] 231 | Command1=[!SetVariable "BarWidth" "$UserInput$"][!WriteKeyValue "Variables" "BarWidth" "[#BarWidth]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue6][!Redraw][#s_OnChangeAction] 232 | OnDismissAction=[!SetOption VariableValue6 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue6][!Redraw] 233 | InputNumber=1 234 | 235 | [VariableIcon7] 236 | Meter=String 237 | Text= 238 | MeterStyle=VariableIcon | RightPanel 239 | Hidden= 240 | [VariableTitle7] 241 | Meter=String 242 | Text=Levitation 243 | MeterStyle=VarTitle | RightPanel 244 | Hidden= 245 | [VariableDescription7] 246 | Meter=String 247 | Text=Amount that bars will float up 248 | MeterStyle=VarDescription | RightPanel 249 | Hidden= 250 | [VariableValue7] 251 | Meter=String 252 | Text=[#Levitate] 253 | MeterStyle=VarStringValue | RightPanel 254 | LeftMouseUpAction=[!CommandMeasure "InputText7" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 255 | Hidden= 256 | [InputText7] 257 | Measure=Plugin 258 | Plugin=InputText 259 | SolidColor=[#s_RightPanelBackgroundColor] 260 | FontColor=[#s_FontColor] 261 | FontFace=[#s_FontFace] 262 | FontSize=[#s_InputTextFontSize] 263 | Disabled= 264 | X=([VariableValue7:X]) 265 | Y=([VariableValue7:Y] + [#s_ValueYPadding]) 266 | H=[VariableValue7:H] 267 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 268 | DynamicVariables=1 269 | DefaultValue=[#Levitate] 270 | Command1=[!SetVariable "Levitate" "$UserInput$"][!WriteKeyValue "Variables" "Levitate" "[#Levitate]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue7][!Redraw][#s_OnChangeAction] 271 | OnDismissAction=[!SetOption VariableValue7 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue7][!Redraw] 272 | InputNumber=1 273 | 274 | 275 | 276 | [VariableIcon8] 277 | Meter=String 278 | Text= 279 | MeterStyle=VariableIcon | RightPanel 280 | Hidden= 281 | [VariableTitle8] 282 | Meter=String 283 | Text=StartCap 284 | MeterStyle=VarTitle | RightPanel 285 | Hidden= 286 | [VariableDescription8] 287 | Meter=String 288 | Text= 289 | MeterStyle=VarDescription | RightPanel 290 | Hidden= 291 | 292 | 293 | [MeasureRadio8Round] 294 | Measure=String 295 | String=[#StartCap] 296 | DynamicVariables=1 297 | IfMatch=^Round$ 298 | IfMatchAction=[!SetOption RadioString8Round InlinePattern ".*"][!SetOption RadioButton8Round Text "[\xECCB]"][!Update][!Redraw] 299 | IfNotMatchAction=[!SetOption RadioString8Round InlinePattern "^$"][!SetOption RadioButton8Round Text "[\xECCA]"][!Update][!Redraw] 300 | [RadioButton8Round] 301 | Meter=String 302 | Text=[\xECCA] 303 | FontSize=15 304 | MeterStyle=VariableIcon | RightPanel 305 | DynamicVariables=1 306 | LeftMouseUpAction=[!SetVariable StartCap "Round"][!WriteKeyValue Variables StartCap "Round" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 307 | [RadioString8Round] 308 | Meter=String 309 | Text=Round 310 | Y=-1r 311 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 312 | MeterStyle=VarStringValue | VarColorString | RightPanel 313 | InlinePattern=^$ 314 | InlineSetting=Weight | 600 315 | LeftMouseUpAction=[!SetVariable StartCap "Round"][!WriteKeyValue Variables StartCap "Round" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 316 | 317 | [MeasureRadio8Triangle] 318 | Measure=String 319 | String=[#StartCap] 320 | DynamicVariables=1 321 | IfMatch=^Triangle$ 322 | IfMatchAction=[!SetOption RadioString8Triangle InlinePattern ".*"][!SetOption RadioButton8Triangle Text "[\xECCB]"][!Update][!Redraw] 323 | IfNotMatchAction=[!SetOption RadioString8Triangle InlinePattern "^$"][!SetOption RadioButton8Triangle Text "[\xECCA]"][!Update][!Redraw] 324 | [RadioButton8Triangle] 325 | Meter=String 326 | Text=[\xECCA] 327 | FontSize=15 328 | MeterStyle=VariableIcon | RightPanel 329 | DynamicVariables=1 330 | LeftMouseUpAction=[!SetVariable StartCap "Triangle"][!WriteKeyValue Variables StartCap "Triangle" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 331 | [RadioString8Triangle] 332 | Meter=String 333 | Text=Triangle 334 | Y=-1r 335 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 336 | MeterStyle=VarStringValue | VarColorString | RightPanel 337 | InlinePattern=^$ 338 | InlineSetting=Weight | 600 339 | LeftMouseUpAction=[!SetVariable StartCap "Triangle"][!WriteKeyValue Variables StartCap "Triangle" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 340 | 341 | [MeasureRadio8Square] 342 | Measure=String 343 | String=[#StartCap] 344 | DynamicVariables=1 345 | IfMatch=^Square$ 346 | IfMatchAction=[!SetOption RadioString8Square InlinePattern ".*"][!SetOption RadioButton8Square Text "[\xECCB]"][!Update][!Redraw] 347 | IfNotMatchAction=[!SetOption RadioString8Square InlinePattern "^$"][!SetOption RadioButton8Square Text "[\xECCA]"][!Update][!Redraw] 348 | [RadioButton8Square] 349 | Meter=String 350 | Text=[\xECCA] 351 | FontSize=15 352 | MeterStyle=VariableIcon | RightPanel 353 | DynamicVariables=1 354 | LeftMouseUpAction=[!SetVariable StartCap "Square"][!WriteKeyValue Variables StartCap "Square" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 355 | [RadioString8Square] 356 | Meter=String 357 | Text=Square 358 | Y=-1r 359 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 360 | MeterStyle=VarStringValue | VarColorString | RightPanel 361 | InlinePattern=^$ 362 | InlineSetting=Weight | 600 363 | LeftMouseUpAction=[!SetVariable StartCap "Square"][!WriteKeyValue Variables StartCap "Square" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 364 | 365 | [MeasureRadio8Flat] 366 | Measure=String 367 | String=[#StartCap] 368 | DynamicVariables=1 369 | IfMatch=^Flat$ 370 | IfMatchAction=[!SetOption RadioString8Flat InlinePattern ".*"][!SetOption RadioButton8Flat Text "[\xECCB]"][!Update][!Redraw] 371 | IfNotMatchAction=[!SetOption RadioString8Flat InlinePattern "^$"][!SetOption RadioButton8Flat Text "[\xECCA]"][!Update][!Redraw] 372 | [RadioButton8Flat] 373 | Meter=String 374 | Text=[\xECCA] 375 | FontSize=15 376 | MeterStyle=VariableIcon | RightPanel 377 | DynamicVariables=1 378 | LeftMouseUpAction=[!SetVariable StartCap "Flat"][!WriteKeyValue Variables StartCap "Flat" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 379 | [RadioString8Flat] 380 | Meter=String 381 | Text=Flat 382 | Y=-1r 383 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 384 | MeterStyle=VarStringValue | VarColorString | RightPanel 385 | InlinePattern=^$ 386 | InlineSetting=Weight | 600 387 | LeftMouseUpAction=[!SetVariable StartCap "Flat"][!WriteKeyValue Variables StartCap "Flat" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 388 | 389 | 390 | [VariableIcon9] 391 | Meter=String 392 | Text= 393 | MeterStyle=VariableIcon | RightPanel 394 | Hidden= 395 | [VariableTitle9] 396 | Meter=String 397 | Text=EndCap 398 | MeterStyle=VarTitle | RightPanel 399 | Hidden= 400 | [VariableDescription9] 401 | Meter=String 402 | Text= 403 | MeterStyle=VarDescription | RightPanel 404 | Hidden= 405 | 406 | 407 | [MeasureRadio9Round] 408 | Measure=String 409 | String=[#EndCap] 410 | DynamicVariables=1 411 | IfMatch=^Round$ 412 | IfMatchAction=[!SetOption RadioString9Round InlinePattern ".*"][!SetOption RadioButton9Round Text "[\xECCB]"][!Update][!Redraw] 413 | IfNotMatchAction=[!SetOption RadioString9Round InlinePattern "^$"][!SetOption RadioButton9Round Text "[\xECCA]"][!Update][!Redraw] 414 | [RadioButton9Round] 415 | Meter=String 416 | Text=[\xECCA] 417 | FontSize=15 418 | MeterStyle=VariableIcon | RightPanel 419 | DynamicVariables=1 420 | LeftMouseUpAction=[!SetVariable EndCap "Round"][!WriteKeyValue Variables EndCap "Round" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 421 | [RadioString9Round] 422 | Meter=String 423 | Text=Round 424 | Y=-1r 425 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 426 | MeterStyle=VarStringValue | VarColorString | RightPanel 427 | InlinePattern=^$ 428 | InlineSetting=Weight | 600 429 | LeftMouseUpAction=[!SetVariable EndCap "Round"][!WriteKeyValue Variables EndCap "Round" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 430 | 431 | [MeasureRadio9Triangle] 432 | Measure=String 433 | String=[#EndCap] 434 | DynamicVariables=1 435 | IfMatch=^Triangle$ 436 | IfMatchAction=[!SetOption RadioString9Triangle InlinePattern ".*"][!SetOption RadioButton9Triangle Text "[\xECCB]"][!Update][!Redraw] 437 | IfNotMatchAction=[!SetOption RadioString9Triangle InlinePattern "^$"][!SetOption RadioButton9Triangle Text "[\xECCA]"][!Update][!Redraw] 438 | [RadioButton9Triangle] 439 | Meter=String 440 | Text=[\xECCA] 441 | FontSize=15 442 | MeterStyle=VariableIcon | RightPanel 443 | DynamicVariables=1 444 | LeftMouseUpAction=[!SetVariable EndCap "Triangle"][!WriteKeyValue Variables EndCap "Triangle" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 445 | [RadioString9Triangle] 446 | Meter=String 447 | Text=Triangle 448 | Y=-1r 449 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 450 | MeterStyle=VarStringValue | VarColorString | RightPanel 451 | InlinePattern=^$ 452 | InlineSetting=Weight | 600 453 | LeftMouseUpAction=[!SetVariable EndCap "Triangle"][!WriteKeyValue Variables EndCap "Triangle" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 454 | 455 | [MeasureRadio9Square] 456 | Measure=String 457 | String=[#EndCap] 458 | DynamicVariables=1 459 | IfMatch=^Square$ 460 | IfMatchAction=[!SetOption RadioString9Square InlinePattern ".*"][!SetOption RadioButton9Square Text "[\xECCB]"][!Update][!Redraw] 461 | IfNotMatchAction=[!SetOption RadioString9Square InlinePattern "^$"][!SetOption RadioButton9Square Text "[\xECCA]"][!Update][!Redraw] 462 | [RadioButton9Square] 463 | Meter=String 464 | Text=[\xECCA] 465 | FontSize=15 466 | MeterStyle=VariableIcon | RightPanel 467 | DynamicVariables=1 468 | LeftMouseUpAction=[!SetVariable EndCap "Square"][!WriteKeyValue Variables EndCap "Square" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 469 | [RadioString9Square] 470 | Meter=String 471 | Text=Square 472 | Y=-1r 473 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 474 | MeterStyle=VarStringValue | VarColorString | RightPanel 475 | InlinePattern=^$ 476 | InlineSetting=Weight | 600 477 | LeftMouseUpAction=[!SetVariable EndCap "Square"][!WriteKeyValue Variables EndCap "Square" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 478 | 479 | [MeasureRadio9Flat] 480 | Measure=String 481 | String=[#EndCap] 482 | DynamicVariables=1 483 | IfMatch=^Flat$ 484 | IfMatchAction=[!SetOption RadioString9Flat InlinePattern ".*"][!SetOption RadioButton9Flat Text "[\xECCB]"][!Update][!Redraw] 485 | IfNotMatchAction=[!SetOption RadioString9Flat InlinePattern "^$"][!SetOption RadioButton9Flat Text "[\xECCA]"][!Update][!Redraw] 486 | [RadioButton9Flat] 487 | Meter=String 488 | Text=[\xECCA] 489 | FontSize=15 490 | MeterStyle=VariableIcon | RightPanel 491 | DynamicVariables=1 492 | LeftMouseUpAction=[!SetVariable EndCap "Flat"][!WriteKeyValue Variables EndCap "Flat" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 493 | [RadioString9Flat] 494 | Meter=String 495 | Text=Flat 496 | Y=-1r 497 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 498 | MeterStyle=VarStringValue | VarColorString | RightPanel 499 | InlinePattern=^$ 500 | InlineSetting=Weight | 600 501 | LeftMouseUpAction=[!SetVariable EndCap "Flat"][!WriteKeyValue Variables EndCap "Flat" "#@#Variables\[#Preset]\Round.inc"][!Update][!Redraw][#s_OnChangeAction] 502 | [VariableIcon10] 503 | Meter=String 504 | Text= 505 | MeterStyle=VariableIcon | RightPanel 506 | Hidden= 507 | [VariableTitle10] 508 | Meter=String 509 | Text=Minimum Height 510 | MeterStyle=VarTitle | RightPanel 511 | Hidden= 512 | [VariableDescription10] 513 | Meter=String 514 | Text=Minimun height of Bars 515 | MeterStyle=VarDescription | RightPanel 516 | Hidden= 517 | [VariableValue10] 518 | Meter=String 519 | Text=[#MinimumHeight] 520 | MeterStyle=VarStringValue | RightPanel 521 | LeftMouseUpAction=[!CommandMeasure "InputText10" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 522 | Hidden= 523 | [InputText10] 524 | Measure=Plugin 525 | Plugin=InputText 526 | SolidColor=[#s_RightPanelBackgroundColor] 527 | FontColor=[#s_FontColor] 528 | FontFace=[#s_FontFace] 529 | FontSize=[#s_InputTextFontSize] 530 | Disabled= 531 | X=([VariableValue10:X]) 532 | Y=([VariableValue10:Y] + [#s_ValueYPadding]) 533 | H=[VariableValue10:H] 534 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 535 | DynamicVariables=1 536 | DefaultValue=[#MinimumHeight] 537 | Command1=[!SetVariable "MinimumHeight" "$UserInput$"][!WriteKeyValue "Variables" "MinimumHeight" "[#MinimumHeight]" "#@#Variables\[#Preset]\Round.inc"][!UpdateMeter VariableValue10][!Redraw][#s_OnChangeAction] 538 | OnDismissAction=[!SetOption VariableValue10 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue10][!Redraw] 539 | InputNumber=1 -------------------------------------------------------------------------------- /settings/categories/VisTypes/Round/Dummy.inc: -------------------------------------------------------------------------------- 1 | [Dummy] 2 | Meter=Image 3 | ImageName=#@#Images\menherachan 4 | H=300 5 | MeterStyle=RigthPanel 6 | X=100 7 | Y=120 -------------------------------------------------------------------------------- /settings/categories/VisTypes/Vector.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon1] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle1] 7 | Meter=String 8 | Text=LayerCount 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription1] 12 | Meter=String 13 | Text= 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [VariableValue1] 17 | Meter=String 18 | Text=[#LayerCount] 19 | MeterStyle=VarStringValue | RightPanel 20 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 21 | Hidden= 22 | [InputText1] 23 | Measure=Plugin 24 | Plugin=InputText 25 | SolidColor=[#s_RightPanelBackgroundColor] 26 | FontColor=[#s_FontColor] 27 | FontFace=[#s_FontFace] 28 | FontSize=[#s_InputTextFontSize] 29 | Disabled= 30 | X=([VariableValue1:X]) 31 | Y=([VariableValue1:Y] + [#s_ValueYPadding]) 32 | H=[VariableValue1:H] 33 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 34 | DynamicVariables=1 35 | DefaultValue=[#LayerCount] 36 | Command1=[!SetVariable "LayerCount" "$UserInput$"][!WriteKeyValue "Variables" "LayerCount" "[#LayerCount]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue1][!Redraw][#s_OnChangeAction] 37 | OnDismissAction=[!SetOption VariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue1][!Redraw] 38 | InputNumber=1 39 | 40 | [VariableIcon2] 41 | Meter=String 42 | Text= 43 | MeterStyle=VariableIcon | RightPanel 44 | Hidden= 45 | [VariableTitle2] 46 | Meter=String 47 | Text=Points 48 | MeterStyle=VarTitle | RightPanel 49 | Hidden= 50 | [VariableDescription2] 51 | Meter=String 52 | Text= 53 | MeterStyle=VarDescription | RightPanel 54 | Hidden= 55 | [VariableValue2] 56 | Meter=String 57 | Text=[#VectorBands] 58 | MeterStyle=VarStringValue | RightPanel 59 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 60 | Hidden= 61 | [InputText2] 62 | Measure=Plugin 63 | Plugin=InputText 64 | SolidColor=[#s_RightPanelBackgroundColor] 65 | FontColor=[#s_FontColor] 66 | FontFace=[#s_FontFace] 67 | FontSize=[#s_InputTextFontSize] 68 | Disabled= 69 | X=([VariableValue2:X]) 70 | Y=([VariableValue2:Y] + [#s_ValueYPadding]) 71 | H=[VariableValue2:H] 72 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 73 | DynamicVariables=1 74 | DefaultValue=[#VectorBands] 75 | Command1=[!SetVariable "VectorBands" "$UserInput$"][!WriteKeyValue "Variables" "VectorBands" "[#VectorBands]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue2][!Redraw][#s_OnChangeAction] 76 | OnDismissAction=[!SetOption VariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue2][!Redraw] 77 | InputNumber=1 78 | 79 | [VariableIcon3] 80 | Meter=String 81 | Text= 82 | MeterStyle=VariableIcon | RightPanel 83 | Hidden= 84 | [VariableTitle3] 85 | Meter=String 86 | Text=Width 87 | MeterStyle=VarTitle | RightPanel 88 | Hidden= 89 | [VariableDescription3] 90 | Meter=String 91 | Text= 92 | MeterStyle=VarDescription | RightPanel 93 | Hidden= 94 | [VariableVariableValue3] 95 | Meter=String 96 | Text=[#VectorWidth] 97 | MeterStyle=VarStringValue | RightPanel 98 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 99 | Hidden= 100 | [InputText3] 101 | Measure=Plugin 102 | Plugin=InputText 103 | SolidColor=[#s_RightPanelBackgroundColor] 104 | FontColor=#s_FontColor# 105 | FontFace=#s_FontFace# 106 | FontSize=#s_InputTextFontSize# 107 | Disabled= 108 | X=([VariableVariableValue3:X]) 109 | Y=([VariableVariableValue3:Y] + [#s_ValueYPadding]) 110 | H=[VariableVariableValue3:H] 111 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 112 | DynamicVariables=1 113 | DefaultValue=[#VectorWidth] 114 | Command1=[!SetVariable "VectorWidth" "$UserInput$"][!WriteKeyValue "Variables" "VectorWidth" "[#VectorWidth]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableVariableValue3][!Redraw][#s_OnChangeAction] 115 | OnDismissAction=[!SetOption VariableVariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue3][!Redraw] 116 | 117 | [VariableIcon10] 118 | Meter=String 119 | Text= 120 | MeterStyle=VariableIcon | RightPanel 121 | Hidden= 122 | [VariableTitle10] 123 | Meter=String 124 | Text=Minimum Height 125 | MeterStyle=VarTitle | RightPanel 126 | Hidden= 127 | [VariableDescription10] 128 | Meter=String 129 | Text= 130 | MeterStyle=VarDescription | RightPanel 131 | Hidden= 132 | [VariableVariableValue10] 133 | Meter=String 134 | Text=[#MinimumHeight] 135 | MeterStyle=VarStringValue | RightPanel 136 | LeftMouseUpAction=[!CommandMeasure "InputText10" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 137 | Hidden= 138 | [InputText10] 139 | Measure=Plugin 140 | Plugin=InputText 141 | SolidColor=[#s_RightPanelBackgroundColor] 142 | FontColor=#s_FontColor# 143 | FontFace=#s_FontFace# 144 | FontSize=#s_InputTextFontSize# 145 | Disabled= 146 | X=([VariableVariableValue10:X]) 147 | Y=([VariableVariableValue10:Y] + [#s_ValueYPadding]) 148 | H=[VariableVariableValue10:H] 149 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 150 | DynamicVariables=1 151 | DefaultValue=[#MinimumHeight] 152 | Command1=[!SetVariable "MinimumHeight" "$UserInput$"][!WriteKeyValue "Variables" "MinimumHeight" "[#MinimumHeight]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableVariableValue10][!Redraw][#s_OnChangeAction] 153 | OnDismissAction=[!SetOption VariableVariableValue10 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue10][!Redraw] 154 | 155 | [VariableIcon4] 156 | Meter=String 157 | Text= 158 | MeterStyle=VariableIcon | RightPanel 159 | Hidden= 160 | [VariableTitle4] 161 | Meter=String 162 | Text=Layer1 Height 163 | MeterStyle=VarTitle | RightPanel 164 | Hidden= 165 | [VariableDescription4] 166 | Meter=String 167 | Text= 168 | MeterStyle=VarDescription | RightPanel 169 | Hidden= 170 | [VariableValue4] 171 | Meter=String 172 | Text=[#Layer1Height] 173 | MeterStyle=VarStringValue | RightPanel 174 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 175 | Hidden= 176 | [InputText4] 177 | Measure=Plugin 178 | Plugin=InputText 179 | SolidColor=[#s_RightPanelBackgroundColor] 180 | FontColor=[#s_FontColor] 181 | FontFace=[#s_FontFace] 182 | FontSize=[#s_InputTextFontSize] 183 | Disabled= 184 | X=([VariableValue4:X]) 185 | Y=([VariableValue4:Y] + [#s_ValueYPadding]) 186 | H=[VariableValue4:H] 187 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 188 | DynamicVariables=1 189 | DefaultValue=[#Layer1Height] 190 | Command1=[!SetVariable "Layer1Height" "$UserInput$"][!WriteKeyValue "Variables" "Layer1Height" "[#Layer1Height]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue4][!Redraw][#s_OnChangeAction] 191 | OnDismissAction=[!SetOption VariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue4][!Redraw] 192 | InputNumber=1 193 | 194 | [VariableIcon5] 195 | Meter=String 196 | Text= 197 | MeterStyle=VariableIcon | RightPanel 198 | Hidden= 199 | [VariableTitle5] 200 | Meter=String 201 | Text=Layer2 Height 202 | MeterStyle=VarTitle | RightPanel 203 | Hidden= 204 | [VariableDescription5] 205 | Meter=String 206 | Text= 207 | MeterStyle=VarDescription | RightPanel 208 | Hidden= 209 | [VariableValue5] 210 | Meter=String 211 | Text=[#Layer2Height] 212 | MeterStyle=VarStringValue | RightPanel 213 | LeftMouseUpAction=[!CommandMeasure "InputText5" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 214 | Hidden= 215 | [InputText5] 216 | Measure=Plugin 217 | Plugin=InputText 218 | SolidColor=[#s_RightPanelBackgroundColor] 219 | FontColor=[#s_FontColor] 220 | FontFace=[#s_FontFace] 221 | FontSize=[#s_InputTextFontSize] 222 | Disabled= 223 | X=([VariableValue5:X]) 224 | Y=([VariableValue5:Y] + [#s_ValueYPadding]) 225 | H=[VariableValue5:H] 226 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 227 | DynamicVariables=1 228 | DefaultValue=[#Layer2Height] 229 | Command1=[!SetVariable "Layer2Height" "$UserInput$"][!WriteKeyValue "Variables" "Layer2Height" "[#Layer2Height]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue5][!Redraw][#s_OnChangeAction] 230 | OnDismissAction=[!SetOption VariableValue5 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue5][!Redraw] 231 | InputNumber=1 232 | 233 | [VariableIcon6] 234 | Meter=String 235 | Text= 236 | MeterStyle=VariableIcon | RightPanel 237 | Hidden= 238 | [VariableTitle6] 239 | Meter=String 240 | Text=Layer3 Height 241 | MeterStyle=VarTitle | RightPanel 242 | Hidden= 243 | [VariableDescription6] 244 | Meter=String 245 | Text= 246 | MeterStyle=VarDescription | RightPanel 247 | Hidden= 248 | [VariableValue6] 249 | Meter=String 250 | Text=[#Layer3Height] 251 | MeterStyle=VarStringValue | RightPanel 252 | LeftMouseUpAction=[!CommandMeasure "InputText6" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 253 | Hidden= 254 | [InputText6] 255 | Measure=Plugin 256 | Plugin=InputText 257 | SolidColor=[#s_RightPanelBackgroundColor] 258 | FontColor=[#s_FontColor] 259 | FontFace=[#s_FontFace] 260 | FontSize=[#s_InputTextFontSize] 261 | Disabled= 262 | X=([VariableValue6:X]) 263 | Y=([VariableValue6:Y] + [#s_ValueYPadding]) 264 | H=[VariableValue6:H] 265 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 266 | DynamicVariables=1 267 | DefaultValue=[#Layer3Height] 268 | Command1=[!SetVariable "Layer3Height" "$UserInput$"][!WriteKeyValue "Variables" "Layer3Height" "[#Layer3Height]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue6][!Redraw][#s_OnChangeAction] 269 | OnDismissAction=[!SetOption VariableValue6 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue6][!Redraw] 270 | InputNumber=1 271 | 272 | [VariableIcon7] 273 | Meter=String 274 | Text= 275 | MeterStyle=VariableIcon | RightPanel 276 | Hidden= 277 | [VariableTitle7] 278 | Meter=String 279 | Text=Layer4 Height 280 | MeterStyle=VarTitle | RightPanel 281 | Hidden= 282 | [VariableDescription7] 283 | Meter=String 284 | Text= 285 | MeterStyle=VarDescription | RightPanel 286 | Hidden= 287 | [VariableValue7] 288 | Meter=String 289 | Text=[#Layer4Height] 290 | MeterStyle=VarStringValue | RightPanel 291 | LeftMouseUpAction=[!CommandMeasure "InputText7" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 292 | Hidden= 293 | [InputText7] 294 | Measure=Plugin 295 | Plugin=InputText 296 | SolidColor=[#s_RightPanelBackgroundColor] 297 | FontColor=[#s_FontColor] 298 | FontFace=[#s_FontFace] 299 | FontSize=[#s_InputTextFontSize] 300 | Disabled= 301 | X=([VariableValue7:X]) 302 | Y=([VariableValue7:Y] + [#s_ValueYPadding]) 303 | H=[VariableValue7:H] 304 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 305 | DynamicVariables=1 306 | DefaultValue=[#Layer4Height] 307 | Command1=[!SetVariable "Layer4Height" "$UserInput$"][!WriteKeyValue "Variables" "Layer4Height" "[#Layer4Height]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue7][!Redraw][#s_OnChangeAction] 308 | OnDismissAction=[!SetOption VariableValue7 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue7][!Redraw] 309 | InputNumber=1 310 | 311 | [VariableTitle9] 312 | Meter=String 313 | X=[#s_VariableXPadding] 314 | Y=[#s_VariableYPadding]R 315 | Text=Angle 316 | MeterStyle=VarTitle | RightPanel 317 | Hidden= 318 | [VariableDescription9] 319 | Meter=String 320 | Text= 321 | MeterStyle=VarDescription | RightPanel 322 | Hidden= 323 | [VariableValue9] 324 | Meter=String 325 | Text=[#Angle] 326 | MeterStyle=VarStringValue | RightPanel 327 | LeftMouseUpAction=[!CommandMeasure "InputText9" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 328 | Hidden= 329 | [InputText9] 330 | Measure=Plugin 331 | Plugin=InputText 332 | SolidColor=[#s_RightPanelBackgroundColor] 333 | FontColor=[#s_FontColor] 334 | FontFace=[#s_FontFace] 335 | FontSize=[#s_InputTextFontSize] 336 | Disabled= 337 | X=([VariableValue9:X]) 338 | Y=([VariableValue9:Y] + [#s_ValueYPadding]) 339 | H=[VariableValue9:H] 340 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 341 | DynamicVariables=1 342 | DefaultValue=[#Angle] 343 | Command1=[!SetVariable "Angle" "$UserInput$"][!WriteKeyValue "Variables" "Angle" "[#Angle]" "#@#\Variables\[#Preset]\Vector.inc"][!UpdateMeter VariableValue9][!Redraw][#s_OnChangeAction] 344 | OnDismissAction=[!SetOption VariableValue9 FontColor "[#s_FontColor]"][!UpdateMeter VariableValue9][!Redraw] 345 | InputNumber=1 -------------------------------------------------------------------------------- /settings/categories/VisTypes/Vector/Gradient.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon8] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle8] 7 | Meter=String 8 | Text=Color Mode 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription8] 12 | Meter=String 13 | Text= 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [MeasureRadio8Solid] 17 | Measure=String 18 | String=[#BarType] 19 | DynamicVariables=1 20 | IfMatch=^Solid$ 21 | IfMatchAction=[!SetOption RadioString8Solid InlinePattern ".*"][!SetOption RadioButton8Solid Text "[\xECCB]"][!Update][!Redraw] 22 | IfNotMatchAction=[!SetOption RadioString8Solid InlinePattern "^$"][!SetOption RadioButton8Solid Text "[\xECCA]"][!Update][!Redraw] 23 | [RadioButton8Solid] 24 | Meter=String 25 | Text=[\xECCA] 26 | FontSize=15 27 | MeterStyle=VariableIcon | RightPanel 28 | DynamicVariables=1 29 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Solid" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 30 | [RadioString8Solid] 31 | Meter=String 32 | Text=Solid 33 | Y=-1r 34 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 35 | MeterStyle=VarStringValue | VarColorString | RightPanel 36 | InlinePattern=^$ 37 | InlineSetting=Weight | 600 38 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Solid" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 39 | [MeasureRadio8Gradient] 40 | Measure=String 41 | String=[#BarType] 42 | DynamicVariables=1 43 | IfMatch=^Gradient$ 44 | IfMatchAction=[!SetOption RadioString8Gradient InlinePattern ".*"][!SetOption RadioButton8Gradient Text "[\xECCB]"][!Update][!Redraw] 45 | IfNotMatchAction=[!SetOption RadioString8Gradient InlinePattern "^$"][!SetOption RadioButton8Gradient Text "[\xECCA]"][!Update][!Redraw] 46 | [RadioButton8Gradient] 47 | Meter=String 48 | Text=[\xECCA] 49 | FontSize=15 50 | MeterStyle=VariableIcon | RightPanel 51 | DynamicVariables=1 52 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Gradient" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 53 | [RadioString8Gradient] 54 | Meter=String 55 | Text=Gradient 56 | Y=-1r 57 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 58 | MeterStyle=VarStringValue | VarColorString | RightPanel 59 | InlinePattern=^$ 60 | InlineSetting=Weight | 600 61 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Gradient" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 62 | [VariableIcon9] 63 | Meter=String 64 | Text= 65 | MeterStyle=VariableIcon | RightPanel 66 | Hidden= 67 | 68 | [VariableIcon0] 69 | Meter=String 70 | Text= 71 | MeterStyle=VariableIcon | RightPanel 72 | Hidden= 73 | [VariableTitle0] 74 | Meter=String 75 | Text=Gradient 76 | MeterStyle=VarTitle | RightPanel 77 | Hidden= 78 | [VariableDescription0] 79 | Meter=String 80 | Text=Gradients for vector layers 81 | MeterStyle=VarDescription | RightPanel 82 | Hidden= 83 | [VariableValue0] 84 | Meter=String 85 | Text= 86 | MeterStyle=VarStringValue | Link0 | RightPanel 87 | Hidden= 88 | LeftMouseUpAction=[" "] 89 | [MeasureLinkStatus0] 90 | Measure=Calc 91 | Formula=0 92 | IfCondition=(0 = #CURRENTSECTION#) 93 | IfTrueAction=[!DisableMouseAction VariableValue0 LeftMouseUpAction] 94 | Disabled= 95 | 96 | [VariableIcon1] 97 | Meter=String 98 | Text= 99 | MeterStyle=VariableIcon | RightPanel 100 | Hidden= 101 | [VariableTitle1] 102 | Meter=String 103 | Text=Layer1Gradient 104 | MeterStyle=VarTitle | RightPanel 105 | Hidden= 106 | [VariableDescription1] 107 | Meter=String 108 | Text= 109 | MeterStyle=VarDescription | RightPanel 110 | Hidden= 111 | [VariableVariableValue1] 112 | Meter=String 113 | Text=[#Layer1Gradient] 114 | MeterStyle=VarStringValue | RightPanel 115 | LeftMouseUpAction=[!CommandMeasure "InputText1" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 116 | Hidden= 117 | [InputText1] 118 | Measure=Plugin 119 | Plugin=InputText 120 | SolidColor=[#s_RightPanelBackgroundColor] 121 | FontColor=#s_FontColor# 122 | FontFace=#s_FontFace# 123 | FontSize=#s_InputTextFontSize# 124 | Disabled= 125 | X=([VariableVariableValue1:X]) 126 | Y=([VariableVariableValue1:Y] + [#s_ValueYPadding]) 127 | H=[VariableVariableValue1:H] 128 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 129 | DynamicVariables=1 130 | DefaultValue=[#Layer1Gradient] 131 | Command1=[!SetVariable "Layer1Gradient" "$UserInput$"][!WriteKeyValue "Variables" "Layer1Gradient" "[#Layer1Gradient]" "#@#\Variables\[#Preset]\Vector\Gradient.inc"][!UpdateMeter VariableVariableValue1][!Redraw][#s_OnChangeAction] 132 | OnDismissAction=[!SetOption VariableVariableValue1 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue1][!Redraw] 133 | 134 | [VariableIcon2] 135 | Meter=String 136 | Text= 137 | MeterStyle=VariableIcon | RightPanel 138 | Hidden= 139 | [VariableTitle2] 140 | Meter=String 141 | Text=Layer2Gradient 142 | MeterStyle=VarTitle | RightPanel 143 | Hidden= 144 | [VariableDescription2] 145 | Meter=String 146 | Text= 147 | MeterStyle=VarDescription | RightPanel 148 | Hidden= 149 | [VariableVariableValue2] 150 | Meter=String 151 | Text=[#Layer2Gradient] 152 | MeterStyle=VarStringValue | RightPanel 153 | LeftMouseUpAction=[!CommandMeasure "InputText2" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 154 | Hidden= 155 | [InputText2] 156 | Measure=Plugin 157 | Plugin=InputText 158 | SolidColor=[#s_RightPanelBackgroundColor] 159 | FontColor=#s_FontColor# 160 | FontFace=#s_FontFace# 161 | FontSize=#s_InputTextFontSize# 162 | Disabled= 163 | X=([VariableVariableValue2:X]) 164 | Y=([VariableVariableValue2:Y] + [#s_ValueYPadding]) 165 | H=[VariableVariableValue2:H] 166 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 167 | DynamicVariables=1 168 | DefaultValue=[#Layer2Gradient] 169 | Command1=[!SetVariable "Layer2Gradient" "$UserInput$"][!WriteKeyValue "Variables" "Layer2Gradient" "[#Layer2Gradient]" "#@#\Variables\[#Preset]\Vector\Gradient.inc"][!UpdateMeter VariableVariableValue2][!Redraw][#s_OnChangeAction] 170 | OnDismissAction=[!SetOption VariableVariableValue2 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue2][!Redraw] 171 | 172 | [VariableIcon3] 173 | Meter=String 174 | Text= 175 | MeterStyle=VariableIcon | RightPanel 176 | Hidden= 177 | [VariableTitle3] 178 | Meter=String 179 | Text=Layer3Gradient 180 | MeterStyle=VarTitle | RightPanel 181 | Hidden= 182 | [VariableDescription3] 183 | Meter=String 184 | Text= 185 | MeterStyle=VarDescription | RightPanel 186 | Hidden= 187 | [VariableVariableValue3] 188 | Meter=String 189 | Text=[#Layer3Gradient] 190 | MeterStyle=VarStringValue | RightPanel 191 | LeftMouseUpAction=[!CommandMeasure "InputText3" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 192 | Hidden= 193 | [InputText3] 194 | Measure=Plugin 195 | Plugin=InputText 196 | SolidColor=[#s_RightPanelBackgroundColor] 197 | FontColor=#s_FontColor# 198 | FontFace=#s_FontFace# 199 | FontSize=#s_InputTextFontSize# 200 | Disabled= 201 | X=([VariableVariableValue3:X]) 202 | Y=([VariableVariableValue3:Y] + [#s_ValueYPadding]) 203 | H=[VariableVariableValue3:H] 204 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 205 | DynamicVariables=1 206 | DefaultValue=[#Layer3Gradient] 207 | Command1=[!SetVariable "Layer3Gradient" "$UserInput$"][!WriteKeyValue "Variables" "Layer3Gradient" "[#Layer3Gradient]" "#@#\Variables\[#Preset]\Vector\Gradient.inc"][!UpdateMeter VariableVariableValue3][!Redraw][#s_OnChangeAction] 208 | OnDismissAction=[!SetOption VariableVariableValue3 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue3][!Redraw] 209 | 210 | [VariableIcon4] 211 | Meter=String 212 | Text= 213 | MeterStyle=VariableIcon | RightPanel 214 | Hidden= 215 | [VariableTitle4] 216 | Meter=String 217 | Text=Layer4Gradient 218 | MeterStyle=VarTitle | RightPanel 219 | Hidden= 220 | [VariableDescription4] 221 | Meter=String 222 | Text= 223 | MeterStyle=VarDescription | RightPanel 224 | Hidden= 225 | [VariableVariableValue4] 226 | Meter=String 227 | Text=[#Layer4Gradient] 228 | MeterStyle=VarStringValue | RightPanel 229 | LeftMouseUpAction=[!CommandMeasure "InputText4" "ExecuteBatch All"][!SetOption #CURRENTSECTION# FontColor "0,0,0,0"][!UpdateMeter #CURRENTSECTION#][!Redraw] 230 | Hidden= 231 | [InputText4] 232 | Measure=Plugin 233 | Plugin=InputText 234 | SolidColor=[#s_RightPanelBackgroundColor] 235 | FontColor=#s_FontColor# 236 | FontFace=#s_FontFace# 237 | FontSize=#s_InputTextFontSize# 238 | Disabled= 239 | X=([VariableVariableValue4:X]) 240 | Y=([VariableVariableValue4:Y] + [#s_ValueYPadding]) 241 | H=[VariableVariableValue4:H] 242 | W=([#s_RightPanelW] - ([#s_VariableXPadding] * 2)) 243 | DynamicVariables=1 244 | DefaultValue=[#Layer4Gradient] 245 | Command1=[!SetVariable "Layer4Gradient" "$UserInput$"][!WriteKeyValue "Variables" "Layer4Gradient" "[#Layer4Gradient]" "#@#\Variables\[#Preset]\Vector\Gradient.inc"][!UpdateMeter VariableVariableValue4][!Redraw][#s_OnChangeAction] 246 | OnDismissAction=[!SetOption VariableVariableValue4 FontColor "[#s_FontColor]"][!UpdateMeter VariableVariableValue4][!Redraw] -------------------------------------------------------------------------------- /settings/categories/VisTypes/Vector/Solid.inc: -------------------------------------------------------------------------------- 1 | [VariableIcon8] 2 | Meter=String 3 | Text= 4 | MeterStyle=VariableIcon | RightPanel 5 | Hidden= 6 | [VariableTitle8] 7 | Meter=String 8 | Text=Color Mode 9 | MeterStyle=VarTitle | RightPanel 10 | Hidden= 11 | [VariableDescription8] 12 | Meter=String 13 | Text= 14 | MeterStyle=VarDescription | RightPanel 15 | Hidden= 16 | [MeasureRadio8Solid] 17 | Measure=String 18 | String=[#BarType] 19 | DynamicVariables=1 20 | IfMatch=^Solid$ 21 | IfMatchAction=[!SetOption RadioString8Solid InlinePattern ".*"][!SetOption RadioButton8Solid Text "[\xECCB]"][!Update][!Redraw] 22 | IfNotMatchAction=[!SetOption RadioString8Solid InlinePattern "^$"][!SetOption RadioButton8Solid Text "[\xECCA]"][!Update][!Redraw] 23 | [RadioButton8Solid] 24 | Meter=String 25 | Text=[\xECCA] 26 | FontSize=15 27 | MeterStyle=VariableIcon | RightPanel 28 | DynamicVariables=1 29 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Solid" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 30 | [RadioString8Solid] 31 | Meter=String 32 | Text=Solid 33 | Y=-1r 34 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 35 | MeterStyle=VarStringValue | VarColorString | RightPanel 36 | InlinePattern=^$ 37 | InlineSetting=Weight | 600 38 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Solid" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 39 | 40 | [MeasureRadio8Gradient] 41 | Measure=String 42 | String=[#BarType] 43 | DynamicVariables=1 44 | IfMatch=^Gradient$ 45 | IfMatchAction=[!SetOption RadioString8Gradient InlinePattern ".*"][!SetOption RadioButton8Gradient Text "[\xECCB]"][!Update][!Redraw] 46 | IfNotMatchAction=[!SetOption RadioString8Gradient InlinePattern "^$"][!SetOption RadioButton8Gradient Text "[\xECCA]"][!Update][!Redraw] 47 | [RadioButton8Gradient] 48 | Meter=String 49 | Text=[\xECCA] 50 | FontSize=15 51 | MeterStyle=VariableIcon | RightPanel 52 | DynamicVariables=1 53 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Gradient" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 54 | [RadioString8Gradient] 55 | Meter=String 56 | Text=Gradient 57 | Y=-1r 58 | Padding=0,0,[#s_VariableXPadding],[#s_ValueYPadding] 59 | MeterStyle=VarStringValue | VarColorString | RightPanel 60 | InlinePattern=^$ 61 | InlineSetting=Weight | 600 62 | LeftMouseUpAction=[!WriteKeyValue Variables BarType "Gradient" "#@#\Variables\[#Preset]\Vector.inc"][#ConstChangeAction][!Refresh] 63 | [VariableIcon9] 64 | Meter=String 65 | Text= 66 | MeterStyle=VariableIcon | RightPanel 67 | Hidden= 68 | 69 | [VariableIcon1] 70 | Meter=String 71 | Text= 72 | MeterStyle=VariableIcon | RightPanel 73 | Hidden= 74 | [VariableTitle1Title] 75 | Meter=String 76 | Text=Layer 1 77 | MeterStyle=VarTitle | RightPanel 78 | Hidden= 79 | [VariableDescription1] 80 | Meter=String 81 | Text= 82 | MeterStyle=VarDescription | RightPanel 83 | Hidden= 84 | [ColorVariableValue1] 85 | Meter=Shape 86 | Shape=Ellipse [#s_ColorSize],[#s_ColorSize],[#s_ColorSize],[#s_ColorSize] | Fill Color [#Layer1Color] | StrokeWidth [#s_ColorStrokeWidth] | Extend Outline 87 | Outline=Stroke Color [#s_ColorStrokeColor] 88 | MeterStyle=VarColorValue | RightPanel 89 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer1Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 90 | Hidden= 91 | [StringVariableValue1] 92 | Meter=String 93 | Text=[#Layer1Color] 94 | MeterStyle=VarStringValue | VarColorString | RightPanel 95 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer1Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 96 | Hidden= 97 | [VariableIcon2] 98 | Meter=String 99 | Text= 100 | MeterStyle=VariableIcon | RightPanel 101 | Hidden= 102 | [VariableTitle2Title] 103 | Meter=String 104 | Text=Layer 2 105 | MeterStyle=VarTitle | RightPanel 106 | Hidden= 107 | [VariableDescription2] 108 | Meter=String 109 | Text= 110 | MeterStyle=VarDescription | RightPanel 111 | Hidden= 112 | [ColorVariableValue2] 113 | Meter=Shape 114 | Shape=Ellipse [#s_ColorSize],[#s_ColorSize],[#s_ColorSize],[#s_ColorSize] | Fill Color [#Layer2Color] | StrokeWidth [#s_ColorStrokeWidth] | Extend Outline 115 | Outline=Stroke Color [#s_ColorStrokeColor] 116 | MeterStyle=VarColorValue | RightPanel 117 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer2Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 118 | Hidden= 119 | [StringVariableValue2] 120 | Meter=String 121 | Text=[#Layer2Color] 122 | MeterStyle=VarStringValue | VarColorString | RightPanel 123 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer2Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 124 | Hidden= 125 | [VariableIcon3] 126 | Meter=String 127 | Text= 128 | MeterStyle=VariableIcon | RightPanel 129 | Hidden= 130 | [VariableTitle3Title] 131 | Meter=String 132 | Text=Layer 3 133 | MeterStyle=VarTitle | RightPanel 134 | Hidden= 135 | [VariableDescription3] 136 | Meter=String 137 | Text= 138 | MeterStyle=VarDescription | RightPanel 139 | Hidden= 140 | [ColorVariableValue3] 141 | Meter=Shape 142 | Shape=Ellipse [#s_ColorSize],[#s_ColorSize],[#s_ColorSize],[#s_ColorSize] | Fill Color [#Layer3Color] | StrokeWidth [#s_ColorStrokeWidth] | Extend Outline 143 | Outline=Stroke Color [#s_ColorStrokeColor] 144 | MeterStyle=VarColorValue | RightPanel 145 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer3Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 146 | Hidden= 147 | [StringVariableValue3] 148 | Meter=String 149 | Text=[#Layer3Color] 150 | MeterStyle=VarStringValue | VarColorString | RightPanel 151 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer3Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 152 | Hidden= 153 | [VariableIcon4] 154 | Meter=String 155 | Text= 156 | MeterStyle=VariableIcon | RightPanel 157 | Hidden= 158 | [VariableTitle4Title] 159 | Meter=String 160 | Text=Layer 4 161 | MeterStyle=VarTitle | RightPanel 162 | Hidden= 163 | [VariableDescription4] 164 | Meter=String 165 | Text= 166 | MeterStyle=VarDescription | RightPanel 167 | Hidden= 168 | [ColorVariableValue4] 169 | Meter=Shape 170 | Shape=Ellipse [#s_ColorSize],[#s_ColorSize],[#s_ColorSize],[#s_ColorSize] | Fill Color [#Layer4Color] | StrokeWidth [#s_ColorStrokeWidth] | Extend Outline 171 | Outline=Stroke Color [#s_ColorStrokeColor] 172 | MeterStyle=VarColorValue | RightPanel 173 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer4Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 174 | Hidden= 175 | [StringVariableValue4] 176 | Meter=String 177 | Text=[#Layer4Color] 178 | MeterStyle=VarStringValue | VarColorString | RightPanel 179 | LeftMouseUpAction=[!CommandMeasure ColorPickerUI "Change('Layer4Color', '[&ColorPickerUI:sub('#@#Variables\[#Preset]\Vector\Solid.inc')]', '[&ColorPickerUI:sub('[#CURRENTCONFIG]')]')"][#ConstChangeAction] 180 | Hidden= -------------------------------------------------------------------------------- /settings/includes/Background.inc: -------------------------------------------------------------------------------- 1 | [Background] 2 | Meter=Shape 3 | Shape=Rectangle 0,0,(#s_RightPanelW# + #s_LeftPanelW#),(#s_PanelH#),(#s_BackgroundRounding#) | Extend BackgroundModifiers 4 | Shape2=Rectangle (#s_LeftPanelW#),0,(#s_RightPanelW#),(#s_PanelH#),(#s_BackgroundRounding#) | Extend PanelModifiers 5 | Shape3=Rectangle (#s_LeftPanelW#),0,(#s_BackgroundRounding#),(#s_PanelH#) | Extend PanelModifiers 6 | PanelModifiers=Fill Color #s_RightPanelBackgroundColor# | StrokeWidth 0 7 | BackgroundModifiers=Fill Color #s_LeftPanelBackgroundColor# | StrokeWidth 0 8 | 9 | [LeftPanelContainer] 10 | Meter=Shape 11 | Shape=Rectangle 0,0,(#s_LeftPanelW#),(#s_PanelH#),[#s_BackgroundRounding] | Extend PanelModifiers 12 | PanelModifiers=Fill Color 255,255,255 | StrokeWidth 0 13 | MouseScrollDownAction=[!EnableMeasure "ScrollDownLeftPanel"][!UpdateMeasure "ScrollDownLeftPanel"] 14 | MouseScrollUpAction=[!EnableMeasure "ScrollUpLeftPanel"][!UpdateMeasure "ScrollUpLeftPanel"] 15 | MouseActionCursor=0 16 | 17 | [RightPanelContainer] 18 | Meter=Shape 19 | Shape=Rectangle 0,0,(#s_RightPanelW#),(#s_PanelH#),(#s_BackgroundRounding#) | Extend PanelModifiers 20 | PanelModifiers=Fill Color 255,255,255 | StrokeWidth 0 21 | X=(#s_LeftPanelW#) 22 | MouseScrollDownAction=[!EnableMeasure "ScrollDownRightPanel"][!UpdateMeasure "ScrollDownRightPanel"] 23 | MouseScrollUpAction=[!EnableMeasure "ScrollUpRightPanel"][!UpdateMeasure "ScrollUpRightPanel"] 24 | MouseActionCursor=0 25 | 26 | [CategoryListSelectedIndicator] 27 | Meter=Shape 28 | Shape=Rectangle 0,[#s_SelectorPadding],([#s_SelectorWidth] * 2),([ListItem[#s_CurrentCategory]:H] - ([#s_SelectorPadding] * 2)),[#s_SelectorRounding] | Extend Line, Square 29 | Line=StrokeWidth 0 30 | Square=Fill Color [#s_SelectedColor] 31 | X=(-[#s_SelectorWidth]) 32 | Y=([ListIcon[#s_CurrentCategory]:Y]) 33 | Container=LeftPanelContainer 34 | DynamicVariables=1 35 | 36 | ; Scroll indicator. This can be optimized a lot 37 | 38 | [MaxScroll] 39 | Measure=Calc 40 | Formula=([LastRightPanel:Y] + ([#s_PanelH] - [#s_ScrollTreshold]) - [#s_PanelH]) 41 | DynamicVariables=1 42 | OnUpdateAction=!PauseMeasure MaxScroll 43 | 44 | [ScrollerHeight] 45 | Measure=Calc 46 | Formula=([#s_ScrollIndicatorMaxHeight]) * (([LastRightPanel:Y] + ([#s_PanelH] - [#s_ScrollTreshold]) - [#s_PanelH]) / [LastRightPanel:Y]) 47 | DynamicVariables=1 48 | OnUpdateAction=!PauseMeasure ScrollerHeight 49 | 50 | [ScrollLeft] 51 | Measure=Calc 52 | Formula=([#s_ScrollIndicatorMaxHeight]) - ScrollerHeight 53 | DynamicVariables=1 54 | OnUpdateAction=!PauseMeasure ScrollerHeight 55 | 56 | [CurrScroll] 57 | Measure=Calc 58 | Formula=Clamp((-[#s_ScrollRightPanel] / MaxScroll),0,1) 59 | DynamicVariables=1 60 | 61 | [CategoryCurrentScroll] 62 | Measure=Calc 63 | Formula=ScrollLeft * CurrScroll 64 | DynamicVariables=1 65 | 66 | [CategoryScrollIndicator] 67 | Meter=Shape 68 | Shape=Rectangle 0,0,[#s_ScrollIndicatorWidth],[#s_ScrollIndicatorMaxHeight],[#s_ScrollIndicatorRounding] | Fill Color [#s_ScrollIndicatorBackgroundColor] | StrokeWidth 0 69 | Shape2=Rectangle 0,[CategoryCurrentScroll],[#s_ScrollIndicatorWidth],[ScrollerHeight],[#s_ScrollIndicatorRounding] | Fill Color [#s_ScrollIndicatorColor] | StrokeWidth 0 70 | Y=[#s_scrollIndicatorYPadding] 71 | X=([#s_RightPanelW] - ([#s_ScrollIndicatorWidth] + [#s_scrollIndicatorXPadding])) 72 | Hidden=([ScrollerHeight] > 0) ? 0 : 1 73 | Container=RightPanelContainer 74 | DynamicVariables=1 75 | 76 | [LeftPanel] 77 | Container=LeftPanelContainer 78 | 79 | [RightPanel] 80 | Container=RightPanelContainer 81 | 82 | [FirstItem] 83 | H=0 84 | W=0 85 | X=0 86 | SolidColor=0,0,0,0 87 | DynamicVariables=1 88 | 89 | [LastITem] 90 | H=0 91 | W=0 92 | Y=0R 93 | X=0 94 | SolidColor=0,0,0,0 95 | 96 | [CloseShape] 97 | Meter=Shape 98 | X=405 99 | Y=5 100 | Shape=Rectangle 0,0,30,30,5 | Fill Color [#CloseColor] | StrokeWidth 0 101 | DynamicVariables=1 102 | MouseOverAction=[!SetVariable CloseColor "FF0000"][!UpdateMeter #CURRENTSECTION#][!Redraw] 103 | MouseLeaveAction=[!SetVariable CloseColor "FFFFFF"][!UpdateMeter #CURRENTSECTION#][!Redraw] 104 | LeftMouseUpAction=[!WriteKeyValue Variables s_CurrentCategory "0" "#ROOTCONFIGPATH#settings\includes\Variables.inc"][!DeactivateConfig] 105 | [Close] 106 | Meter=String 107 | Text=[\xE711] 108 | X=420 109 | Y=22 110 | FontFace=Segoe MDL2 Assets 111 | FontColor=000000 112 | FontSize=20 113 | StringAlign=CenterCenter 114 | AntiAlias=1 -------------------------------------------------------------------------------- /settings/includes/ListItems.inc: -------------------------------------------------------------------------------- 1 | ;Category list styles 2 | [ListIcon] 3 | FontFace=#s_IconFontFace# 4 | AccurateText=1 5 | AntiAlias=1 6 | Y=0R 7 | X=0 8 | SolidColor=[#s_DebugListIconColor[#s_DebugColors]] 9 | FontColor=[#s_FontColor] 10 | 11 | [ListDefaultIcon] 12 | Padding=[#s_ListDefaultLeftPadding],[#s_ListYPadding],0,[#s_ListYPadding] 13 | FontSize=#s_FontSize2# 14 | FontColor=[#s_FontColor] 15 | 16 | [ListTopicIcon] 17 | Padding=[#s_ListTopicLeftPadding],[#s_ListYPadding],0,[#s_ListYPadding] 18 | FontSize=#s_FontSize3# 19 | FontColor=[#s_FontColor] 20 | 21 | [ListAboutIcon] 22 | Padding=[#s_ListAboutLeftPadding],([#s_ListYPadding] + 3),0,[#s_ListYPadding] 23 | FontSize=#s_FontSize1# 24 | FontColor=[#s_FontColor] 25 | 26 | [ListItem] 27 | Padding=0,[#s_ListYPadding],0,[#s_ListYPadding] 28 | SolidColor=[#s_DebugListColor[#s_DebugColors]] 29 | FontFace=#s_FontFace# 30 | ClipString=2 31 | FontColor=[#s_FontColor] 32 | DynamicVariables=1 33 | AccurateText=1 34 | AntiAlias=1 35 | X=0R 36 | Y=0r 37 | 38 | [ListDefaultItem] 39 | FontSize=#s_FontSize3# 40 | FontColor=[#s_FontColor] 41 | ;solidColor=0,0,255,100 42 | 43 | [ListTopicItem] 44 | FontSize=#s_FontSize4# 45 | FontColor=[#s_FontColor] 46 | ;solidColor=0,255,0,100 47 | 48 | [ListAboutItem] 49 | FontSize=#s_FontSize2# 50 | FontColor=[#s_FontColor] 51 | ;solidColor=255,0,0,100 52 | 53 | -------------------------------------------------------------------------------- /settings/includes/MeterStyles.inc: -------------------------------------------------------------------------------- 1 | ;Category styles 2 | [CategoryIcon] 3 | AccurateText=1 4 | AntiAlias=1 5 | X=0 6 | Y=0R 7 | Padding=[#s_CategoryTitleXPadding],[#s_CategoryIconTopPadding],0,0 8 | FontSize=#s_FontSize1# 9 | FontFace=#s_IconFontFace# 10 | SolidColor=[#s_DebugCategoryIconColor[#s_DebugColors]] 11 | FontColor=[#s_FontColor] 12 | 13 | [CategoryTitle] 14 | AccurateText=1 15 | AntiAlias=1 16 | Y=0r 17 | X=0R 18 | Padding=0,[#s_CategoryTitleTopPadding],0,0 19 | ClipString=2 20 | FontFace=#s_FontFace# 21 | FontWeight=#s_CategoryTitleFontWeight# 22 | FontSize=#s_FontSize1# 23 | InlineSetting=CharacterSpacing | [#s_TitleIconNudge] | * 24 | InlinePattern=^. 25 | DynamicVariables=1 26 | SolidColor=[#s_DebugCategoryTitleColor[#s_DebugColors]] 27 | FontColor=[#s_FontColor] 28 | 29 | [ThickDescription] 30 | FontWeight=[#s_CategoryDescriptionFontWeight] 31 | 32 | [CategoryTitleSeparator] 33 | X=0 34 | Y=0R 35 | H=[#s_CategoryTitleBottomPadding] 36 | W=[#s_RightPanelW] 37 | SolidColor=[#s_DebugSeparatorColor[#s_DebugColors]] 38 | 39 | ;Variable styles 40 | [VariableIcon] 41 | AccurateText=1 42 | AntiAlias=1 43 | X=0 44 | Y=0R 45 | Padding=[#s_VariableXPadding],0,0,0 46 | FontSize=[#s_FontSize1] 47 | FontFace=[#s_IconFontFace] 48 | SolidColor=[#s_DebugCategoryIconColor[#s_DebugColors]] 49 | FontColor=[#s_FontColor] 50 | 51 | [VarTitle] 52 | AccurateText=1 53 | AntiAlias=1 54 | Y=0r 55 | X=0R 56 | W=([#s_RightPanelW] - [#s_VariableXPadding] * 2) 57 | ClipString=2 58 | Padding=0,0,[#s_VariableXPadding],0 59 | FontFace=[#s_FontFace] 60 | FontSize=[#s_FontSize2] 61 | FontWeight=[#s_VariableTitleFontWeight] 62 | InlineSetting=CharacterSpacing | [#s_TitleIconNudge] | * 63 | InlinePattern=^. 64 | SolidColor=[#s_DebugVariableTitleColor[#s_DebugColors]] 65 | FontColor=[#s_FontColor] 66 | 67 | [VarDescription] 68 | AccurateText=1 69 | AntiAlias=1 70 | X=[#s_VariableXPadding] 71 | Y=0R 72 | W=([#s_RightPanelW] - [#s_VariableXPadding] * 2) 73 | ClipString=2 74 | Padding=0,0,[#s_VariableXPadding],0 75 | FontFace=[#s_FontFace] 76 | FontSize=[#s_FontSize4] 77 | SolidColor=[#s_DebugDescriptionColor[#s_DebugColors]] 78 | FontColor=[#s_FontColor] 79 | 80 | [VarStringValue] 81 | AccurateText=1 82 | AntiAlias=1 83 | DynamicVariables=1 84 | Y=0R 85 | X=0r 86 | W=([#s_RightPanelW] - [#s_VariableXPadding] * 2) 87 | ClipString=2 88 | Padding=0,[#s_ValueYPadding],[#s_VariableXPadding],[#s_ValueYPadding] 89 | FontColor=[#s_FontColor] 90 | FontFace=[#s_FontFace] 91 | FontSize=[#s_FontSize3] 92 | SolidColor=[#s_DebugValueColor[#s_DebugColors]] 93 | MouseOverAction=[!SetOption "#CURRENTSECTION#" FontColor [#s_SelectedColor]][!SetOption "#CURRENTSECTION#" FontWeight [#s_SelectedFontWeight]][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 94 | MouseLeaveAction=[!SetOption "#CURRENTSECTION#" FontColor [#s_FontColor]][!SetOption "#CURRENTSECTION#" FontWeight [#s_FontWeight]][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 95 | 96 | [VarColorString] 97 | Y=0r 98 | X=0R 99 | FontColor=[#s_FontColor] 100 | Padding=[#s_ColorStringLeftPadding],([#s_ColorSize] - [#s_FontSize3]),[#s_VariableXPadding],(([#s_ColorSize] - [#s_FontSize3]) + [#s_ValueYPadding]) 101 | 102 | [Link] 103 | MouseOverAction= 104 | MouseLeaveAction= 105 | [Link0] 106 | MouseOverAction= 107 | MouseLeaveAction= 108 | 109 | [Link1] 110 | MouseOverAction=[!SetOption "#CURRENTSECTION#" FontColor [#s_SelectedColor]][!SetOption "#CURRENTSECTION#" InlineSetting "Underline"][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 111 | MouseLeaveAction=[!SetOption "#CURRENTSECTION#" FontColor [#s_FontColor]][!SetOption "#CURRENTSECTION#" InlineSetting ""][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 112 | 113 | 114 | [VarToggleValue] 115 | X=(([#s_ToggleSize] / 2) + [#s_VariableXPadding]) 116 | DynamicVariables=1 117 | SolidColor=[#s_DebugToggleColor[#s_DebugColors]] 118 | 119 | [VarColorValue] 120 | X=[#s_VariableXPadding] 121 | Y=[#s_ValueYPadding]R 122 | SolidColor=[#s_DebugColorColor[#s_DebugColors]] 123 | MouseOverAction=[!SetOption "#CURRENTSECTION#" "Outline" "Stroke Color [#s_SelectedColor]"][!SetVariable s_ColorStrokeWidth [#s_ColorStrokeWidthSelected]][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 124 | MouseLeaveAction=[!SetOption "#CURRENTSECTION#" "Outline" "Stroke Color [#s_ColorStrokeColor]"][!SetVariable s_ColorStrokeWidth [#s_ColorStrokeWidth]][!UpdateMeter "#CURRENTSECTION#"][!Redraw] 125 | 126 | -------------------------------------------------------------------------------- /settings/includes/Variables.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@About | Name Internal settings | Description Changing internal variables requires generating to apply changes. | Icon [\xF259] 4 | ;?Integer | Name Scroll speed | Description 5 | s_ScrollSpeed=50 6 | ;? | Name Theme 1 name 7 | s_Theme0Name=Light 8 | ;? | Name Theme 2 name 9 | s_Theme1Name=Dark 10 | ;? | Name Theme 3 name 11 | s_Theme2Name=Slim 12 | 13 | ;@Topic | Name Internal | Icon | 14 | ;? | Name hidden | Hidden 1 15 | s_ScrollTreshold=[#s_PanelH] 16 | s_ScrollRightPanel=0 17 | s_ScrollLeftPanel=0 18 | s_CurrentCategory=0 19 | s_SettingsTheme=2 20 | 21 | ;@ | Name Generator | Icon [\xE9F5] 22 | ;? | 23 | s_GeneratorRightPanelWidth=350 24 | ;? | 25 | s_GeneratorLeftPanelWidth=50 26 | ;? | 27 | s_GeneratorPanelHeight=300 28 | 29 | ;@ | Name Debug colors | Icon [\xE783] 30 | ;?Toggle | 31 | s_DebugColors=0 32 | ;?Color | 33 | s_DebugCategoryTitleColor1=255,0,195,100 34 | s_DebugCategoryTitleColor0=0,0,0,0 35 | ;?Color | 36 | s_DebugValueColor1=170,0,255,100 37 | s_DebugValueColor0=0,0,0,0 38 | ;?Color | 39 | s_DebugDescriptionColor1=0,238,255,100 40 | s_DebugDescriptionColor0=0,0,0,0 41 | ;?Color | 42 | s_DebugListColor1=0,255,51,100 43 | s_DebugListColor0=0,0,0,0 44 | ;?Color | 45 | s_DebugListIconColor1=255,255,0,100 46 | s_DebugListIconColor0=0,0,0,0 47 | ;?Color | 48 | s_DebugSeparatorColor1=51,46,46,100 49 | s_DebugSeparatorColor0=0,0,0,0 50 | ;?Color | 51 | s_DebugVariableTitleColor1=255,0,0,100 52 | s_DebugVariableTitleColor0=0,0,0,0 53 | ;?Color | 54 | s_DebugCategoryIconColor1=229,255,0,100 55 | s_DebugCategoryIconColor0=0,0,0,0 56 | ;?Color | 57 | s_DebugToggleColor1=255,0,0,100 58 | s_DebugToggleColor0=0,0,0,0 59 | ;?Color | 60 | s_DebugColorColor1=255,0,0,100 61 | s_DebugColorColor0=0,0,0,0 62 | 63 | -------------------------------------------------------------------------------- /settings/includes/s_OnChangeAction.inc: -------------------------------------------------------------------------------- 1 | 2 | [Variables] 3 | s_OnChangeAction=[!CommandMeasure Crafter "[#VisualizerType]"] 4 | ConstChangeAction=[!WriteKeyValue Rainmeter OnRefreshAction "[!CommandMeasure Crafter [#***VisualizerType***]]"] 5 | 6 | -------------------------------------------------------------------------------- /settings/includes/themes/0.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@About | Name Theme 1 [#s_Theme0Name] 4 | ;@Topic | Name Customization 5 | ;@ | Name Background 6 | ;?Integer | Name Left panel width | Description 7 | s_LeftPanelW=200 8 | ;?Integer | Name Right panel width | Description 9 | s_RightPanelW=500 10 | ;?Integer | Name Skin height | Description 11 | s_PanelH=600 12 | ;?Color | Name Right panel background color | Description 13 | s_RightPanelBackgroundColor=253,253,255,255 14 | ;?Color | Name Left panel background color | Description 15 | s_LeftPanelBackgroundColor=200,200,203,255 16 | ;?Integer | Name Background corner radius | Description 17 | s_BackgroundRounding=5 18 | ;? | Name FrostedGlass mode | Description A certain Windows 10 update made Acrylic lag a lot, so it's not recommended#CRLF#Available modes: Acrylic, Blur, None 19 | s_FrostedGlassMode=None 20 | ;? | Name FrostedGlass border | Description All, None, Left, Right, Top and Bottom. Can be combined with pipes 21 | s_FrostedGlassBorders=All 22 | 23 | ;@ | Name Font 24 | ;? | Name Font face | Description 25 | s_FontFace=Segoe UI 26 | ;? | Name Icon font face | Description 27 | s_IconFontFace=Segoe MDL2 Assets 28 | ;?Color | Name Font color | Description 29 | s_FontColor=0,0,0 30 | ;?Integer | Name Font size 1 | Description Used for category titles 31 | s_FontSize1=20 32 | ;?Integer | Name Font size 2 | Description Used for variable titles 33 | s_FontSize2=16 34 | ;?Integer | Name Font size 3 | Description Used for variable values 35 | s_FontSize3=12 36 | s_InputTextFontSize=[#s_FontSize3] 37 | ;?Integer | Name Font size 4 | Description Used for descriptions 38 | s_FontSize4=10 39 | ;?Integer | Name Font size 5 | Description Unused (for now) 40 | s_FontSize5=8 41 | ;?Integer | Name Selected item font weight | Description 42 | s_SelectedFontWeight=500 43 | ;?Integer | Name Font weight | Description 44 | s_FontWeight=400 45 | 46 | ;@ | Name Scroll indicator 47 | ;?Integer | Name Scroll indicator Y padding | Description uses s_ValueYPadding | Hidden 1 48 | s_scrollIndicatorYPadding=[#s_ValueYPadding] 49 | s_ScrollIndicatorMaxHeight=([#s_PanelH] - ([#s_scrollIndicatorYPadding] * 2)) 50 | ;?Integer | Name Scroll indicator X padding | Description 51 | s_scrollIndicatorXPadding=5 52 | ;?Integer | Name Scroll indicator width | Description 53 | s_ScrollIndicatorWidth=5 54 | ;?Color | Name Scroll indicator background color | Description 55 | s_ScrollIndicatorBackgroundColor=0,0,0,0 56 | ;?Color | Name Scroll indicator color | Description 57 | s_ScrollIndicatorColor=200,200,200 58 | ;?Integer | Name Scroll indicator rounding | Description 59 | s_ScrollIndicatorRounding=5 60 | ;?Info | Name Filler variable 0 | Description This is here to show the scroll indicator 61 | = 62 | ;?Info | Name Filler variable 1 | Description This is here to show the scroll indicator 63 | = 64 | ;?Info | Name Filler variable 2 | Description This is here to show the scroll indicator 65 | = 66 | ;?Info | Name Filler variable 3 | Description This is here to show the scroll indicator 67 | = 68 | ;?Info | Name Filler variable 4 | Description This is here to show the scroll indicator 69 | = 70 | ;?Info | Name Filler variable 5 | Description This is here to show the scroll indicator 71 | = 72 | 73 | ;@ | Name Selected indicator 74 | ;?Color | Name Selected color | Description Most selected items use this color 75 | s_SelectedColor=007acc 76 | ;?Integer | Name Indicator height padding | Description 77 | s_SelectorPadding=8 78 | ;?Integer | Name Indicator width | Description 79 | s_SelectorWidth=3 80 | ;?Integer | Name Indicator rounding | Description default: [#s_SelectorWidth] 81 | s_SelectorRounding=[#s_SelectorWidth] 82 | 83 | ;@Topic | Name Categories 84 | ;@ | Name Category 85 | ;? | Name Title icon nudge | Description Fixes the literal 1px offset caused by the title and description using different font sizes 86 | s_TitleIconNudge=-1 87 | ;?Integer | Name Category title top and bottom padding | Description 88 | s_CategoryTitleXPadding=20 89 | ;?Integer | Name Category title top padding | Description 90 | s_CategoryTitleTopPadding=35 91 | ;?Integer | Name Category title bottom padding | Description 92 | s_CategoryTitleBottomPadding=20 93 | ;?Integer | Name Category title font weight | Description 94 | s_CategoryTitleFontWeight=500 95 | ;?Integer | Name Category description font weight | Description 96 | s_CategoryDescriptionFontWeight=500 97 | ;? | Name Category icon nudge | Description Visually center the category icon 98 | s_CategoryIconNudge=5 99 | s_CategoryIconTopPadding=([#s_CategoryTitleTopPadding] + [#s_CategoryIconNudge]) 100 | 101 | ;@ | Name Category list 102 | ;?Integer | Name About item top padding | Description 103 | s_ListAboutTopPadding=35 104 | ;?Integer | Name About item left padding | Description 105 | s_ListAboutLeftPadding=8 106 | ;?Integer | Name Default item left padding | Description 107 | s_ListDefaultLeftPadding=20 108 | ;?Integer | Name Topic item left padding | Description 109 | s_ListTopicLeftPadding=10 110 | ;?Integer | Name List item top and bottom padding | Description 111 | s_ListYPadding=7 112 | ;? | Name List item right padding | Description Used for width calculations for ClipString=2 113 | s_ListRightPadding=10 114 | ;?Info | Name Settings credit icon padding | Description Move the Settings link/credit icon 115 | 5=https://www.youtube.com/watch?v=dQw4w9WgXcQ 116 | s_CreditIconPadding=5 117 | s_CreditIconSize=12 118 | 119 | ;@Topic | Name Variables 120 | ;@ | Name Variable 121 | ;?Integer | Name Variable title font weight | Description s_VariableTitleFontWeight 122 | s_VariableTitleFontWeight=400 123 | ;?Integer | Name Variable value meter top and bottom padding | Description s_ValueYPadding 124 | s_ValueYPadding=5 125 | ;?Integer | Name Variable item left and right padding | Description s_VariableXPadding (applies for variable titles, descriptions and values) 126 | s_VariableXPadding=20 127 | ;?Toggle | Name Indent variables | Description Not implemented 128 | s_IndentVariables=1 129 | 130 | ;@ | Name Color 131 | ;?Integer | Name Color circle radius | Description s_ColorSize 132 | s_ColorSize=15 133 | ;?Integer | Name Color circle stroke width | Description s_ColorStrokeWidth 134 | s_ColorStrokeWidth=1 135 | ;?Integer | Name Color circle stroke width on hover | Description s_ColorStrokeWidthSelected 136 | s_ColorStrokeWidthSelected=2 137 | ;?Color | Name Color circle stroke color | Description s_ColorStrokeColor (will change to s_Selected when hovered) 138 | s_ColorStrokeColor=200,200,200 139 | ;?Integer | Name Gap between the circle and the string | Description s_ColorStringLeftPadding 140 | s_ColorStringLeftPadding=10 141 | 142 | ;@ | Name Toggle 143 | ;?Integer | Name Toggle height | Description s_ToggleSize 144 | s_ToggleSize=20 145 | ;?Integer | Name Toggle width | Description s_ToggleLength 146 | s_ToggleLength=25 147 | ;?Integer | Name Toggle internal padding | Description s_TogglePadding 148 | s_TogglePadding=2.5 149 | ;?Info | Name TODO | Link 0 150 | More variables for Toggle customization= 151 | s_ToggleActiveColor=[#s_SelectedColor] 152 | s_ToggleInactiveColor=[#s_RightPanelBackgroundColor] 153 | 154 | -------------------------------------------------------------------------------- /settings/includes/themes/1.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@About | Name Theme 2 [#s_Theme1Name] 4 | ;@Topic | Name Customization 5 | ;@ | Name Background 6 | ;?Integer | Name Left panel width | Description 7 | s_LeftPanelW=200 8 | ;?Integer | Name Right panel width | Description 9 | s_RightPanelW=500 10 | ;?Integer | Name Skin height | Description 11 | s_PanelH=600 12 | ;?Color | Name Right panel background color | Description 13 | s_RightPanelBackgroundColor=26,26,38,125 14 | ;?Color | Name Left panel background color | Description 15 | s_LeftPanelBackgroundColor=28,28,43,125 16 | ;?Integer | Name Background corner radius | Description 17 | s_BackgroundRounding=0 18 | ;? | Name FrostedGlass mode | Description A certain Windows 10 update made Acrylic lag a lot, so it's not recommended#CRLF#Available modes: Acrylic, Blur, None 19 | s_FrostedGlassMode=Blur 20 | ;? | Name FrostedGlass border | Description All, None, Left, Right, Top and Bottom. Can be combined with pipes 21 | s_FrostedGlassBorders=None 22 | 23 | ;@ | Name Font 24 | ;? | Name Font face | Description 25 | s_FontFace=Segoe UI 26 | ;? | Name Icon font face | Description 27 | s_IconFontFace=Segoe MDL2 Assets 28 | ;?Color | Name Font color | Description 29 | s_FontColor=235,235,235 30 | ;?Integer | Name Font size 1 | Description Used for category titles 31 | s_FontSize1=20 32 | ;?Integer | Name Font size 2 | Description Used for variable titles 33 | s_FontSize2=16 34 | ;?Integer | Name Font size 3 | Description Used for variable values 35 | s_FontSize3=12 36 | s_InputTextFontSize=[#s_FontSize3] 37 | ;?Integer | Name Font size 4 | Description Used for descriptions 38 | s_FontSize4=10 39 | ;?Integer | Name Font size 5 | Description Unused (for now) 40 | s_FontSize5=8 41 | ;?Integer | Name Selected item font weight | Description 42 | s_SelectedFontWeight=500 43 | ;?Integer | Name Font weight | Description 44 | s_FontWeight=400 45 | 46 | ;@ | Name Scroll indicator 47 | ;?Integer | Name Scroll indicator Y padding | Description uses s_ValueYPadding | Hidden 1 48 | s_scrollIndicatorYPadding=[#s_ValueYPadding] 49 | s_ScrollIndicatorMaxHeight=([#s_PanelH] - ([#s_scrollIndicatorYPadding] * 2)) 50 | ;?Integer | Name Scroll indicator X padding | Description 51 | s_scrollIndicatorXPadding=5 52 | ;?Integer | Name Scroll indicator width | Description 53 | s_ScrollIndicatorWidth=5 54 | ;?Color | Name Scroll indicator background color | Description 55 | s_ScrollIndicatorBackgroundColor=0,0,0,0 56 | ;?Color | Name Scroll indicator color | Description 57 | s_ScrollIndicatorColor=64,64,64 58 | ;?Integer | Name Scroll indicator rounding | Description 59 | s_ScrollIndicatorRounding=5 60 | ;?Info | Name Filler variable 0 | Description This is here to show the scroll indicator 61 | = 62 | ;?Info | Name Filler variable 1 | Description This is here to show the scroll indicator 63 | = 64 | ;?Info | Name Filler variable 2 | Description This is here to show the scroll indicator 65 | = 66 | ;?Info | Name Filler variable 3 | Description This is here to show the scroll indicator 67 | = 68 | ;?Info | Name Filler variable 4 | Description This is here to show the scroll indicator 69 | = 70 | ;?Info | Name Filler variable 5 | Description This is here to show the scroll indicator 71 | = 72 | 73 | ;@ | Name Selected indicator 74 | ;?Color | Name Selected color | Description Most selected items use this color 75 | s_SelectedColor=1671D9 76 | ;?Integer | Name Indicator height padding | Description 77 | s_SelectorPadding=8 78 | ;?Integer | Name Indicator width | Description 79 | s_SelectorWidth=3 80 | ;?Integer | Name Indicator rounding | Description default: [#s_SelectorWidth] 81 | s_SelectorRounding=[#s_SelectorWidth] 82 | 83 | ;@Topic | Name Categories 84 | ;@ | Name Category 85 | ;? | Name Title icon nudge | Description Fixes the literal 1px offset caused by the title and description using different font sizes 86 | s_TitleIconNudge=-1 87 | ;?Integer | Name Category title top and bottom padding | Description 88 | s_CategoryTitleXPadding=20 89 | ;?Integer | Name Category title top padding | Description 90 | s_CategoryTitleTopPadding=35 91 | ;?Integer | Name Category title bottom padding | Description 92 | s_CategoryTitleBottomPadding=20 93 | ;?Integer | Name Category title font weight | Description 94 | s_CategoryTitleFontWeight=500 95 | ;?Integer | Name Category description font weight | Description 96 | s_CategoryDescriptionFontWeight=500 97 | ;? | Name Category icon nudge | Description Visually center the category icon 98 | s_CategoryIconNudge=5 99 | s_CategoryIconTopPadding=([#s_CategoryTitleTopPadding] + [#s_CategoryIconNudge]) 100 | 101 | ;@ | Name Category list 102 | ;?Integer | Name About item top padding | Description 103 | s_ListAboutTopPadding=35 104 | ;?Integer | Name About item left padding | Description 105 | s_ListAboutLeftPadding=20 106 | ;?Integer | Name Default item left padding | Description 107 | s_ListDefaultLeftPadding=35 108 | ;?Integer | Name Topic item left padding | Description 109 | s_ListTopicLeftPadding=20 110 | ;?Integer | Name List item top and bottom padding | Description 111 | s_ListYPadding=7 112 | ;? | Name List item right padding | Description Used for width calculations for ClipString=2 113 | s_ListRightPadding=10 114 | ;?Info | Name Settings credit icon padding | Description Move the Settings link/credit icon 115 | 5=https://www.youtube.com/watch?v=dQw4w9WgXcQ 116 | s_CreditIconPadding=5 117 | s_CreditIconSize=12 118 | 119 | ;@Topic | Name Variables 120 | ;@ | Name Variable 121 | ;?Integer | Name Variable title font weight | Description s_VariableTitleFontWeight 122 | s_VariableTitleFontWeight=400 123 | ;?Integer | Name Variable value meter top and bottom padding | Description s_ValueYPadding 124 | s_ValueYPadding=5 125 | ;?Integer | Name Variable item left and right padding | Description s_VariableXPadding (applies for variable titles, descriptions and values) 126 | s_VariableXPadding=20 127 | ;?Toggle | Name Indent variables | Description Not implemented 128 | s_IndentVariables=1 129 | 130 | ;@ | Name Color 131 | ;?Integer | Name Color circle radius | Description s_ColorSize 132 | s_ColorSize=15 133 | ;?Integer | Name Color circle stroke width | Description s_ColorStrokeWidth 134 | s_ColorStrokeWidth=1 135 | ;?Integer | Name Color circle stroke width on hover | Description s_ColorStrokeWidthSelected 136 | s_ColorStrokeWidthSelected=2 137 | ;?Color | Name Color circle stroke color | Description s_ColorStrokeColor (will change to s_Selected when hovered) 138 | s_ColorStrokeColor=200,200,200 139 | ;?Integer | Name Gap between the circle and the string | Description s_ColorStringLeftPadding 140 | s_ColorStringLeftPadding=10 141 | 142 | ;@ | Name Toggle 143 | ;?Integer | Name Toggle height | Description s_ToggleSize 144 | s_ToggleSize=20 145 | ;?Integer | Name Toggle width | Description s_ToggleLength 146 | s_ToggleLength=25 147 | ;?Integer | Name Toggle internal padding | Description s_TogglePadding 148 | s_TogglePadding=2.5 149 | ;?Info | Name TODO | Link 0 150 | More variables for Toggle customization= 151 | s_ToggleActiveColor=[#s_SelectedColor] 152 | s_ToggleInactiveColor=[#s_RightPanelBackgroundColor] 153 | 154 | -------------------------------------------------------------------------------- /settings/includes/themes/2.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | ;@ | Name Background | Icon [\xEA4B] 4 | ;?Integer | Name Left panel width | Description 5 | s_LeftPanelW=40 6 | ;?Integer | Name Right panel width | Description 7 | s_RightPanelW=400 8 | ;?Integer | Name Skin height | Description 9 | s_PanelH=500 10 | ;?Color | Name Right panel background color | Description 11 | s_RightPanelBackgroundColor=255,255,255,255 12 | ;?Color | Name Left panel background color | Description 13 | s_LeftPanelBackgroundColor=255,255,255,100 14 | ;?Integer | Name Background corner radius | Description 15 | s_BackgroundRounding=5 16 | ;? | Name FrostedGlass mode | Description A certain Windows 10 update made Acrylic lag a lot, so it's not recommended#CRLF#Available modes: Acrylic, Blur, None 17 | s_FrostedGlassMode=Blur 18 | ;? | Name FrostedGlass border | Description All, None, Left, Right, Top and Bottom. Can be combined with pipes 19 | s_FrostedGlassBorders=None 20 | 21 | ;@ | Name Font | Icon [\xE986] 22 | ;? | Name Font face | Description 23 | s_FontFace=Segoe UI 24 | ;? | Name Icon font face | Description 25 | s_IconFontFace=Segoe MDL2 Assets 26 | ;?Color | Name Font color | Description 27 | s_FontColor=0,0,0 28 | ;?Integer | Name Font size 1 | Description Used for category titles 29 | s_FontSize1=20 30 | ;?Integer | Name Font size 2 | Description Used for variable titles 31 | s_FontSize2=16 32 | ;?Integer | Name Font size 3 | Description Used for variable values 33 | s_FontSize3=12 34 | s_InputTextFontSize=[#s_FontSize3] 35 | ;?Integer | Name Font size 4 | Description Used for descriptions 36 | s_FontSize4=10 37 | ;?Integer | Name Font size 5 | Description Unused (for now) 38 | s_FontSize5=8 39 | ;?Integer | Name Selected item font weight | Description 40 | s_SelectedFontWeight=500 41 | ;?Integer | Name Font weight | Description 42 | s_FontWeight=400 43 | 44 | ;@ | Name Scroll indicator | Icon [\xECE7] 45 | ;?Integer | Name Scroll indicator Y padding | Description uses s_ValueYPadding | Hidden 1 46 | s_scrollIndicatorYPadding=[#s_ValueYPadding] 47 | s_ScrollIndicatorMaxHeight=([#s_PanelH] - ([#s_scrollIndicatorYPadding] * 2)) 48 | ;?Integer | Name Scroll indicator X padding | Description 49 | s_scrollIndicatorXPadding=5 50 | ;?Integer | Name Scroll indicator width | Description 51 | s_ScrollIndicatorWidth=5 52 | ;?Color | Name Scroll indicator background color | Description 53 | s_ScrollIndicatorBackgroundColor=0,0,0,0 54 | ;?Color | Name Scroll indicator color | Description 55 | s_ScrollIndicatorColor=200,200,200 56 | ;?Integer | Name Scroll indicator rounding | Description 57 | s_ScrollIndicatorRounding=5 58 | ;?Info | Name Filler variable 0 | Description This is here to show the scroll indicator 59 | = 60 | ;?Info | Name Filler variable 1 | Description This is here to show the scroll indicator 61 | = 62 | ;?Info | Name Filler variable 2 | Description This is here to show the scroll indicator 63 | = 64 | ;?Info | Name Filler variable 3 | Description This is here to show the scroll indicator 65 | = 66 | ;?Info | Name Filler variable 4 | Description This is here to show the scroll indicator 67 | = 68 | ;?Info | Name Filler variable 5 | Description This is here to show the scroll indicator 69 | = 70 | 71 | ;@ | Name Selected indicator | Icon [\xED5B] 72 | ;?Color | Name Selected color | Description Most selected items use this color 73 | s_SelectedColor=0090F0 74 | ;?Integer | Name Indicator height padding | Description 75 | s_SelectorPadding=0 76 | ;?Integer | Name Indicator width | Description 77 | s_SelectorWidth=50 78 | ;?Integer | Name Indicator rounding | Description default: [#s_SelectorWidth] 79 | s_SelectorRounding=0 80 | 81 | ;@ | Name Category | Icon [\xEDE3] 82 | ;? | Name Title icon nudge | Description Fixes the literal 1px offset caused by the title and description using different font sizes 83 | s_TitleIconNudge=-1 84 | ;?Integer | Name Category title top and bottom padding | Description 85 | s_CategoryTitleXPadding=20 86 | ;?Integer | Name Category title top padding | Description 87 | s_CategoryTitleTopPadding=35 88 | ;?Integer | Name Category title bottom padding | Description 89 | s_CategoryTitleBottomPadding=20 90 | ;?Integer | Name Category title font weight | Description 91 | s_CategoryTitleFontWeight=500 92 | ;?Integer | Name Category description font weight | Description 93 | s_CategoryDescriptionFontWeight=500 94 | ;? | Name Category icon nudge | Description Visually center the category icon 95 | s_CategoryIconNudge=5 96 | s_CategoryIconTopPadding=([#s_CategoryTitleTopPadding] + [#s_CategoryIconNudge]) 97 | 98 | ;@ | Name Category list | Icon [\xE8FD] 99 | ;?Integer | Name About item top padding | Description 100 | s_ListAboutTopPadding=7 101 | ;?Integer | Name About item left padding | Description 102 | s_ListAboutLeftPadding=3 103 | ;?Integer | Name Default item left padding | Description 104 | s_ListDefaultLeftPadding=7 105 | ;?Integer | Name Topic item left padding | Description 106 | s_ListTopicLeftPadding=100 107 | ;?Integer | Name List item top and bottom padding | Description 108 | s_ListYPadding=7 109 | ;? | Name List item right padding | Description Used for width calculations for ClipString=2 110 | s_ListRightPadding=10 111 | ;?Info | Name Settings credit icon padding | Description Move the Settings link/credit icon 112 | 5=https://www.youtube.com/watch?v=dQw4w9WgXcQ 113 | s_CreditIconPadding=5 114 | s_CreditIconSize=[#s_FontSize2] 115 | 116 | ;@ | Name Variable | Icon [\xED58] 117 | ;?Integer | Name Variable title font weight | Description s_VariableTitleFontWeight 118 | s_VariableTitleFontWeight=400 119 | ;?Integer | Name Variable value meter top and bottom padding | Description s_ValueYPadding 120 | s_ValueYPadding=5 121 | ;?Integer | Name Variable item left and right padding | Description s_VariableXPadding (applies for variable titles, descriptions and values) 122 | s_VariableXPadding=20 123 | ;?Toggle | Name Indent variables | Description Not implemented 124 | s_IndentVariables=1 125 | 126 | ;@ | Name Color | Icon [\xE790] 127 | ;?Integer | Name Color circle radius | Description s_ColorSize 128 | s_ColorSize=15 129 | ;?Integer | Name Color circle stroke width | Description s_ColorStrokeWidth 130 | s_ColorStrokeWidth=1 131 | ;?Integer | Name Color circle stroke width on hover | Description s_ColorStrokeWidthSelected 132 | s_ColorStrokeWidthSelected=2 133 | ;?Color | Name Color circle stroke color | Description s_ColorStrokeColor (will change to s_Selected when hovered) 134 | s_ColorStrokeColor=200,200,200 135 | ;?Integer | Name Gap between the circle and the string | Description s_ColorStringLeftPadding 136 | s_ColorStringLeftPadding=10 137 | 138 | ;@ | Name Toggle | Icon [\xEC12] 139 | ;?Integer | Name Toggle height | Description s_ToggleSize 140 | s_ToggleSize=20 141 | ;?Integer | Name Toggle width | Description s_ToggleLength 142 | s_ToggleLength=25 143 | ;?Integer | Name Toggle internal padding | Description s_TogglePadding 144 | s_TogglePadding=2.5 145 | ;?Info | Name TODO | Link 0 146 | More variables for Toggle customization= 147 | s_ToggleActiveColor=[#s_SelectedColor] 148 | s_ToggleInactiveColor=[#s_RightPanelBackgroundColor] 149 | 150 | -------------------------------------------------------------------------------- /settings/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathcrafter/ASimpleVisualizer2/7b1732b84448f3e312ff8841c32fd02bec23037f/settings/settings.ini --------------------------------------------------------------------------------