La base de liens Vibes-stq

Specification base from Team Sigwal for tool Vibes [vbs]
2 types of specification:
  • BS=need
  • RS=realisation
Started (x1)
Verified (x1)
Référence
Dernière date
Nom
Description
État
Référence
Dernière date
08/05/2025
Nom
VibesDefaults::toPredefinedColorName()
Description
Hexadecimal and Short color name conversion to Qt Predefined color name
Svg color names are given as an information.
Hexadecimal NameShort NamePredefined NameSvg Name
nonetransparent
#0000FFbblueblue
#00FFFFccyancyan
#00FF00ggreenlime
#FFFF00yyellowyellow
#FF0000rredred
#FF00FFmmagentamagenta
#FFFFFFwwhitewhite
#000000kblackblack
#C0C0C0lightGraysilver
#A0A0A4grayrgb(160, 160, 164)
#808080darkGraygray
#000080darkBluenavy
#008080darkCyanteal
#008000darkGreengreen
#808000darkYellowolive
#800000darkReddarkred
#800080darkMagentadarkmagenta
État
🟢Started



Référence
Dernière date
08/05/2025
Nom
Uninitialized group parameter use-case [godardma]
Description
Use-case from godardma in Comment [Github.com]
#include "vibes.h"

int main()
{
vibes::newFigure("Group figure");
vibes::setFigureProperties(vibesParams("x",300,"y",40,"width",150,"height",150));

vibes::newGroup("Group of boxes");

vibes::drawBox(0,1,1,2,vibesParams("group","Group of boxes"));
vibes::drawBox(1,2,1,2,vibesParams("group","Group of boxes","EdgeColor","green","FaceColor","yellow","LineStyle","-..","LineWidth","0.1"));

return 0;
}

In this example the group "Group of boxes" has no style. The example displays something like :

Now if for example I use the editor to change the Face Color to blue, all the other properties are also forced on the objects, we then get :

While with the old implementation the properties of the group were uninitialized to say that they are item specific. Modifying only the Face Color then gave :
État
🟣Verified