active questions tagged qt4 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T08:37:22Z http://stackoverflow.com/feeds/tag/qt4 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885963/qtconcurrent-function-calling-two-qprocessstart 0 qtconcurrent function calling two qprocess::start knishua 2009-12-11T05:25:59Z 2009-12-11T05:25:59Z <p>How is it possible to use QFuture and QFutureWatcher to get result from qprocess::start, called in a functionF used in </p> <p>QtConcurrent::map(sequence, functionF) and send it to another qprocess::start in the same functionF</p> <pre><code>void executeInProcess(QString&amp; text) { MyClass m; QString projNm = "stcejorp"; QStringList arguments; int return_value = 0; QProcess *procQueueContent = new QProcess(); procQueueContent-&gt;setStandardOutputFile("/tmp/queue_content_Output.txt"); procQueueContent-&gt;setStandardErrorFile("/tmp/queue_content_error.txt"); if (return_value != 2) { arguments.clear(); arguments &lt;&lt; "-sq" &lt;&lt; text; procQueueContent-&gt;start("qconf",arguments); qDebug() &lt;&lt; "Process No : " &lt;&lt; procQueueContent-&gt;pid() &lt;&lt; "state " &lt;&lt; procQueueContent-&gt;state(); return_value = procQueueContent-&gt;state(); } QFile file ("/tmp/queue_content_Output.txt"); QFile file_02("/tmp/modify_Q_content_Output.txt"); if(!file_02.open(QIODevice::WriteOnly | QIODevice::Text)) return; if (file.open(QIODevice::ReadOnly)) { QTextStream in(&amp;file); QTextStream out(&amp;file_02); QString line; while(!in.atEnd()) { line = in.readLine(); // line of text excluding "\n" if (line.contains(QRegExp("^projects"))) qDebug() &lt;&lt; "project " &lt;&lt; line; line.append(" "+projNm); out &lt;&lt; line &lt;&lt; endl; } } file.close(); file_02.close(); arguments.clear(); arguments &lt;&lt; "-Mq" &lt;&lt; "/tmp/modify_Q_content_Output.txt"; if (procQueueContent-&gt;waitForFinished()) // after this process has finished { QProcess *procAddQueue = new QProcess(); procAddQueue-&gt;setStandardInputFile("/tmp/modify_Q_content_Output.txt"); procAddQueue-&gt;setStandardErrorFile("/tmp/modify_Q_content_error.txt"); procAddQueue-&gt;start("qconf",arguments); qDebug() &lt;&lt; "state before next start " &lt;&lt; procAddQueue-&gt;state(); } } /* file.deleteLater(); file_02.deleteLater(); */ int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); QString queue; QStringList queueList; QFuture&lt;void&gt; *future = new QFuture&lt;void&gt;; QFutureWatcher&lt;void&gt; *watcher = new QFutureWatcher&lt;void&gt;; MyClass m; //when our concurrent process finished it returns to whatEver...() // m.connect(watcher,SIGNAL(finished()),&amp;m,SLOT(whatEverYouWantToDo())); QFile file("/tmp/queue_output.txt"); if(file.open(QIODevice::ReadOnly)) { QTextStream in(&amp;file); queue = in.readAll(); } file.close(); queueList = QString(queue).split("\n"); if (QString(queueList.last()).isEmpty()) queueList.removeLast(); // QFutureWatcher&lt;void&gt; watcher; // QObject::connect(&amp;watcher, SIGNAL(finished()), &amp;MyClass, SLOT(whatEverYouWantToDo())); *future = QtConcurrent::map(queueList, executeInProcess); // process starts and comes to the next line // watcher.setFuture(result); return app.exec(); } #endif </code></pre> http://stackoverflow.com/questions/1885605/qabstractsocketunknownsocketerror 0 QAbstractSocket::UnknownSocketError Anton 2009-12-11T03:24:11Z 2009-12-11T04:59:43Z <p>What could be cause of <code>QAbstractSocket::UnknownSocketError</code> when using <code>QTcpSocket</code>?</p> <p><hr></p> <p><strong>CODE</strong></p> <p>I'm getting this error code with the following code:</p> <pre><code>this-&gt;connect(socket, SIGNAL(socketError(QAbstractSocket::SocketError)), SLOT(handleSocketError(QAbstractSocket::SocketError))); ... void MyClass::handleSocketError(QAbstractSocket::SocketError error) { qDebug() &lt;&lt; error; } </code></pre> <p><hr></p> <p><strong>MORE INFO</strong></p> <p>The QTcpSocket is trying to connect to some remote host. And it fails with mentioned error code.</p> http://stackoverflow.com/questions/1882666/most-elegant-safe-easy-solution-to-store-and-edit-gui-a-directory-like-tree-str 1 Most elegant/safe/easy solution to store and edit (GUI) a directory-like tree structure? BastiBense 2009-12-10T17:36:36Z 2009-12-11T01:23:57Z <p>Hello,</p> <p>I've got a slightly tricky problem to solve; imagine this:</p> <p>One of my applications needs to make heavy use of scripting, so my idea was to provide the user a way to write script snippets and organize them in a directory-like tree structure. This is much like a source code directories with subdirectories and source files.</p> <p><strong>Data Classes/Storing</strong></p> <p>The first problem I come across is that I need to find a good way to store the whole tree structure (on the disk, and within the application at runtime). For this I had these ideas:</p> <ol> <li>Use a QObject derived class which can represent the tree using QObject's parent/child features. This way I don't have to worry about deleting those objects if they parents get deleted.</li> <li>Use a simple class which may contain a QList (without pointers) of children and a few properties which store the properties of each group/script.</li> <li>Use approach #2, but use pointers instead of static objects - this would avoid useless copying whenver I have to pass a group or part of a tree to a function, etc.</li> <li>Use a live backend to a SQLite (or similar) database, and query it at runtime. This would avoid loading the whole tree at once and keeping it in RAM.</li> <li>Use a flat file and directory structure on the file system; although I think this introduces more trouble than necessary because there is no way to store meta information about objects.</li> </ol> <p><strong>Editor</strong></p> <p>The next problem I come across is the fact that the user probably wants to edit the whole tree structure. He wants to click on a group or script, edit the script code and possibly Drag &amp; Drop directories and scripts around within the tree; thus changing the structure of the whole tree on the way.</p> <p>This raises the following problems:</p> <ol> <li>If the user closes the editor, it might be a good idea to provide him a "Do you want to save the changes?" dialog. Much like a text editor where you accidently typed something into an existing document, but you quit without saving the changes. - This would require that we edit a copy of the whole tree, and overwrite the existing tree within the application when needed.</li> <li>Allowing Drag &amp; Drop could be problematic... <ul> <li>... with the <em>storing approach #1</em>: currently no good way exists to change the order of children of QObjects. Also moving objects around at runtime while other parts of the program might access them is not a good idea.</li> <li>... this is easier with <em>storing approach #2</em>, since the whole tree is handled like a single value and there are no children I'd have to move and re-parent. Copying a part of the tree automatically copies all children and so on. Unfortunately this would mean a lot of overhead and loss in flexibility (I'd have to write the whole tree onto the disk again since I can't be sure what exactly changed).</li> </ul></li> </ol> <p>I'll probably update this question a little when more things come to my mind, but I'm really curious how other people solve this problem. Any suggestions and ideas are appreciated. :)</p> http://stackoverflow.com/questions/1385202/how-to-hide-handles-in-qsplitter-widget 0 How to hide handles in QSplitter widget? Sergei Stolyarov 2009-09-06T08:20:02Z 2009-12-11T00:00:04Z <p>Is it possible to completely hide handles from QSplitter widget? I've tried to hide() them but it doesn't work — handles are still on the screen and isVisible() reporting false.</p> <p>QSplitter::setHandleWidth doesn't work as expected — it doesn't hide handles when calling it with 0.</p> http://stackoverflow.com/questions/1884413/qt-application-customization 0 Qt Application Customization unknown (yahoo) 2009-12-10T22:04:18Z 2009-12-10T22:17:00Z <p>How to make Qt app look in Adoby Lightroom style? </p> <p>Is it skin or css style? </p> <p>Or maybe some other UI framework is used in Lighroom?</p> <p>I want to create some form with "Video Timeline" custom widget, like in Adobe flash, and in lightroom style but i'm not sure from what to start, especially with "timeline widget"</p> http://stackoverflow.com/questions/1883160/qsignalmapper-and-original-sender 0 QSignalMapper and original Sender() mgb 2009-12-10T18:49:50Z 2009-12-10T18:49:50Z <p>I have a bunch of qComboboxes in a table.<br> So that I know which one was triggered I remap the signal to encode the table cell location (as described in <a href="http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget">http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget</a>)</p> <p>(Why Qt doesn't just send the cell activated signal first so you can use the same currentRow/COlumn mechanism as any other cell edit I don't know)</p> <p>But this removes all knowledge of the original sender widget.<br> Calling "QComboBox* combo = (QComboBox* )sender()" in the slot fails, presumably because sender() is now the QSignalMapper?</p> <p>I can use the encoded row/column to lookup the QCombobox in the Tablewidget but that seems wrong.<br> Is there a more correct way to do it?</p> <p>eg </p> <pre><code>// in table creator _signalMapper = new QSignalMapper(this); // for each cell QComboBox* combo = new QComboBox(); connect(combo, SIGNAL(currentIndexChanged(int)), _signalMapper, SLOT(map())); _signalMapper-&gt;setMapping(combo, row); // and finally connect(_signalMapper, SIGNAL(mapped(int)),this, SLOT(changedType(int))); // slot void myDlg::changedType(int row) { QComboBox* combo = (QComboBox* )sender(); // this doesn't work !! } </code></pre> http://stackoverflow.com/questions/1445011/turn-off-opaque-resizing-of-qmainwindow-qdockwidget-separator 0 Turn off opaque resizing of QMainWindow / QDockWidget separator Robin 2009-09-18T14:45:23Z 2009-12-10T16:56:11Z <p>Is it possible to turn off opaque resizing on QMainWindow / QDockWidget separators?</p> <p>(i.e. the central widget only resizes once the separator is dropped, and not during the drag.)</p> http://stackoverflow.com/questions/1881627/updating-a-qprogressdialog-with-a-qfuture 2 Updating a QProgressDialog with a QFuture Cruzton 2009-12-10T15:13:09Z 2009-12-10T15:28:20Z <p>What's the proper way for the main GUI thread to update a QProgressDialog while waiting for a QFuture. Specifically, what goes in this loop:</p> <pre><code>QProgressDialog pd(...); QFuture f = ...; while (!f.isFinished()) { pd.setValue(f.progressValue()); // what goes here? } </code></pre> <p>Right now I have a sleep() like call there, but that's not optimal (and ofcourse introduces some GUI latency).</p> <p>If I put nothing, the main thread will loop-pole pd.setValue(), wasting CPU cycles.</p> <p>I was hoping of putting something like QCoreApplication::processEvents(flags,maxtime), but that returns immediately if the event queue is empty. I'd like a version that waits until maxtime or whatever even if the queue is empty. That way, I get my delay and the main thread is always ready to respond to GUI events.</p> http://stackoverflow.com/questions/1879506/gui-for-touchscreen-panel 0 GUI for touchscreen panel Surjya Narayana Padhi 2009-12-10T08:34:16Z 2009-12-10T10:05:25Z <p>Hi Geeks,</p> <p>I am planning to design an embedded device which will have atom processor platform and linux OS in it. It will have an 7" touchscreen panel. In stead of going for KDE and GNOME desktops I want to design my small desktop environment for the device. Can anyone please suggest which GUI tool I should use to design a desktop from scratch?</p> http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget 3 Selecting QComboBox in QTableWidget qtnewbie 2009-08-26T02:49:04Z 2009-12-09T23:15:16Z <p>One cell in each row of a QTableWidget contains a combobox</p> <pre><code>for (each row in table ... ) { QComboBox* combo = new QComboBox(); table-&gt;setCellWidget(row,col,combo); combo-&gt;setCurrentIndex(node.type()); connect(combo, SIGNAL(currentIndexChanged(int)),this, SLOT(changed(int))); .... } </code></pre> <p>In the handler function ::changed(int index) I have </p> <pre><code>QComboBox* combo=(QComboBox*)table-&gt;cellWidget(_row,_col); combo-&gt;currentIndex() </code></pre> <p>To get back a copy of the combobox and get the new selection.<br /> But I can't get the row/col.<br /> None of the table cellXXXX signals is emitted when an embedded item is selected or changed and currentRow()/currentColumn() aren't set.</p> http://stackoverflow.com/questions/1543686/extracting-basic-info-from-animation-file 0 Extracting basic info from animation file Joakim Rosqvist 2009-10-09T13:17:32Z 2009-12-09T22:31:33Z <p>I'm writing an application that handles metadata for images and all kinds of animations, so I'm looking for a way to find basic info about an animation file, e.g:</p> <ul> <li>length (in minutes/seconds/frames)</li> <li>aspect ratio of pixels</li> <li>resolution of individual frames</li> <li>framerate</li> </ul> <p>Right now, I let my program execute</p> <pre><code>mplayer -identify animfile.avi </code></pre> <p>and parse its console output, which contains all the info I need in a machine-readable format. This works fine, but I know that some potential users of the program prefer <strong>vlc</strong> as a media player so I'd rather avoid having a hard dependence on mplayer being installed.</p> <p>I've tried</p> <pre><code>vlc -vv animfile.avi </code></pre> <p>which prints an ungodly amount of junk on the console, sometimes containing the stuff I'm looking for. The formatting and what data gets printed seems to vary depending on the file format of the animation though. </p> <p>Is there an easier way to extract basic info from an animation of any format one has a decoder for (especially the length of the animation) using vlc or som other app/library that is usually available on a typical Linux installation?</p> <p>Edit: I'd rather use another program to do the dirty work, as this is supposed to work for any animation format, e.g avi, mpg, mov, wmv, vob etc.</p> <p>Edit: totem-video-indexer seems more promising, and was also included with the standard installation. Enough codecs to make it useful, however, was not. That could be fixed by installing the "non-free-codecs" package from medibuntu.</p> http://stackoverflow.com/questions/1038689/what-features-in-qt-do-you-like-the-most 0 What features in Qt do you like the most? [closed] MadH 2009-06-24T14:22:15Z 2009-12-09T14:24:15Z <p>As for me, functions like QString::section and QRegExp bring Qt closer to scripting languages and that is very appreciated. For example, given a CSV file, in order to find out necessary columns we process the header as follows:</p> <pre><code> int AmountInd = line.left(line.indexOf("Amount")).count(','); </code></pre> <p>to get the index of that column. Then, for forthcoming lines extracting that column's substring is easy:</p> <pre><code> QString AmountStr = line.section(',', AmountInd, AmountInd); double Amount = AmountStr.toDouble(); </code></pre> http://stackoverflow.com/questions/1872923/qplaintextedit-for-single-line-of-input 0 QPlainTextEdit for single line of input rwallace 2009-12-09T10:15:20Z 2009-12-09T10:25:02Z <p>I'm using Qt to write a database type program where the majority of inputs will be single lines, not documents of arbitrary length.</p> <p>Do I understand correctly that QPlainTextEdit is the most appropriate widget for this kind of input?</p> <p>If so, how do you set parameters for this kind of input? In particular:</p> <p>Height to the right value to comfortably hold one line of text in the current font, instead of stretching to fill available space.</p> <p>Enter/cursor-down keys move to next control instead of next line in the document.</p> http://stackoverflow.com/questions/1872872/qt-qheaderview-misbehaving 0 QT: QHeaderView misbehaving. piobyz 2009-12-09T10:07:01Z 2009-12-09T10:07:01Z <p>I want to enable interactive resizing for a vertical header in my QTableWidget. In other words, I want to be able to resize vertical's column <strong>width</strong>. Changing vertical's column <strong>height</strong> is working OK.</p> <p>Here is what I do in a for loop(Python, BTW answers in C++ are fine too):</p> <pre><code>widget_alignment.setVerticalHeaderItem(row, QTableWidgetItem(name, 0)) widget_alignment.verticalHeader().setResizeMode(QHeaderView.Interactive) widget_alignment.horizontalHeader().setResizeMode(QHeaderView.Interactive) new_item = QTableWidgetItem(sequence, 0) widget_alignment.setItem(row, column, new_item) </code></pre> <p>widget_alignment is QTableWidget. I'm not sure whether I actually should set horizontal or vertical header to interactive mode?</p> <p>BTW, what is that <em>type</em> attribute in QTableWidgetItem?<a href="http://doc.trolltech.com/4.6/qtablewidgetitem.html#type" rel="nofollow">Reference</a> is a little sparse here...</p> <p>What is also weird is when I change Interactive to Fixed, and edit 2(or sometimes it's 3 or more) elements in my QTableWidget, the vertical header shrinks to a minimal size!</p> <p>I'm not sure if those 2 issues are inter-connected but any suggestions are more than welcome.</p> <p>QT is 4.5 and OS is Win XP.</p> http://stackoverflow.com/questions/1867156/qt-context-menu-qmenu-reference-from-the-qtablewidget 0 QT: Context menu (QMenu) reference from the QTableWidget. piobyz 2009-12-08T14:00:59Z 2009-12-08T17:13:05Z <p>I want to add a submenu in my context menu which is created like this:</p> <pre><code>self.widget_alignment.setContextMenuPolicy(Qt.ActionsContextMenu) </code></pre> <p>where widget_alignment is <strong>QTableWidget</strong>.</p> <p>I created a new QMenu instance:</p> <pre><code>exchange_bases_menu = QMenu(self.widget_alignment) </code></pre> <p>added some actions, and I found a method <a href="http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qmenu.html#addMenu" rel="nofollow">QAction QMenu.addMenu (self, QMenu menu)</a></p> <p>but I don't see any reference to the default context menu for self.widget_alignment. Additionally, this code:</p> <pre><code>self.widget_alignment.addMenu(exchange_bases_menu) </code></pre> <p>gave me: QTableWidget object has no attribute addMenu.</p> <p>How can I add my submenu to the default context menu?</p> http://stackoverflow.com/questions/1840416/qt-for-symbian-odd-network-sockets-behavior 1 Qt for Symbian - odd network sockets behavior dblack 2009-12-03T14:59:43Z 2009-12-08T15:20:18Z <p>I grabbed the 4.6.0 release, and immediately tried writing a little test app for it. This application simply shows an edit box for a host address, and a checkbox if it's to use an encrypted connection or not. There are also simple 'Connect' and 'Disconnect' buttons. It tries to download and show an image in a QListWidget, showing debug lines along the way (connected, encrypted, readyRead, etc)</p> <p>This is (somewhat obviously) using the QSslSocket class.</p> <p>1) The app never prompts for an access point like most other network apps do, it simply opens the WLAN connection if it's down. How do I kick off the access point selection UI? (Or properly skip it if the user has selected auto-selection of access points... which I haven't)</p> <p>2) Next, the app does not function outside my local WLAN. It sits there waiting just as it did on my WLAN before I added the "NetworkServices" capability. It stops in host lookup state if I give it a name, or if I give it an IP address it goes through to state 2 (waiting for connection state I think?) ... Is there an additional capability or something I need to add here? <em>(see update below)</em></p> <p>3) How do I get error codes or exceptions for missing capability issues?</p> <p>It took me a long while to figure out that you have to add "TARGET.CAPABILITY += NetworkServices" to the .pro file to enable network connectivity. I eventually found the place to edit it in the Carbide file, but it was autogenerated and kept getting overwritten. It then took me over an hour to figure out the capability settings for Qt are in the .pro file, not hidden in some other Carbide menu.</p> <p>It'd be <strong>very useful</strong> if the Qt docs had a page listing which Symbian capabilities were required for which Qt classes/members. It'd drastically ease the amount of effort required for total Symbian-newbies like myself.</p> <p><strong>UPDATE</strong></p> <p>Okay, so now I know how to check the log file for missing capabilities in the emulator. Thanks! </p> <p>I'm starting to think the 3G issue is not about capabilities at all... it's worked consistently since I started doing a clean before each build. I was getting app crashes and even corrupted Qt networking stacks (where it took a phone restart to get connections working again, but only within Qt-based apps), etc... If it can't do a partial build correctly, there's no telling what it's actually putting in there.</p> <p>Is there any known issue with Carbide's build vs. clean-then-build? Maybe it's a Qt for Symbian problem? Perhaps I need to start a fresh VM and reinstall everything. (For the third time in a week... First was the release candidate)</p> http://stackoverflow.com/questions/1866219/qt4-compatible-regexp-for-url-highlighting 0 Qt4 compatible RegExp for URL highlighting BastiBense 2009-12-08T10:59:00Z 2009-12-08T14:21:49Z <p>I'd like to automatically highlight and extract URLs from a QWebView or QTextEdit. I've found a lot of RegEx examples on the web which allows to do just that, but most of them seem overly complicated, don't work properly or are not compatible with Qt4's RegExp implementation.</p> <p>So I'm asking here for a Qt4-specific RegExp pattern which allows for reliable URL highlighting, possibly in the context of surrounding text (documentation, chat, etc.). It should be able to highlight <code>mailto:</code> links, and protocols other than <code>http://</code>, such as <code>https://</code> or <code>ftp://</code>.</p> http://stackoverflow.com/questions/1855379/qtruby-loading-html-file-into-qtextedit 0 QtRuby: loading HTML file into QTextEdit gmile 2009-12-06T13:21:58Z 2009-12-07T19:45:43Z <p>How do I load a custom HTML-file into QTextEdit while in runtime?</p> http://stackoverflow.com/questions/1856544/qcheckbox-is-it-really-not-possible-to-differentiate-between-user-induced-change 1 QCheckBox: is it really not possible to differentiate between user-induced changes to state and those made programmatically? If so, should it be considered an inconsistency? mlvljr 2009-12-06T20:43:09Z 2009-12-07T15:14:49Z <p>Do I miss something or there is really no (ready / built-in) way to programmatically change the state of a QCheckBox without emitting the "void stateChanged ( int state )" signal?</p> <p>The above-mentioned signal is emitted regardless of whether "void setCheckState ( Qt::CheckState state )" was called or the user changed the state via the ui, and there is no "stateEdited" signal like with the QLineEdit.</p> <p>So, if there is no ready way to differentiate between programmatic and user-induced changes to the state of the QCheckBox, and the only options are subclassing / adding the "stateEdited" signal or fiddling with "void QObject::blockSignals( bool block )", why does this have to be so, i.e., is it an (some sort of) inconsistency (in Qt)?</p> <p>Thanks in advance, and forgive my English.</p> http://stackoverflow.com/questions/1856947/displaying-multiple-icons-in-a-single-cell-of-a-qtableview 0 Displaying multiple icons in a single cell of a QTableView iain 2009-12-06T23:05:40Z 2009-12-06T23:13:28Z <p>I am writing a small gui app with QT4.5 in QtCreator.</p> <p>The main screen on the app contains a QTreeView with two columns, the first is text the second is a group of icons. These icons represent the last few states of the item displayed in the row.</p> <p>I am not sure what the best way to do this is. I have currently implemented this by generating a QPixmap the model's <code>data()</code> method.</p> <pre><code>QVariant MyModel::data(const QModelIndex &amp;index, int role) const { if (role == Qt::DisplayRole || role == Qt::EditRole) { switch(index.column()) { case 0: return item_.at(index.row()).title(); } } if (role == Qt::DecorationRole) { switch(index.column()) { case 1: return makeImage(item_.add(index.row()).lastStates()); } } return QVariant(); } QVariant MyModel::makeImage(const QList&lt;MyState&gt; &amp;states) const { const int IconSize = 22; QPixmap image(IconSize * states.size(), IconSize); QPainter painter(&amp;image); painter.fillRect(0, 0, IconSize * count, IconSize, Qt::transparent); for (int i = 0; i &lt; states.size(); ++i) { QIcon * icon = stateIcon(state.at(i)); icon-&gt;paint(&amp;painter, IconSize * i, 0, IconSize, IconSize); } return image; } </code></pre> <p>This works but for some small problems, the background which should be transparent is full of random noise, even filling this with a transparent colour does not fix it.</p> <p>Second this does not seem very efficient, I am generating a new Image every time this is called, should I not just draw the icons onto the widget for the cell?</p> <p>What is the best way to display multiple icons in a single cell?</p> http://stackoverflow.com/questions/1800272/modifying-qt-core-components-widgets-best-practices 0 Modifying Qt core components/widgets, best practices? EightyEight 2009-11-25T22:08:37Z 2009-12-06T18:05:52Z <p>Hello everyone,</p> <p>I'm trying to enhance Qt's QPrintPreviewWidget by allowing it to display page numbers (in the footer somewhere). Unfortunately, I can't quite figure out how to go about it without hacking up Qt's source. I see a great spot for this additional code (in qpaintengine_preview.cpp, in newPage() method) but that means I'm going to have to recompile the whole of Qt (I got a binary build from Trolltech). Furthermore, if I decide to run an app that uses this functionality on someone else's box, I'm going to have to recompile there as well (say if it's a different arch). </p> <p>Are there any other cleaner ways? </p> <p>Thanks</p> http://stackoverflow.com/questions/1839194/qcheckbox-qradio-line-wrap-qt4-6-0 0 QCheckbox/QRadio line wrap Qt4.6.0 Boris Gougeon 2009-12-03T10:55:40Z 2009-12-06T16:23:12Z <p>Hi, I'm trying to have a multi-line checkbox/radio with Qt using standard QCheckbox/QRadio. </p> <p>I didn't find the direct solution since <code>QRadio{wrap:true;}</code> has no effect. The only thing possible would be to access to the <code>QRadio-&gt;label-&gt;setLineWrap(true)</code> but </p> <ol> <li>I'd like to do that from the designer </li> <li>not having to rewrite a widget</li> </ol> <p>Any idea beside putting a QRadio and a QLabel next to each others?</p> <p>Thx, Boris.</p> http://stackoverflow.com/questions/1846106/is-qimage-able-to-open-and-render-pure-16-bit-images 0 Is QImage able to open and render pure 16-bit images? Berschi 2009-12-04T10:25:15Z 2009-12-06T15:06:04Z <p>I think the headline already explains what I want to know.<br> Is there a possible way to open and save images with 16-bit with Qt? And I don't mean the 3*8=24bit or 4*8=32bit, what is quite the same as a pure 8-bit image, I mean pure 16-bit for R, G and B.</p> http://stackoverflow.com/questions/1852856/linker-error-unresolved-external-symbol-working-with-templates 0 Linker error 'unresolved external symbol' : working with templates Rohan Prabhu 2009-12-05T17:41:27Z 2009-12-06T07:53:17Z <p>I have a template based class [Allotter.h &amp; Allotter.cpp]:</p> <pre><code>template &lt;typename allotType&gt; class Allotter { public: Allotter(); quint32 getAllotment(allotType*); bool removeAllotment(quint32, int auto_destruct = 0); private: QVector&lt;QPair&lt;quint32, allotType*&gt;&gt; indexReg; int init_topIndex; }; </code></pre> <p>and it's usage is shown as [ActiveListener.h &amp; ActiveListener.cpp]:</p> <pre><code>class ActiveListener: public QObject { Q_OBJECT public: ActiveListener(); private slots: void processConnections(); void readFromSocket(int); private: QTcpServer* rootServer; QSignalMapper* signalGate; Allotter&lt;QTcpSocket&gt; TcpAllotter; }; </code></pre> <p>I am not showing the complete definitions, since it doesn't really matter. The problem is when I compile, all files compile properly. The files are in a VC++ project. Earlier when I did not use a template-based approach for <code>Allotter</code>, everything was compiling and linking fine. But now, I get this error:</p> <pre><code>1&gt;ActiveListener.obj : error LNK2019: unresolved external symbol "public: __thiscall Allotter&lt;class QTcpSocket&gt;::Allotter&lt;class QTcpSocket&gt;(void)" (??0?$Allotter@VQTcpSocket@@@@QAE@XZ) referenced in function "public: __thiscall ActiveListener::ActiveListener(void)" (??0ActiveListener@@QAE@XZ) 1&gt;ActiveListener.obj : error LNK2019: unresolved external symbol "public: unsigned int __thiscall Allotter&lt;class QTcpSocket&gt;::getAllotment(class QTcpSocket *)" (?getAllotment@?$Allotter@VQTcpSocket@@@@QAEIPAVQTcpSocket@@@Z) referenced in function "private: void __thiscall ActiveListener::processConnections(void)" (?processConnections@ActiveListener@@AAEXXZ) </code></pre> <p>The surprising thing is, that the constructor, <code>ActiveListener::ActiveListener()</code> does not make any reference at all <code>Allotter&lt;QTcpSocket&gt;::Allotter()</code>. The second reference however does exist. But I don't understand why the linker isn't able to resolve this external symbol.</p> <p>The build output just before the errors appear is:</p> <pre><code>1&gt;Moc'ing ActiveListener.h... 1&gt;Compiling... 1&gt;stdafx.cpp 1&gt;Compiling... 1&gt;ActiveListener.cpp 1&gt;Allotter.cpp 1&gt;moc_ActiveListener.cpp 1&gt;main.cpp 1&gt;Generating Code... 1&gt;Linking... </code></pre> <p>I don't understand if any of this is relevant, mostly because all this used to work perfectly before. It's just that after I use templates a problem is caused. Any help will be appreciated. Thanks a lot.</p> http://stackoverflow.com/questions/1849558/how-do-i-use-qtextblock 2 How do I use QTextBlock? j3frea 2009-12-04T20:46:23Z 2009-12-04T22:49:22Z <p>Hi all, I'm completely new to c++ and Qt.</p> <p>I want to populate a QTextEdit object with QTextBlocks, how do I do that?</p> <p>e.g. If I have the sentence "the fish are coming" how would I put each word into its own QTextBlock and add that block to QTextEdit, or have I misunderstood how QTextBlock actually works?</p> http://stackoverflow.com/questions/1409522/qt4-how-to-call-javascript-functions-in-a-page-from-c-via-qtwebkit 0 Qt4: How to call JavaScript functions in a page from C++ via QtWebkit? BastiBense 2009-09-11T07:42:28Z 2009-12-04T05:50:44Z <p>Greetings everyone,</p> <p>I'm trying to write a simple log viewer using Qt4's WebKit port/implementation. My HTML code looks like this:</p> <p><a href="http://pastie.org/613296" rel="nofollow">http://pastie.org/613296</a></p> <p>More specifically, I'm trying to find out how to call the add_message() function which is defined in the <code>&lt;script&gt;</code> section in the HTML document from my C++ code.</p> <p><hr /></p> <p><code></p> <p>// Doesn't work: QWebElement targetElement = chatView->page()->mainFrame()->findFirstElement("head").firstChild("script");</p> <p>// Function is not included, either... qDebug() &lt;&lt; targetElement.tagName() &lt;&lt; targetElement.functions();</p> <p>// The ultimate attempt in calling the function anyway: QVariant functionResult = targetElement.callFunction("add_message");</p> <p></code></p> http://stackoverflow.com/questions/1844630/remove-a-sublayout-in-qt 0 Remove a sublayout in qt? Andrew Magee 2009-12-04T03:19:43Z 2009-12-04T03:36:39Z <p>In PyQt 4.5, I have a layout inside another layout. I'd like to remove the sublayout from its parent, and hide it. I can say <code>parent_layout.removeItem(child_layout)</code> to remove the layout from its parent, but it still shows on the widget. I can't find any way to hide it in one step, as <code>QLayout</code> doesn't have a <code>hide()</code> method like <code>QWidget</code> does.</p> http://stackoverflow.com/questions/1826458/hidden-features-of-qt 9 Hidden features of Qt. Łukasz Lew 2009-12-01T14:17:21Z 2009-12-03T21:00:56Z <p>A little is hidden in Qt given splendid documentation. But given vastness of Qt functionality paradoxically many useful features have been overlooked by me (and reimplemented or work-arounded).</p> <p>What Qt functions you wish you have noticed earlier?</p> http://stackoverflow.com/questions/1339634/how-to-design-floating-tool-bar-in-qt-4-5-2 2 How to design Floating tool bar in Qt 4.5.2 Ummar 2009-08-27T08:24:21Z 2009-12-03T15:28:05Z <p>How to make Floating tool bar in Qt, just like the top floating panel of Microsoft Windows RDP client, any code example? Regards</p> http://stackoverflow.com/questions/1440473/why-follow-symbol-under-cursor-does-not-work-in-qt-creator-for-mac-os-x 0 Why "Follow symbol under cursor" does not work in QT Creator for Mac OS X? Lior 2009-09-17T18:14:24Z 2009-12-03T08:44:52Z <p>Hi</p> <p>I'm using QT Creator under Mac osx, but "Follow symbol under cursor" option, to allow me to jump for class and methods' definitions, does not really work... it only works for local symbols. neither does "Switch between method declaration/definition"</p> <p>any ideas?</p> <p>thanks much for any thought Lior </p>