Ejemplo n.º 1
0
        /// <summary>
        /// Override the connection line pen with a dashed pen
        /// </summary>
        /// <param name="classStyleSet"></param>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            IORMFontAndColorService colorService = (this.Store as IORMToolServices).FontAndColorService;
            Color       constraintColor          = colorService.GetForeColor(ORMDesignerColor.Constraint);
            Color       activeColor = colorService.GetBackColor(ORMDesignerColor.ActiveConstraint);
            PenSettings settings    = new PenSettings();

            settings.Color     = constraintColor;
            settings.DashStyle = DashStyle.Dash;
            settings.Width     = 1.0F / 72.0F;         // 1 Point. 0 Means 1 pixel, but should only be used for non-printed items
#if VISUALSTUDIO_10_0
            classStyleSet.AddPen(CustomConnectionLinePen, DiagramPens.ConnectionLine, settings);
#else
            classStyleSet.OverridePen(DiagramPens.ConnectionLine, settings);
#endif
            settings.Color = activeColor;
            classStyleSet.AddPen(ORMDiagram.StickyBackgroundResource, DiagramPens.ConnectionLine, settings);

            settings       = new PenSettings();
            settings.Width = 1.0F / 72.0F;             // Soften the arrow a bit
            settings.Color = constraintColor;
            classStyleSet.OverridePen(DiagramPens.ConnectionLineDecorator, settings);
            settings.Color = activeColor;
            classStyleSet.AddPen(ORMDiagram.StickyForegroundResource, DiagramPens.ConnectionLineDecorator, settings);
            BrushSettings brushSettings = new BrushSettings();
            brushSettings.Color = constraintColor;
            classStyleSet.OverrideBrush(DiagramBrushes.ConnectionLineDecorator, brushSettings);
            brushSettings.Color = activeColor;
            classStyleSet.AddBrush(ORMDiagram.StickyForegroundResource, DiagramBrushes.ConnectionLineDecorator, brushSettings);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Initialize a pen and a brush for drawing the constraint
        /// outlines and contents.
        /// </summary>
        /// <param name="classStyleSet">StyleSet</param>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            IORMFontAndColorService colorService  = (Store as IORMToolServices).FontAndColorService;
            BrushSettings           brushSettings = new BrushSettings();

            brushSettings.Color = colorService.GetForeColor(ORMDesignerColor.Constraint);
            classStyleSet.AddBrush(ValueRangeTextBrush, DiagramBrushes.ShapeBackground, brushSettings);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Initialize a <see cref="StyleSet"/> for rendering deontic constraints.
        /// The style set is created in <see cref="DeonticClassStyleSet"/> and
        /// initialized here.
        /// </summary>
        /// <remarks>If a derived class does not modify additional resources in the
        /// default style set, then this method is not required and any derived deontic
        /// style set can be based on the deontic style set for this base class. However,
        /// if new resources are introduced, then the derived class should base a
        /// deontic style set on the derived class style set and reinitialize the
        /// deontic settings in that style set.</remarks>
        protected virtual void InitializeDeonticClassStyleSet(StyleSet styleSet)
        {
            IORMFontAndColorService colorService = (Store as IORMToolServices).FontAndColorService;
            Color       constraintColor          = colorService.GetForeColor(ORMDesignerColor.DeonticConstraint);
            PenSettings penSettings = new PenSettings();

            penSettings.Color = constraintColor;
            styleSet.OverridePen(DiagramPens.ShapeOutline, penSettings);
            BrushSettings brushSettings = new BrushSettings();

            brushSettings.Color = constraintColor;
            styleSet.OverrideBrush(ExternalConstraintBrush, brushSettings);
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Change the outline pen to a thin black line for all instances
        /// of this shape.
        /// </summary>
        /// <param name="classStyleSet">The style set to modify</param>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            IORMFontAndColorService colorService = (Store as IORMToolServices).FontAndColorService;
            PenSettings             settings     = new PenSettings();

            settings.Color     = colorService.GetForeColor(ORMDesignerColor.Constraint);
            settings.DashStyle = DashStyle.Dash;
            settings.Width     = 1.0F / 72.0F;         // 1 Point. 0 Means 1 pixel, but should only be used for non-printed items
            classStyleSet.OverridePen(DiagramPens.ConnectionLine, settings);

            settings.Color = colorService.GetBackColor(ORMDesignerColor.ActiveConstraint);
            classStyleSet.AddPen(ORMDiagram.StickyBackgroundResource, DiagramPens.ConnectionLine, settings);
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Change the outline pen to a thin black line for all instances
        /// of this shape.
        /// </summary>
        /// <param name="classStyleSet">The style set to modify</param>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            IORMFontAndColorService colorService = (this.Store as IORMToolServices).FontAndColorService;
            Color       lineColor   = colorService.GetForeColor(ORMDesignerColor.Constraint);
            Color       stickyColor = colorService.GetBackColor(ORMDesignerColor.ActiveConstraint);
            Color       activeColor = colorService.GetBackColor(ORMDesignerColor.RolePicker);
            PenSettings penSettings = new PenSettings();

            penSettings.Width     = 1.8F / 72.0F;         // 1.8 Point. 0 Means 1 pixel, but should only be used for non-printed items
            penSettings.Alignment = PenAlignment.Center;
            penSettings.Color     = lineColor;
            classStyleSet.OverridePen(DiagramPens.ConnectionLine, penSettings);
            //Supporting Dashed subtypefacts when not primary
            penSettings.DashStyle = DashStyle.Dash;
            classStyleSet.AddPen(NonPrimaryNormalResource, DiagramPens.ConnectionLine, penSettings);
            penSettings.DashStyle = DashStyle.Solid;
            penSettings.Color     = stickyColor;
            classStyleSet.AddPen(ORMDiagram.StickyBackgroundResource, DiagramPens.ConnectionLine, penSettings);

            penSettings.DashStyle = DashStyle.Dash;
            classStyleSet.AddPen(NonPrimaryStickyResource, DiagramPens.ConnectionLine, penSettings);
            penSettings.DashStyle = DashStyle.Solid;
            penSettings.Color     = activeColor;
            classStyleSet.AddPen(ORMDiagram.ActiveBackgroundResource, DiagramPens.ConnectionLine, penSettings);

            penSettings.DashStyle = DashStyle.Dash;
            classStyleSet.AddPen(NonPrimaryActiveResource, DiagramPens.ConnectionLine, penSettings);
            penSettings.DashStyle = DashStyle.Solid;

            penSettings       = new PenSettings();
            penSettings.Width = 1.4F / 72.0F;             // Soften the arrow a bit
            penSettings.Color = lineColor;
            classStyleSet.OverridePen(DiagramPens.ConnectionLineDecorator, penSettings);
            penSettings.Color = stickyColor;
            classStyleSet.AddPen(ORMDiagram.StickyConnectionLineDecoratorResource, DiagramPens.ConnectionLineDecorator, penSettings);
            penSettings.Color = activeColor;
            classStyleSet.AddPen(ORMDiagram.ActiveConnectionLineDecoratorResource, DiagramPens.ConnectionLineDecorator, penSettings);
            BrushSettings brushSettings = new BrushSettings();

            brushSettings.Color = lineColor;
            classStyleSet.OverrideBrush(DiagramBrushes.ConnectionLineDecorator, brushSettings);
            brushSettings.Color = stickyColor;
            classStyleSet.AddBrush(ORMDiagram.StickyConnectionLineDecoratorResource, DiagramBrushes.ConnectionLineDecorator, brushSettings);
            brushSettings.Color = activeColor;
            classStyleSet.AddBrush(ORMDiagram.ActiveConnectionLineDecoratorResource, DiagramBrushes.ConnectionLineDecorator, brushSettings);
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Initialize a pen and a brush for drawing the constraint
        /// outlines and contents.
        /// </summary>
        /// <param name="classStyleSet">StyleSet</param>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            PenSettings             penSettings  = new PenSettings();
            IORMFontAndColorService colorService = (Store as IORMToolServices).FontAndColorService;
            Color constraintColor = colorService.GetForeColor(ORMDesignerColor.Constraint);

            penSettings.Color = constraintColor;
            penSettings.Width = 1.35F / 72.0F;             // 1.35 Point.
            classStyleSet.OverridePen(DiagramPens.ShapeOutline, penSettings);
            BrushSettings brushSettings = new BrushSettings();

            brushSettings.Color = constraintColor;
            classStyleSet.AddBrush(ExternalConstraintBrush, DiagramBrushes.ShapeBackground, brushSettings);
            penSettings.Color = colorService.GetBackColor(ORMDesignerColor.ActiveConstraint);
            classStyleSet.AddPen(ORMDiagram.StickyBackgroundResource, DiagramPens.ShapeOutline, penSettings);
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Add error brushes to the styleSet
        /// </summary>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);

            IORMFontAndColorService colorService  = (Store as IORMToolServices).FontAndColorService;
            BrushSettings           brushSettings = new BrushSettings();

            //UNDONE: This color isn't permanent. probably want a better color for the errors.
            brushSettings.ForeColor = Color.LightPink;
            //brushSettings.ForeColor = colorService.GetForeColor(ORMDesignerColor.ConstraintError);
            brushSettings.HatchStyle = HatchStyle.LightDownwardDiagonal;
            brushSettings.BrushType  = typeof(HatchBrush);
            classStyleSet.AddBrush(ORMDiagram.ErrorBackgroundResource, DiagramBrushes.DiagramBackground, brushSettings);
            brushSettings.ForeColor = ORMDiagram.ModifyLuminosity(brushSettings.ForeColor);
            brushSettings.BackColor = ORMDiagram.ModifyLuminosity(((SolidBrush)classStyleSet.GetBrush(DiagramBrushes.DiagramBackground)).Color);
            classStyleSet.AddBrush(ORMDiagram.HighlightedErrorBackgroundResource, DiagramBrushes.DiagramBackground, brushSettings);

            BrushSettings transBrush = new BrushSettings();

            transBrush.ForeColor = Color.Transparent;
            classStyleSet.AddBrush(ORMDiagram.TransparentBrushResource, DiagramBrushes.DiagramBackground, transBrush);
        }