@@ -29,8 +29,6 @@ BasicSkinParams::BasicSkinParams (
2929 const Pen& connectionLinePen,
3030 ConnectionMarker connectionMarker,
3131 const Size& connectionMarkerSize,
32- const Size& hiddenConnectionMarkerBigSize,
33- const Size& hiddenConnectionMarkerSmallSize,
3432 const double & nodePadding,
3533 const Pen& nodeBorderPen,
3634 const Font& nodeHeaderTextFont,
@@ -44,6 +42,7 @@ BasicSkinParams::BasicSkinParams (
4442 const Color& slotTextColor,
4543 const Color& slotTextBackgroundColor,
4644 SlotMarker slotMarker,
45+ SlotMarker hiddenSlotMarker,
4746 const Size& slotMarkerSize,
4847 const BlendColor& disabledBlendColor,
4948 const BlendColor& selectionBlendColor,
@@ -62,8 +61,6 @@ BasicSkinParams::BasicSkinParams (
6261 connectionLinePen (connectionLinePen),
6362 connectionMarker (connectionMarker),
6463 connectionMarkerSize (connectionMarkerSize),
65- hiddenConnectionMarkerBigSize (hiddenConnectionMarkerBigSize),
66- hiddenConnectionMarkerSmallSize (hiddenConnectionMarkerSmallSize),
6764 nodePadding (nodePadding),
6865 nodeBorderPen (nodeBorderPen),
6966 nodeHeaderTextFont (nodeHeaderTextFont),
@@ -77,6 +74,7 @@ BasicSkinParams::BasicSkinParams (
7774 slotTextColor (slotTextColor),
7875 slotTextBackgroundColor (slotTextBackgroundColor),
7976 slotMarker (slotMarker),
77+ hiddenSlotMarker (hiddenSlotMarker),
8078 slotMarkerSize (slotMarkerSize),
8179 disabledBlendColor (disabledBlendColor),
8280 selectionBlendColor (selectionBlendColor),
@@ -119,16 +117,6 @@ const Size& BasicSkinParams::GetConnectionMarkerSize () const
119117 return connectionMarkerSize;
120118}
121119
122- const NUIE::Size& BasicSkinParams::GetHiddenConnectionMarkerBigSize () const
123- {
124- return hiddenConnectionMarkerBigSize;
125- }
126-
127- const NUIE::Size& BasicSkinParams::GetHiddenConnectionMarkerSmallSize () const
128- {
129- return hiddenConnectionMarkerSmallSize;
130- }
131-
132120double BasicSkinParams::GetNodePadding () const
133121{
134122 return nodePadding;
@@ -194,6 +182,11 @@ SkinParams::SlotMarker BasicSkinParams::GetSlotMarker () const
194182 return slotMarker;
195183}
196184
185+ SkinParams::SlotMarker BasicSkinParams::GetHiddenSlotMarker () const
186+ {
187+ return hiddenSlotMarker;
188+ }
189+
197190const Size& BasicSkinParams::GetSlotMarkerSize () const
198191{
199192 return slotMarkerSize;
@@ -266,8 +259,6 @@ const BasicSkinParams& GetDefaultSkinParams ()
266259 /* connectionLinePen*/ NUIE::Pen (NUIE::Color (38 , 50 , 56 ), 1.0 ),
267260 /* connectionMarker*/ NUIE::SkinParams::ConnectionMarker::None,
268261 /* connectionMarkerSize*/ NUIE::Size (8.0 , 8.0 ),
269- /* hiddenConnectionMarkerBigSize*/ NUIE::Size (11.0 , 11.0 ),
270- /* hiddenConnectionMarkerSmallSize*/ NUIE::Size (6.0 , 6.0 ),
271262 /* nodePadding*/ 5.0 ,
272263 /* nodeBorderPen*/ NUIE::Pen (NUIE::Color (38 , 50 , 56 ), 1.0 ),
273264 /* nodeHeaderTextFont*/ NUIE::Font (L" Arial" , 16.0 ),
@@ -281,6 +272,7 @@ const BasicSkinParams& GetDefaultSkinParams ()
281272 /* slotTextColor*/ NUIE::Color (0 , 0 , 0 ),
282273 /* slotTextBackgroundColor*/ NUIE::Color (246 , 246 , 246 ),
283274 /* slotMarker*/ NUIE::SkinParams::SlotMarker::None,
275+ /* hiddenSlotMarker*/ NUIE::SkinParams::SlotMarker::None,
284276 /* slotMarkerSize*/ NUIE::Size (8.0 , 8.0 ),
285277 /* selectionBlendColor*/ NUIE::BlendColor (NUIE::Color (41 , 127 , 255 ), 0.25 ),
286278 /* disabledBlendColor*/ NUIE::BlendColor (NUIE::Color (0 , 138 , 184 ), 0.2 ),
0 commit comments