Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PrusaSlicerManagerWindow.axaml « Windows « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d5ec6773f1cf71d5f98150f05aded41c91e4349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<controls:WindowEx xmlns="https://github.com/avaloniaui"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:controls="clr-namespace:UVtools.WPF.Controls"
        mc:Ignorable="d" d:DesignWidth="900" d:DesignHeight="700"
        x:Class="UVtools.WPF.Windows.PrusaSlicerManagerWindow"
        Title="Install profiles into PrusaSlicer"
        Width="900"
        MinWidth="900"
        MinHeight="600"
        WindowStartupLocation="CenterOwner"
        Icon="/Assets/Icons/UVtools.ico">

  <DockPanel LastChildFill="True">
    <Grid DockPanel.Dock="Top"
          RowDefinitions="Auto"
          ColumnDefinitions="Auto,*">

      <Border Classes="GroupBox"
          Margin="5,5,0,5">

        <StackPanel Orientation="Vertical">
          <TextBlock Classes="GroupBoxHeader" Text="Legend"/>
          <StackPanel Margin="15" Orientation="Vertical" Spacing="10">
            <StackPanel Orientation="Horizontal" Spacing="5">
              <Border
                Width="18" Height="18"
                BorderBrush="Black"
                BorderThickness="2"
                Background="LightGray"/>

              <TextBlock
                VerticalAlignment="Center"
                Text="Installed Profile - Files match, no need to update"/>

            </StackPanel>

            <StackPanel Orientation="Horizontal" Spacing="5">
              <Border
                Width="18" Height="18"
                BorderBrush="Black"
                BorderThickness="2"
                Background="Red"/>

              <TextBlock
                VerticalAlignment="Center"
                Text="Installed Profile - Files mismatch, update available"/>

            </StackPanel>

            <StackPanel Orientation="Horizontal" Spacing="5">
              <Border
                Width="18" Height="18"
                BorderBrush="Black"
                BorderThickness="2"
                Background="Black"/>

              <TextBlock
                VerticalAlignment="Center"
                Text="Uninstalled Profile - Not present on PrusaSlicer"/>

            </StackPanel>

          </StackPanel>

        </StackPanel>
      </Border>

      <Border
        Grid.Column="1"
        Classes="GroupBox"
          Margin="5"
          >

        <StackPanel Orientation="Vertical">
          <TextBlock Classes="GroupBoxHeader" Text="Information"/>
          <TextBlock
            TextWrapping="Wrap"
            Margin="15"
            Text="This will install and overwrite all checked profiles into PrusaSlicer.
&#x0a;On PrusaSlicer access 'Printer' -> 'Notes' to change source parameters.
&#x0a;NOTE: If you modify a base profile and save under PrusaSlicer, this tool will be mark it as 'update available' since it got modified, in those cases we always recommend to never update base profiles, instead clone it and give different name as your own profile." />
        </StackPanel>
      </Border>

    </Grid>

    <Border DockPanel.Dock="Bottom"
            Classes="FooterActions">

      <Grid ColumnDefinitions="Auto,*" RowDefinitions="Auto">
        <Button
          Grid.Row="0"
          Grid.Column="0"
          Padding="10"
          Command="{Binding RefreshProfiles}"
          >
          <StackPanel Orientation="Horizontal" Spacing="10">
            <Image Source="/Assets/Icons/refresh-16x16.png"/>
            <TextBlock Text="Refresh profiles"/>
          </StackPanel>
        </Button>

        <StackPanel 
          Margin="0,0,5,5"
          Grid.Row="0"
          Grid.Column="1"
          HorizontalAlignment="Right"
          Orientation="Horizontal" 
          Spacing="5">
            <Button Padding="10"
                    IsDefault="True"
                    Command="{Binding InstallProfiles}"
                    >
              <StackPanel Orientation="Horizontal" Spacing="10">
                <Image Source="/Assets/Icons/accept-16x16.png"/>
                <TextBlock Text="Install selected profiles"/>
              </StackPanel>
            </Button>

          <Button Padding="10" 
                  IsCancel="True"
                  Command="{Binding Close}">
            <StackPanel Orientation="Horizontal" Spacing="10">
              <Image Source="/Assets/Icons/exit-16x16.png"/>
              <TextBlock Text="Close"/>
            </StackPanel>
          </Button>
        </StackPanel>
        
      </Grid>
      
    </Border>

      <TabControl SelectedIndex="{Binding TabSlicerSelectedIndex}">
          <TabItem
              IsVisible="{Binding HavePrusaSlicer}">
              <TabItem.Header>
                  <StackPanel Orientation="Horizontal" Spacing="5">
                      <Image Stretch="None" Source="/Assets/Icons/PrusaSlicer-32.png" />
                      <TextBlock VerticalAlignment="Center"
                                 Text="PrusaSlicer"/>
                  </StackPanel>
              </TabItem.Header>
              <Grid
					  ColumnDefinitions="*,*"
					  RowDefinitions="*">

				  <Border
					  Grid.Column="0"
					  Classes="GroupBox"
					  Margin="5">

					  <Grid RowDefinitions="Auto,Auto,*">

						  <TextBlock Grid.Row="0" Classes="GroupBoxHeader" Text="Print profiles"/>
						  <TextBlock Grid.Row="0" HorizontalAlignment="Right"
									 Padding="10">
							  <TextBlock.Text>
								  <MultiBinding StringFormat="\{0\} Update(s) | {1} Installed | {2} Profiles">
									  <Binding Path="PrusaSlicerProfiles[0].Updates"/>
									  <Binding Path="PrusaSlicerProfiles[0].Installed"/>
									  <Binding Path="PrusaSlicerProfiles[0].Items.Count"/>
								  </MultiBinding>
							  </TextBlock.Text>
						  </TextBlock>

						  <StackPanel
							Grid.Row="1"
							Orientation="Horizontal" Spacing="1">
							  <Button Padding="10"
									  IsEnabled="{Binding PrusaSlicerProfiles[0].Updates}"
									  Command="{Binding PrusaSlicerProfiles[0].SelectNone}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-unmarked-16x16.png"/>
									  <TextBlock Text="Unselect all"/>
								  </StackPanel>
							  </Button>

							  <Button Padding="10"
									  IsEnabled="{Binding PrusaSlicerProfiles[0].Updates}"
									  Command="{Binding PrusaSlicerProfiles[0].SelectAll}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-marked-16x16.png"/>
									  <TextBlock Text="Select all"/>
								  </StackPanel>
							  </Button>

						  </StackPanel>

						  <ListBox
							Grid.Row="2"
							SelectionMode="Toggle"
							VirtualizationMode="None"
							Items="{Binding PrusaSlicerProfiles[0].Items}"/>
					  </Grid>
				  </Border>

				  <Border Grid.Column="1"
					      Classes="GroupBox"
                          Margin="0,5,5,5">

					  <Grid RowDefinitions="Auto,Auto,*">

						  <TextBlock Grid.Row="0" Classes="GroupBoxHeader" Text="Printer profiles"/>
						  <TextBlock Grid.Row="0" HorizontalAlignment="Right"
									 Padding="10">
							  <TextBlock.Text>
								  <MultiBinding StringFormat="\{0\} Update(s) | {1} Installed | {2} Profiles">
									  <Binding Path="PrusaSlicerProfiles[1].Updates"/>
									  <Binding Path="PrusaSlicerProfiles[1].Installed"/>
									  <Binding Path="PrusaSlicerProfiles[1].Items.Count"/>
								  </MultiBinding>
							  </TextBlock.Text>
						  </TextBlock>

						  <StackPanel
							Grid.Row="1"
							Orientation="Horizontal" Spacing="1">
							  <Button Padding="10"
									  IsEnabled="{Binding PrusaSlicerProfiles[1].Updates}"
									  Command="{Binding PrusaSlicerProfiles[1].SelectNone}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-unmarked-16x16.png"/>
									  <TextBlock Text="Unselect all"/>
								  </StackPanel>
							  </Button>

							  <Button Padding="10"
									  IsEnabled="{Binding PrusaSlicerProfiles[1].Updates}"
									  Command="{Binding PrusaSlicerProfiles[1].SelectAll}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-marked-16x16.png"/>
									  <TextBlock Text="Select all"/>
								  </StackPanel>
							  </Button>

						  </StackPanel>

						  <ListBox
							Grid.Row="2"
						  SelectionMode="Toggle"
						  VirtualizationMode="None"
						  Items="{Binding PrusaSlicerProfiles[1].Items}"/>
					  </Grid>
				  </Border>
			  </Grid>
          </TabItem>

		  <TabItem
              IsVisible="{Binding HaveSuperSlicer}">
			  <TabItem.Header>
				  <StackPanel Orientation="Horizontal" Spacing="5">
					  <Image Stretch="None" Source="/Assets/Icons/SuperSlicer-32.png" />
					  <TextBlock VerticalAlignment="Center"
                                 Text="SuperSlicer"/>
				  </StackPanel>
			  </TabItem.Header>
			  <Grid
					  ColumnDefinitions="*,*"
					  RowDefinitions="*">

				  <Border
					  Grid.Column="0"
					  Classes="GroupBox"
					  Margin="5">

					  <Grid RowDefinitions="Auto,Auto,*">

						  <TextBlock Grid.Row="0" Classes="GroupBoxHeader" Text="Print profiles"/>
						  <TextBlock Grid.Row="0" HorizontalAlignment="Right"
									 Padding="10">
							  <TextBlock.Text>
								  <MultiBinding StringFormat="\{0\} Update(s) | {1} Installed | {2} Profiles">
									  <Binding Path="SuperSlicerProfiles[0].Updates"/>
									  <Binding Path="SuperSlicerProfiles[0].Installed"/>
									  <Binding Path="SuperSlicerProfiles[0].Items.Count"/>
								  </MultiBinding>
							  </TextBlock.Text>
						  </TextBlock>

						  <StackPanel
							Grid.Row="1"
							Orientation="Horizontal" Spacing="1">
							  <Button Padding="10"
									  IsEnabled="{Binding SuperSlicerProfiles[0].Updates}"
									  Command="{Binding SuperSlicerProfiles[0].SelectNone}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-unmarked-16x16.png"/>
									  <TextBlock Text="Unselect all"/>
								  </StackPanel>
							  </Button>

							  <Button Padding="10"
									  IsEnabled="{Binding SuperSlicerProfiles[0].Updates}"
									  Command="{Binding SuperSlicerProfiles[0].SelectAll}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-marked-16x16.png"/>
									  <TextBlock Text="Select all"/>
								  </StackPanel>
							  </Button>

						  </StackPanel>

						  <ListBox
							Grid.Row="2"
							SelectionMode="Toggle"
							VirtualizationMode="None"
							Items="{Binding SuperSlicerProfiles[0].Items}"/>
					  </Grid>
				  </Border>

				  <Border Grid.Column="1"
					      Classes="GroupBox"
                          Margin="0,5,5,5">

					  <Grid RowDefinitions="Auto,Auto,*">

						  <TextBlock Grid.Row="0" Classes="GroupBoxHeader" Text="Printer profiles"/>
						  <TextBlock Grid.Row="0" HorizontalAlignment="Right"
									 Padding="10">
							  <TextBlock.Text>
								  <MultiBinding StringFormat="\{0\} Update(s) | {1} Installed | {2} Profiles">
									  <Binding Path="SuperSlicerProfiles[1].Updates"/>
									  <Binding Path="SuperSlicerProfiles[1].Installed"/>
									  <Binding Path="SuperSlicerProfiles[1].Items.Count"/>
								  </MultiBinding>
							  </TextBlock.Text>
						  </TextBlock>

						  <StackPanel
							Grid.Row="1"
							Orientation="Horizontal" Spacing="1">
							  <Button Padding="10"
									  IsEnabled="{Binding SuperSlicerProfiles[1].Updates}"
									  Command="{Binding SuperSlicerProfiles[1].SelectNone}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-unmarked-16x16.png"/>
									  <TextBlock Text="Unselect all"/>
								  </StackPanel>
							  </Button>

							  <Button Padding="10"
									  IsEnabled="{Binding SuperSlicerProfiles[1].Updates}"
									  Command="{Binding SuperSlicerProfiles[1].SelectAll}">
								  <StackPanel Orientation="Horizontal" Spacing="5">
									  <Image Source="/Assets/Icons/checkbox-marked-16x16.png"/>
									  <TextBlock Text="Select all"/>
								  </StackPanel>
							  </Button>

						  </StackPanel>

						  <ListBox
							Grid.Row="2"
						  SelectionMode="Toggle"
						  VirtualizationMode="None"
						  Items="{Binding SuperSlicerProfiles[1].Items}"/>
					  </Grid>
				  </Border>
			  </Grid>
		  </TabItem>
      </TabControl>
  </DockPanel>
</controls:WindowEx>