Re: [Interest] Problem with cv::Mat grayscale to QImage

2019-06-21 Thread Allan Jensen
On Friday, 21 June 2019 15:52:55 CEST Jason H wrote: > It seems that there is some word/dword/byte-alignment magic going on and the > skew is proportional to that. Yes, scan-lines are 32bit aligned. So for non-32bit images we add padding to each line to make them align. 'Allan __

Re: [Interest] Qt & macOS: future port to SwiftUI?

2019-06-14 Thread Allan Jensen
On Friday, 14 June 2019 05:32:57 CEST David M. Cotter wrote: > Currently, the Qt Widgets macOS implementation is based on Cocoa / UIKit / > AppKit. > > But the future is obviously Swift and SwiftUI. > > I am wondering if there’s any long-term thinking about transitioning to > SwiftUI? This has t

Re: [Interest] QWebEnginePage acceptNavigationRequest leads to empty page

2019-01-29 Thread Allan Jensen
Hi, The problem is the semantics of anchor is: Go the given window (or open a new one), then navigate to the given URL. You are blocking the second stop, leaving a newly opened window on its initial blank page, you could probably also block the first stop by overloading QWebEnginePage::createWi