gselzer / pymmcore-plus-sandbox

Other
0 stars 0 forks source link

Investigate Stacking/Tiling Qt windows #22

Open gselzer opened 1 month ago

gselzer commented 1 month ago

Often, microscopists want to compare multiple images side-by-side. We could make that convenient if Qt has functionality for tiling different windows. It looks like we could write something using QWidget.setGeometry, however we should look to see whether Qt has built-in support for this first.

marktsuchida commented 1 month ago

It looks like Qt has something for subwindows in an MDI (multiple document interface): QMdiArea::tileSubWindows(). But I see examples doing it manually for regular (top-level) windows.