More a workaround then a real solution, but could work as long as the triangle is still sharp 90 angle.
Item { id: component property real sizing: 10 property alias color: rect_.color property alias border: rect_.border width: sizing height: sizing clip: true Rectangle { id: rect_ width: component.width height: component.height color: "gray" // change the rotation values based on orientation here transform: Rotation { origin.x: 0; origin.y: 0; angle: 90 } } } On Thu, Oct 6, 2016 at 7:12 AM, Oleg Evseev <ev.m...@gmail.com> wrote: > Hi everyone, > > I'm interesting how to add arrow tip to popup, that looks like this: > > > > If I understand correctly, according to http://doc.qt.io/qt-5/qtquick- > scenegraph-customgeometry-example.html I have an option to do custom > shape qt quick item instead of simple rectangle with help of QSGGeometry. > > Is this a best way to do such things? > > Thanks in advance for recommendations. > > --- > Regards, Oleg > > _______________________________________________ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > >
_______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest