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>
        /// Add the operator pen to the style set.
        /// </summary>
        protected override void InitializeResources(StyleSet classStyleSet)
        {
            base.InitializeResources(classStyleSet);
            PenSettings penSettings = new PenSettings();

            penSettings.Width    = 1 / 72f;
            penSettings.StartCap = LineCap.Square;
            penSettings.EndCap   = LineCap.Square;
            classStyleSet.AddPen(OperatorResource, DiagramPens.ShapeOutline, penSettings);
        }
Ejemplo n.º 3
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.º 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>
		/// 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.º 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>
        /// 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.º 8
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);
			PenSettings penSettings = new PenSettings();
			penSettings.Width = 1.2F / 72.0F; // 1.2 Point. 0 Means 1 pixel, but should only be used for non-printed items
			penSettings.Alignment = PenAlignment.Center;
			classStyleSet.OverridePen(DiagramPens.ConnectionLine, penSettings);
			penSettings.DashStyle = DashStyle.Dash;
			classStyleSet.AddPen(BarkerEROptionalPen, DiagramPens.ConnectionLine, penSettings);
			IORMFontAndColorService fontsAndColors = (Store as IORMToolServices).FontAndColorService;
			Color constraintForeColor = fontsAndColors.GetForeColor(ORMDesignerColor.Constraint);
			penSettings = new PenSettings();
			penSettings.Color = constraintForeColor;
			classStyleSet.OverridePen(DiagramPens.ConnectionLineDecorator, penSettings);
			BrushSettings brushSettings = new BrushSettings();
			brushSettings.Color = constraintForeColor;
			classStyleSet.OverrideBrush(DiagramBrushes.ConnectionLineDecorator, brushSettings);
		}
Ejemplo n.º 9
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);
		}