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: cb8880c1361b29831850fb6b5083dbc3ed934fce (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
<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>

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

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

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

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

          <StackPanel
            Grid.Row="1"
            Orientation="Horizontal" Spacing="1">
            <Button Padding="10"
                    IsEnabled="{Binding Profiles[0].Updates}"
                    Command="{Binding Profiles[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 Profiles[0].Updates}"
                    Command="{Binding Profiles[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 Profiles[0].Items}"/>
        </Grid>
      </Border>

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

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

            <StackPanel 
              Grid.Row="1"
              Orientation="Horizontal" Spacing="1">
              <Button Padding="10"
                      IsEnabled="{Binding Profiles[1].Updates}"
                      Command="{Binding Profiles[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 Profiles[1].Updates}"
                      Command="{Binding Profiles[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 Profiles[1].Items}"/>
          </Grid>
      </Border>
    </Grid>
  </DockPanel>
</controls:WindowEx>