From: jpbruyere Date: Fri, 19 Aug 2016 20:44:48 +0000 (+0200) Subject: Menu and MenuItem classes, templates, styles and tests X-Git-Tag: v0.5~7^2~11 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=befffb69eaebf2e607d88cd3ffc956a708d5734e;p=jp%2Fcrow.git Menu and MenuItem classes, templates, styles and tests modifié : Crow.csproj modifié : Default.style modifié : Style.cs nouveau fichier : Templates/Menu.template nouveau fichier : Templates/MenuItem.template modifié : Tests/Interfaces/TemplatedGroup/0.crow nouveau fichier : Tests/Interfaces/TemplatedGroup/1.crow nouveau fichier : Tests/Interfaces/TemplatedGroup/2.crow modifié : Tests/Tests.csproj nouveau fichier : src/GraphicObjects/Menu.cs nouveau fichier : src/GraphicObjects/MenuItem.cs modifié : src/GraphicObjects/TemplatedGroup.cs --- diff --git a/Crow.csproj b/Crow.csproj index 570a8941..5c6cb9e3 100644 --- a/Crow.csproj +++ b/Crow.csproj @@ -141,6 +141,8 @@ + + @@ -266,6 +268,12 @@ + + Crow.MenuItem.template + + + Crow.Menu.template + diff --git a/Default.style b/Default.style index 8a63a276..9ddac6a9 100644 --- a/Default.style +++ b/Default.style @@ -14,6 +14,20 @@ Label { 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; diff --git a/Templates/Menu.template b/Templates/Menu.template new file mode 100644 index 00000000..facc1892 --- /dev/null +++ b/Templates/Menu.template @@ -0,0 +1,3 @@ + + diff --git a/Templates/MenuItem.template b/Templates/MenuItem.template new file mode 100644 index 00000000..86b05be6 --- /dev/null +++ b/Templates/MenuItem.template @@ -0,0 +1,17 @@ + + + + + + + diff --git a/Tests/Interfaces/TemplatedGroup/0.crow b/Tests/Interfaces/TemplatedGroup/0.crow index 9c7bb705..09b4bd49 100755 --- a/Tests/Interfaces/TemplatedGroup/0.crow +++ b/Tests/Interfaces/TemplatedGroup/0.crow @@ -1 +1,23 @@  + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Tests/Interfaces/TemplatedGroup/1.crow b/Tests/Interfaces/TemplatedGroup/1.crow new file mode 100755 index 00000000..eb857f98 --- /dev/null +++ b/Tests/Interfaces/TemplatedGroup/1.crow @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Tests/Interfaces/TemplatedGroup/2.crow b/Tests/Interfaces/TemplatedGroup/2.crow new file mode 100755 index 00000000..5e5d8940 --- /dev/null +++ b/Tests/Interfaces/TemplatedGroup/2.crow @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index 566abf23..1095bd6a 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -295,6 +295,12 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + diff --git a/src/GraphicObjects/Menu.cs b/src/GraphicObjects/Menu.cs new file mode 100644 index 00000000..561db65c --- /dev/null +++ b/src/GraphicObjects/Menu.cs @@ -0,0 +1,56 @@ +// +// Menu.cs +// +// Author: +// Jean-Philippe Bruyère +// +// 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 . +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); + } + } +} diff --git a/src/GraphicObjects/MenuItem.cs b/src/GraphicObjects/MenuItem.cs new file mode 100644 index 00000000..591be2b0 --- /dev/null +++ b/src/GraphicObjects/MenuItem.cs @@ -0,0 +1,71 @@ +// +// MenuItem.cs +// +// Author: +// Jean-Philippe Bruyère +// +// 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 . +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); + } + } +} diff --git a/src/GraphicObjects/TemplatedGroup.cs b/src/GraphicObjects/TemplatedGroup.cs index 12448b82..cee4adea 100644 --- a/src/GraphicObjects/TemplatedGroup.cs +++ b/src/GraphicObjects/TemplatedGroup.cs @@ -38,7 +38,7 @@ namespace Crow public virtual void AddItem(GraphicObject g){ items.AddChild (g); - g.LogicalParent = this; + //g.LogicalParent = this; } public virtual void RemoveItem(GraphicObject g) { @@ -82,6 +82,19 @@ namespace Crow } 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 diff --git a/src/Style.cs b/src/Style.cs index 5824e735..0ca56499 100644 --- a/src/Style.cs +++ b/src/Style.cs @@ -25,7 +25,7 @@ namespace Crow { public class Style : Dictionary { - public Dictionary SubStyles; + public Dictionary SubStyles;//TODO:implement substyles for all tags inside a style public Style () : base() { }