<Compile Include="src\Style.cs" />
<Compile Include="src\GraphicObjects\Wrapper.cs" />
<Compile Include="src\GraphicObjects\TemplatedGroup.cs" />
+ <Compile Include="src\GraphicObjects\MenuItem.cs" />
+ <Compile Include="src\GraphicObjects\Menu.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
</EmbeddedResource>
<EmbeddedResource Include="Images\Icons\Cursors\ibeam" />
<EmbeddedResource Include="Templates\treeList.crow" />
+ <EmbeddedResource Include="Templates\MenuItem.template">
+ <LogicalName>Crow.MenuItem.template</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="Templates\Menu.template">
+ <LogicalName>Crow.Menu.template</LogicalName>
+ </EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="README.md" />
Width = Fit;
Margin = 0;
}
+Menu {
+ Margin = 1;
+ Background = vgradient|0:DimGray|1:Onyx;
+ Height = Fit;
+ Width = Stretched;
+ VerticalAlignment = Top;
+}
+MenuItem {
+ Height = Fit;
+ Width = Fit;
+ Background = Transparent;
+ MouseEnter = {Background = Mantis;Foreground=Jet;}
+ MouseLeave = {Background=Transparent;Foreground=LightGray;};
+}
MessageBox {
Width=200;
Title=MessageBox;
--- /dev/null
+<?xml version="1.0"?>
+<HorizontalStack Name="ItemsContainer" Margin="2" Background="{./Background}"
+ Width="{./WidthPolicy}" Height="{./HeightPolicy}"/>
--- /dev/null
+<?xml version="1.0"?>
+<Popper Caption="{./Caption}" Background="{./Background}" PopDirection="{./Orientation}"
+ Foreground = "{./Foreground}"
+ Unpop = "{Foreground=LightGray;Background=Transparent}">
+ <Template>
+ <Label Text="{./Caption}"
+ MinimumSize = "120,0"
+ Margin="3" TextAlignment="Left"
+ Height="{./HeightPolicy}" Width="{./WidthPolicy}"
+ Font="{./Font}"
+ Background="{./Background}"
+ Foreground="{./Foreground}"/>
+ </Template>
+ <Border Foreground="LightGray" Fit="true">
+ <VerticalStack Name="ItemsContainer" Margin="2" Fit="true" Background="Onyx"/>
+ </Border>
+</Popper>
<?xml version="1.0"?>
+<Menu>
+ <MenuItem Caption="File">
+ <MenuItem Caption="New"/>
+ <MenuItem Caption="Open"/>
+ <MenuItem Caption="Save"/>
+ <MenuItem Caption="Quit"/>
+ </MenuItem>
+ <MenuItem Caption="Edit">
+ <MenuItem Caption="Cut"/>
+ <MenuItem Caption="Copy"/>
+ <MenuItem Caption="Paste"/>
+ <MenuItem Caption="Special">
+ <MenuItem Caption="Cut"/>
+ <MenuItem Caption="Copy"/>
+ <MenuItem Caption="Paste"/>
+ </MenuItem>
+ </MenuItem>
+ <MenuItem Caption="Help">
+ <MenuItem Caption="About"/>
+ <MenuItem Caption="Help"/>
+ </MenuItem>
+</Menu>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0"?>
+<MenuItem Caption="File">
+ <MenuItem Caption="New"/>
+ <MenuItem Caption="Open"/>
+ <MenuItem Caption="Save"/>
+ <MenuItem Caption="Quit"/>
+</MenuItem>
--- /dev/null
+<?xml version="1.0"?>
+<Container>
+<MenuItem Caption="Menu">
+ <MenuItem Caption="File">
+ <MenuItem Caption="New"></MenuItem>
+ <MenuItem Caption="Open"></MenuItem>
+ <MenuItem Caption="Save"></MenuItem>
+ <MenuItem Caption="Quit"></MenuItem>
+ </MenuItem>
+ <MenuItem Caption="Edit">
+ <MenuItem Caption="Cut"/>
+ <MenuItem Caption="Copy"/>
+ <MenuItem Caption="Paste"/>
+ <MenuItem Caption="Special">
+ <MenuItem Caption="Cut"/>
+ <MenuItem Caption="Copy"/>
+ <MenuItem Caption="Paste"/>
+ </MenuItem>
+ </MenuItem>
+ <MenuItem Caption="Help">
+ <MenuItem Caption="About"/>
+ <MenuItem Caption="Help"/>
+ </MenuItem>
+</MenuItem>
+</Container>
\ No newline at end of file
<None Include="Interfaces\TemplatedGroup\0.crow">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
+ <None Include="Interfaces\TemplatedGroup\1.crow">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </None>
+ <None Include="Interfaces\TemplatedGroup\2.crow">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </None>
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\" />
--- /dev/null
+//
+// Menu.cs
+//
+// Author:
+// Jean-Philippe Bruyère <jp.bruyere@hotmail.com>
+//
+// Copyright (c) 2016 jp
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+using System;
+using System.Xml.Serialization;
+using System.ComponentModel;
+
+namespace Crow
+{
+ public class Menu : TemplatedGroup
+ {
+ Orientation orientation;
+
+ [XmlAttributeAttribute()][DefaultValue(Orientation.Horizontal)]
+ public virtual Orientation Orientation {
+ get { return orientation; }
+ set {
+ if (orientation == value)
+ return;
+ orientation = value;
+ NotifyValueChanged ("Orientation", orientation);
+ }
+ }
+
+ public Menu () : base()
+ {
+ }
+
+ public override void AddItem (GraphicObject g)
+ {
+ base.AddItem (g);
+
+ if (orientation == Orientation.Horizontal)
+ g.NotifyValueChanged ("Orientation", Alignment.Bottom);
+ else
+ g.NotifyValueChanged ("Orientation", Alignment.Right);
+ }
+ }
+}
--- /dev/null
+//
+// MenuItem.cs
+//
+// Author:
+// Jean-Philippe Bruyère <jp.bruyere@hotmail.com>
+//
+// Copyright (c) 2016 jp
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+using System;
+using System.Xml.Serialization;
+using System.ComponentModel;
+
+namespace Crow
+{
+ public class MenuItem : TemplatedGroup
+ {
+ #region CTOR
+ public MenuItem () : base() {}
+ #endregion
+
+// public event EventHandler Pop;
+// public event EventHandler Unpop;
+
+ string caption;
+
+ [XmlAttributeAttribute][DefaultValue("MenuItem")]
+ public string Caption {
+ get { return caption; }
+ set {
+ if (caption == value)
+ return;
+ caption = value;
+ NotifyValueChanged ("Caption", caption);
+ }
+ }
+// [XmlIgnore]
+// public virtual Alignment Orientation {
+// get { return Parent is Menu ? (Parent as Menu).Orientation : (Parent as MenuItem); }
+// }
+
+ Menu MenuRoot {
+ get {
+ ILayoutable tmp = Parent;
+ while (tmp != null) {
+ if (tmp is Menu)
+ return tmp as Menu;
+ tmp = tmp.Parent;
+ }
+ return null;
+ }
+ }
+
+ public override void AddItem (GraphicObject g)
+ {
+ base.AddItem (g);
+ g.NotifyValueChanged ("Orientation", Alignment.Right);
+ }
+ }
+}
public virtual void AddItem(GraphicObject g){
items.AddChild (g);
- g.LogicalParent = this;
+ //g.LogicalParent = this;
}
public virtual void RemoveItem(GraphicObject g)
{
}
return false;
}
+// public override void ClearBinding ()
+// {
+// if (items != null)
+// items.ClearBinding ();
+//
+// base.ClearBinding ();
+// }
+// public override void ResolveBindings ()
+// {
+// base.ResolveBindings ();
+// if (items != null)
+// items.ResolveBindings ();
+// }
#endregion
#region IXmlSerialisation Overrides
{
public class Style : Dictionary<string, object>
{
- public Dictionary<string, Style> SubStyles;
+ public Dictionary<string, Style> SubStyles;//TODO:implement substyles for all tags inside a style
public Style () : base()
{
}