Scroll TextArea to end
Hello, I want to make a chatmessenger-like surface. To display the incoming strings I use a TextArea. The problem is, if the TextArea is full with lines it don’t scoll. I searched around but I didn’t...
View ArticleAfter installing Qt I have no compilers set
Hi and welcome to devnet, This question has been asked many times, please search the forum. You likely don’t have Visual Studio 2012 installed on your computer. You must first get it from Microsoft’s...
View Article[Solved] Deployment problem of Qt Quick application on Mac OS X 10.10.1, Qt...
Hi Stavros Filippidis, For Qt Quick you must use this format of command: macdeployqt <application_bundle> -qmldir=<path_to_root_folder_of application_qml_files>...
View ArticleTroubles passing a list from Qml to C++
I’ve got a Qml item I’ve defined (call it MyItem) and in Qml I’m constructing lists of these guys: property list<MyItem> items: [ MyItem { id: fred }, ...
View Article[SOLVED] Qml Deployment Problem
Well, possible solution is 1. Use QQuickView instead of QQmlApplicationEngine 2. For static build create “QtQuick.2” dir with “qmldir” file and this content: module QtQuick plugin qtquick2plugin...
View ArticleHow to disable screen rotation on condition
For example there is few QML pages, how to enable/disable screen rotation on specific page?
View ArticleShowing information database
Guys I have a question how can I make my program when the user enters a number, I am using sqlite, it does a search in the database and open a screen with information about the number, how to do it?
View ArticleRotate and new coordinate
Hi, I should rotate a rectangle along the y axis (with the pivot in the lower side of the rectangle). On the top side of the rectangle there is another which should always be combined with the first...
View ArticleTroubles passing a list from Qml to C++
Hi, I cannot reproduce your issue, using Qt 5.3 Here is my code: listprop.pro: QT += qml quick SOURCES += main.cpp HEADERS += ListPropTest.h FILES += test.qml TARGET=listprop ListPropTest.h: #ifndef...
View ArticleGetting the text lines of a QML Text object
Hi, See QRectF QQuickTextPrivate::setupTextLayout(qreal *const baseline) for the related code. It uses QTextLayout and QTextLine internally, along with some geometry constraints implied by the geometry...
View ArticleScroll TextArea to end
I haven’t come across any built-in property will always display TextArea with contents scrolled to Bottom. Another way would be to do some math and set TextArea’s flickableItem.contentY.
View ArticleDetecting onComplete of Repeater
Hello, I use a repeater to display Items in a column. And i need to detect the moment the repeater has finished the instantiation of its items. Currently i use the onItemAdded and emit a signal when...
View ArticleDo not have Charts module in qml (solved)
Or else You can check Qt Plot … see here “http://www.qcustomplot.com/” :)
View Article[SOLVED] How to disable screen rotation on condition
I think it will require using QAndroidJniObject and calling the native api as the screen rotation is handled by OS. Yeah, thanks, i set it with JNI call of setRequestedOrientation. In...
View ArticleIs QT Quick the right tool for Raspberry Pi
Hi everyone. I am very new to the QT stuff. I would like to install QT on Linux (Ubuntu) do a graphical design and run on Raspberry Pi. My questions: Is QT Quick the right tool to do this with? I’d...
View ArticleIs QT Quick the right tool for Raspberry Pi
Hello, first of all … QT stand for QuickTime (Apple) … while Qt stand for Qt :-) This error was enough to get that your are new to Qt :D If you like Qt Quick … then definitely Qt Quick is the right...
View ArticleDetecting onComplete of Repeater
I’ve never had exactly your problem, but in other case I got a similar problem. So, when the onComplete it’s not enough, I use an intermediate Loader. But, I’ve never tried this approach on Repeater,...
View ArticleAble to rotate a rectangle but not a video
Interesting; are limitations on VideoOutput on iOS documented anywhere? (Anywhere friendly to people bringing Qt apps to iOS who don’t know a whole lot about iOS and just expect stuff that works in Qt...
View ArticleShowing information database
Hi, Oops, I have not tried anything, I do not know how I can do this, can give me a help?Break your problem into small parts. Learn how to create a program with a screen [qt-project.org] first. After...
View Article[SOLVED]how to enable QtQuick.Controls 1.3
At the moment I’m using beta Qt 5.4.0 version Android for Windows x32, but I have not idea of how to enable QtQuick.Controls 1.3 ? It seems that only QtQuick.Controls 1.2, 1.1, 1.0 are available. UPD:...
View Article