[Interest] Save / load file contents on android

2021-08-31 Thread Wilhelm Meier via Interest
Hi all, does anybody have a minimum working example how to load / save json file contents (auscii contents) to / from a file on android. I made several attempts, but I get weird filenames and I'm not able to load the stored file. thx ___ Interest

Re: [Interest] qmake and CONFIG += c++14

2015-03-25 Thread Wilhelm
Am 25.03.2015 um 06:28 schrieb Thiago Macieira: On Wednesday 25 March 2015 06:19:24 Wilhelm wrote: Hi all, the qmake documentation says that is is possible to set CONFIG+= c++14 But if I do so, the generated makefile still contains the flag -std=c++11 So, whats wrong here? Your

Re: [Interest] qmake and CONFIG += c++14

2015-03-25 Thread Wilhelm
Am 25.03.2015 um 07:52 schrieb Thiago Macieira: On Wednesday 25 March 2015 07:24:10 Wilhelm wrote: Your compiler is too old or the version was not detected. Don't think so... What's in mkspecs/qconfig.pri? I have here: QT_GCC_MAJOR_VERSION = 4 QT_GCC_MINOR_VERSION = 9

Re: [Interest] qmake and CONFIG += c++14

2015-03-25 Thread Wilhelm
Am 25.03.2015 um 12:03 schrieb Allan Sandfeld Jensen: On Wednesday 25 March 2015, Wilhelm wrote: Hi all, the qmake documentation says that is is possible to set CONFIG+= c++14 But if I do so, the generated makefile still contains the flag -std=c++11 So, whats wrong here? You can

[Interest] qmake and CONFIG += c++14

2015-03-24 Thread Wilhelm
Hi all, the qmake documentation says that is is possible to set CONFIG+= c++14 But if I do so, the generated makefile still contains the flag -std=c++11 So, whats wrong here? -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt

[Interest] Keyboard focus with QWidget::createWindowContainer() not working

2014-12-19 Thread Wilhelm
() kate: kateWindow; QWidget* kateWidget = QWidget::createWindowContainer(kateWindow, this); kateWidget-setFocus(); kateWidget-grabKeyboard(); setCentralWidget(kateWidget); } -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt

Re: [Interest] Keyboard focus with QWidget::createWindowContainer() not working

2014-12-19 Thread Wilhelm
Am 19.12.2014 um 12:37 schrieb Sze Howe Koh: Hi Wilhelm, On 19 December 2014 at 17:33, Wilhelm wilhelm.me...@fh-kl.de wrote: Hi all, the following example code looks for the WId of a running kate-process and embeds the window into my own application. Thats all fine: rendering, resizing

Re: [Interest] DragDrop between different processes not working?

2014-12-18 Thread Wilhelm
Am 18.12.2014 um 08:44 schrieb Till Oliver Knoll: Am 17.12.2014 um 22:45 schrieb Wilhelm wilhelm.me...@fh-kl.de: ... I can confirm that it works with Qt 5.3.2 (linux). I can drag from my test-application to another instance or to e.g. kate, etc ... That's good news. So, what todo

Re: [Interest] DragDrop between different processes not working?

2014-12-18 Thread Wilhelm
Am 18.12.2014 um 09:11 schrieb Rutledge Shawn: On 18 Dec 2014, at 09:05, Wilhelm wilhelm.me...@fh-kl.de wrote: Am 18.12.2014 um 08:44 schrieb Till Oliver Knoll: Am 17.12.2014 um 22:45 schrieb Wilhelm wilhelm.me...@fh-kl.de: ... I can confirm that it works with Qt 5.3.2 (linux). I can

Re: [Interest] DragDrop between different processes not working?

2014-12-17 Thread Wilhelm
-project.org http://lists.qt-project.org/mailman/listinfo/interest -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] DragDrop between different processes not working?

2014-12-17 Thread Wilhelm
Am 17.12.2014 um 12:41 schrieb Michael Sué: The problem seems to be a bug for LINUX in Qt 5.4.0, the (exact same) code works it still works in Qt 5.3.1. Ok, thanks for testing this. Is there a workaround for 5.4.0? -- Wilhelm w.me...@unix.net

Re: [Interest] DragDrop between different processes not working?

2014-12-17 Thread Wilhelm
good news. So, what todo with Qt 5.4.0? Any Workarounds? -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] DragDrop between different processes not working?

2014-12-16 Thread Wilhelm
Am 17.12.2014 um 08:29 schrieb Till Oliver Knoll: Am 17.12.2014 um 07:18 schrieb Wilhelm wilhelm.me...@fh-kl.de: Hi all, below is a stripped-down example for drag/drop. It follows the Qt examples. It works if I drag from the ListView widget to another widget (e.g. QTextEdit) of the same

