Paulo Delgado schrieb: > Hello list, > > > > I’m trying to make a captionless window (not intended to be movable). > But if I set up a QxWindow with setShowCaption(false) .. I still see the > “bar” at the top. > > > > What I want to achieve is a simple non-movable window where I can add > some QxAtoms …
You have many possibilities: #1 Disable move: yourWindow.setMoveable(false); #2 Hide the captionbar (untested): yourWindow.getCaptionBar().setDisplay(false); #3 Use a simple popup instead: Use QxPopup instead of QxWindow Hope this helps. Sebastian > > > > Any ideas? > > > ------------------------------------------------------------------------ > > _______________________________________________ > Qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel _______________________________________________ Qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
