pattern editor colors

oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

pattern editor colors

Post by oskari »

User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: pattern editor colors

Post by IXix »

Is that a theme thing? Pretty cool. Pretty useful too I bet.
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

Yes themes can provide 12 colors. In this case they are actually auto-generated:

Code: Select all

			<ObjectDataProvider x:Key="PatternNoteColors" ObjectType="{x:Type bgc:HSPAColorProvider}">
				<ObjectDataProvider.ConstructorParameters>
					<sys:Int32>12</sys:Int32>
					<sys:Double>0</sys:Double>
					<sys:Double>0.916667</sys:Double>
					<sys:Double>0.7</sys:Double>
					<sys:Double>0.7</sys:Double>
					<sys:Double>0.6</sys:Double>
					<sys:Double>0.6</sys:Double>
				</ObjectDataProvider.ConstructorParameters>
			</ObjectDataProvider>
The user can turn it off in the settings of course.
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

With scroll bars:

Image
User avatar
peacemaker
Posts: 29
Joined: Fri Nov 25, 2011 8:58 pm
Location: Terra, 51°11'42"N 6°26'27"E
Contact:

Re: pattern editor colors

Post by peacemaker »

beautiful AND probably very useful :)

Do I have some wrong settings or is this just a preview?
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

Next build will have it. (but the editor is still not finished)
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

Complete view:

Image
User avatar
peacemaker
Posts: 29
Joined: Fri Nov 25, 2011 8:58 pm
Location: Terra, 51°11'42"N 6°26'27"E
Contact:

Re: pattern editor colors

Post by peacemaker »

oooooooohweeewwweee!
User avatar
UNZ
Posts: 809
Joined: Mon Nov 21, 2011 9:42 pm
Contact:

Re: pattern editor colors

Post by UNZ »

awesomenesssssssssssssss
User avatar
Klangkulisse
Posts: 304
Joined: Tue Nov 22, 2011 12:20 am
Location: ••• Düsseldorf ••• Made of Light

Re: pattern editor colors

Post by Klangkulisse »

Funky! 8-)
That will stretch the buzzing nights until dawn.
User avatar
Reefer Sutherland
Posts: 96
Joined: Thu Nov 24, 2011 3:17 pm
Contact:

Re: pattern editor colors

Post by Reefer Sutherland »

Daaam bro! That thing sick! :)
User avatar
strobotone
Posts: 297
Joined: Wed Nov 23, 2011 2:59 pm
Location: berlin
Contact:

Re: pattern editor colors

Post by strobotone »

excellent. with those theming capabilities we can give BUZZ the professional look and feel it deserves.
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

More stuff:

Image
User avatar
Evelon
Posts: 147
Joined: Tue Nov 22, 2011 11:00 pm

Re: pattern editor colors

Post by Evelon »

I love all this! However, I wonder if there ever will be a built-in "edit colors", "edit theme" or similar (into Buzz itself).
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

Image
User avatar
strobotone
Posts: 297
Joined: Wed Nov 23, 2011 2:59 pm
Location: berlin
Contact:

Re: pattern editor colors

Post by strobotone »

nice work. are the borderless windows WINDOWS theme depedent or is it a BUZZ theme?
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

Themes can provide a window style called 'ThemeWindowStyle'.

Here's the whole thing, but it requires a new BuzzGUI.Common.dll (next build).

Code: Select all

	<Style TargetType="{x:Type Window}" x:Key="ThemeWindowStyle">
		<Setter Property="OverridesDefaultStyle" Value="True"/>
		<Setter Property="shell:WindowChrome.WindowChrome">
			<Setter.Value>
				<shell:WindowChrome
          ResizeBorderThickness="6"
          CaptionHeight="22"
          CornerRadius="0,0,0,0"
          GlassFrameThickness="0"/>
			</Setter.Value>
		</Setter>

		<Setter Property="Foreground" Value="#F0F0F0"/>
		<Setter Property="UseLayoutRounding" Value="True"/>
		<Setter Property="TextOptions.TextFormattingMode" Value="Display"/>

		<Setter Property="Template">
			<Setter.Value>
				<ControlTemplate TargetType="{x:Type Window}">
					<Border BorderThickness="1" BorderBrush="#545454" Background="#666666">
						<Grid>
							<Grid.RowDefinitions>
								<RowDefinition Height="22"/>
								<RowDefinition Height="*"/>
							</Grid.RowDefinitions>

							<Border Grid.Row="0" BorderThickness="0,0,0,1" BorderBrush="#545454" Background="#595959">
								<Grid>
									<TextBlock Text="{TemplateBinding Title}" VerticalAlignment="Center" Margin="8,0,0,0" Foreground="White" FontWeight="Bold"/>
									<Button shell:WindowChrome.IsHitTestVisibleInChrome="True" BorderThickness="0" Padding="0"
										VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,9,0" Width="10" Height="10"
										Command="{x:Static shell:SystemCommands.CloseWindowCommand}">
										<Image Style="{DynamicResource WindowCloseButtonImageStyle}"/>
									</Button>
								</Grid>
							</Border>

							<ContentPresenter Grid.Row="1" Content="{TemplateBinding Content}"/>
						</Grid>
					</Border>
				</ControlTemplate>
			</Setter.Value>
		</Setter>

	</Style>
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: pattern editor colors

Post by oskari »

I need better vu meter colors for the dark theme. Can some photoshop this to look nicer? New icons would be nice too of course.

Image
User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: pattern editor colors

Post by IXix »

How about blue?

Image
User avatar
Evelon
Posts: 147
Joined: Tue Nov 22, 2011 11:00 pm

Re: pattern editor colors

Post by Evelon »

Image

Image



Image
Bitwig.
Image


Edit: Scrap that^. Seeing that you are going with light blue for the other stuff, this might be a nicer:
http://www.colourlovers.com/palette/490 ... t_Raindrop
Image
Last edited by Evelon on Tue Feb 14, 2012 10:51 pm, edited 3 times in total.
Post Reply