Re: [Interest] DragDrop between different processes not working?

2014-12-16 Thread Wilhelm
. Cheers, Oliver ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt-project.org

[Interest] Qt prebuild for MSVC2014

2014-09-14 Thread Wilhelm
Hi all, what are the plans to release prebuild packages for MSVC 2014 (32 / 64 bit) for MS-Windows? -- Wilhelm w.me...@unix.net ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QTextDocument: swapping QTextBlocks

2013-05-08 Thread Wilhelm
Hi, is there a built-in / simple way to swap to QTextBlocks including format/user-data? Thanks for any hint! -- Wilhelm ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Replacing QPlainTextEdit standard shortcuts

2013-05-05 Thread Wilhelm
the action. Looking for a solution I ended overwriting QPlainTextEdit::keyPressEvent(), but I think this is the wrong way? Any hints? -- Wilhelm #include mainwindow.h #include QApplication int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show

[Interest] qmake and rpath

2013-04-26 Thread Wilhelm
? -- Wilhelm ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] qmake and rpath

2013-04-26 Thread Wilhelm
Am 26.04.2013 17:14, schrieb Nikos Chantziaras: QMAKE_LFLAGS += '-Wl,-rpath,\'\$$ORIGIN/../lib\'' Many thanks!!! -- Wilhelm ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QPlainTextEdit: autoformatting text (like autofill in emacs)?

2013-04-15 Thread Wilhelm
Hi all, I want QPlainTextEdit to insert a new paragraph if the actual editing position exceeds a predefined width, say e.g. 80 columns. I started googling but didn't find anything usefull: surely I missed the wrong keywords, please give me a hint how to implement this. Thanks! -- Wilhelm

[Interest] How to get/manipulate the scrollbars of QWebView

2013-01-25 Thread Wilhelm
Hi all, this may be a very dumb question: how get access to the scrollbars of a QWebView? I want to connect to the sliderMoved() signal to store the actual position for later use. Any hints? -- Wilhelm ___ Interest mailing list Interest@qt

Re: [Interest] How to get/manipulate the scrollbars of QWebView

2013-01-25 Thread Wilhelm
Am 25.01.2013 15:36, schrieb Frank Hemer: On Friday 25 January 2013 15:05:38 Wilhelm wrote: Am 25.01.2013 14:04, schrieb Frank Hemer: On Friday 25 January 2013 13:47:45 Wilhelm wrote: Hi all, this may be a very dumb question: how get access to the scrollbars of a QWebView? I want

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-22 Thread Wilhelm
(*)); // fd.exec(); // return app.exec(); } works good for mewithout any error:( which qt version, which compiler / version did you use? On Mon, Jan 21, 2013 at 9:41 PM, Wilhelm wilhelm.me...@fh-kl.de mailto:wilhelm.me...@fh-kl.de wrote: Am 21.01.2013 19:36, schrieb Jason H

[Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Wilhelm
-L/usr/X11R6/lib64 -L/opt/Qt5.0.0/5.0.0/gcc_64/lib -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread -- Wilhelm ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Wilhelm
, because the error doesn't show up in Qt 4.8.3. e.g. I tries various g++ versions witg Qt5, but the run-time error remains. Any Qt5 hints? *From:* Wilhelm wilhelm.me...@fh-kl.de *To:* Qt Interest interest@qt-project.org

[Interest] QFileSystemModel broken in Qt5? (minimal example)

2013-01-21 Thread Wilhelm
is QFileSystemWatcher(0xa82d80), parent's thread is QThread(0xa47420), current thread is QFileInfoGatherer(0xa84048) - The error doesn't show up with Qt 4.8.3 at least. So, what's wrong here? -- Wilhelm ___ Interest mailing list Interest@qt

Re: [Interest] QFileSystemModel broken in Qt5? (minimal example)

2013-01-21 Thread Wilhelm
Am 22.01.2013 08:50, schrieb Mandeep Sandhu: On Tue, Jan 22, 2013 at 12:47 PM, Wilhelm wilhelm.me...@fh-kl.de wrote: Hi all, I have this minimal example: - #include QApplication #include QFileSystemModel int main(int argc, char *argv[]) { QApplication a(argc, argv

[Interest] QWebView: Find/Display diffs of html-text

2013-01-14 Thread Wilhelm
compute the changes between the to html-texts using Googles Qt-version of diff-match-patch. Any hints to this? -- Wilhelm ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest