active questions tagged qt - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:49:27Z http://stackoverflow.com/feeds/tag/qt http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1074050/how-to-force-qmake-not-to-create-symbolic-links-to-target-when-templatelib 2 How to force qmake not to create symbolic links to target when TEMPLATE=lib ? rasjani 2009-07-02T12:22:18Z 2009-11-27T16:06:00Z <p>I have a (partial) qmake project file like this:</p> <pre><code>TEMPLATE=lib TARGET=whatever SOURCES=whatever.cpp HEADERS=whatever.h </code></pre> <p>This will - atleast by default - create a library and few symbolic links like this:</p> <pre><code>libwhatever.so -&gt; libwhatever.so.0.1.0 libwhatever.so.0 -&gt; libwhatever.so.0.1.0 libwhatever.so.0.1 -&gt; libwhatever.so.0.1.0 libwhatever.so.0.1.0 </code></pre> <p>libwhatever.so.0.1.0 is the actual library binary, rest of them are just symbolic links.</p> <p>What i would like to archive is that no symbolic links are created at all or the order what be other way around so that libwhatever.so would be the actual binary and rest are the symbolic links. </p> http://stackoverflow.com/questions/1808342/question-about-how-to-send-images-in-socket-programming 0 Question about how to send images in socket programming? NeverAgain 2009-11-27T11:59:33Z 2009-11-27T16:04:09Z <p>I've got a couple questions about sending images over.</p> <p>How do I handle different types of files, jpeg, png, etc.</p> <p>If the file is large, I ave to use sequence numbers... but I don't know how to stop recving if I do not know the number of sequence numbers.</p> <p>My knowledge of transfering images / files is next to none. I have never programmed anything like that before. Was hoping to get some tips and tricks =)</p> <p>Thanks alot.</p> <p>I am also using QT, if that helps my situation at all.</p> http://stackoverflow.com/questions/1808540/string-has-not-been-declared-qt 0 string has not been declared, QT NeverAgain 2009-11-27T12:39:30Z 2009-11-27T13:01:30Z <p>I am trying to change a certain text box message. It will display my output.</p> <p>This is what I have in my main()</p> <pre><code>#include "form2.h" .... string recvMSG = "random"; </code></pre> <p>182:: Form2::changeOutput(recvMSG); ...</p> <p>within my form2.h I have:</p> <pre><code>#include &lt;string.h&gt; #include &lt;iostream&gt; #include &lt;stdlib.h&gt; ... void Form2::changeOutput(string s) { QString s1 = i18n(s); output_box.setText(s1); } </code></pre> <p>But i still get: .ui/form2.h:56: error: ‘string’ has not been declared</p> <p>Thanks.</p> <p><strong>Edit:: kk so now its showing:: TCPClient.cpp:182: error: cannot call member function ‘virtual void Form2::changeOutput(std::string)’ without object</strong></p> http://stackoverflow.com/questions/1807857/quick-question-on-qt-and-opengl 0 Quick Question on QT and OpenGl NeverAgain 2009-11-27T10:11:44Z 2009-11-27T10:28:55Z <p>I've made a project with QT and OpenGl.</p> <p>In QT paintGl() was repeatedly call I beleive, so I was able to change values outside of that function and call update() so that it would paint a new image. I also believe that it called initializeGl() as soon as you start up the program.</p> <p>Now my question is:</p> <p>I want that same functionality in a different program. I do not need to draw any images, etc. I just was wondering if there was a way to make a function like paintGL() that keeps being called so the application never closes. I tried just using a while(true) loop that kept my program running, but the GUI was inactive because of the while loop.</p> <p>Any tips, other than threading preferably.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1807203/building-optimized-qt4-configure-flags-and-their-meanings 2 Building optimized Qt4 - "./configure" flags and their meanings BastiBense 2009-11-27T07:10:33Z 2009-11-27T10:11:51Z <p>Hey everyone,</p> <p>I recently followed a discussion on the Qt4-interest mailing list about whether it is legal or not to build a commercial/proprietary application and statically link Qt4 into it. While there are some non-proven ways of doing so (by providing object files and a Makefile, etc. to the customer), it doesn't sound like such a good idea afterall.</p> <p>One of my projects is using the LGPL-licensed Qt4 libraries and I ship them as separate DLLs/Dylibs/so's to my customer, using a simple installer on all platforms. While this works pretty good so far, I'd like to optimize a) the size of the installer by reducing the Qt library size by just including what I need, b) increase the startup/loading speed of my application.</p> <p>I'm familiar with compiling Qt myself, but Qt got a lot of flags and switches.</p> <p>Right now I'm building with the following flags:</p> <pre><code>./configure \ -fast \ -opensource \ -qt-sql-sqlite \ -nomake demos examples \ -silent \ -no-qt3support \ -no-gif \ -plugin-sql-mysql \ -release \ -no-xmlpatterns \ -no-multimedia </code></pre> <p>I'm not entirely sure which effect/impact the following flags have:</p> <ul> <li><code>-no-stl</code></li> <li><code>-no-javascript-jit</code></li> <li><code>-no-nis</code></li> <li><code>-separate-debug-info</code></li> <li><code>-no-openvg</code></li> <li><code>-no-mitshm</code></li> </ul> <p>Is there anything else I can do, for instance, by providing optimization switches for the compiler, or "stripping" unused functions out of the built Qt library to make it smaller (which would be easy with static builds). I don't have much experience with that.</p> <p>Oh, just as a side-note, my compiled application size is about 600 kb (non-stripped) when linking against Qt dynamically. I experimented with it and found it to be around 4 MB in size when I link statically; but that way I wouldn't have to include 40 MB of Qt libraries anymore.</p> <p>So, to put everything above into a question/request:</p> <p><strong>If you are more advanced than me on this topic, how do you optimize/deploy your own applications and make sure they start fast and only contain what is needed?</strong></p> <p>Thanks in advance for your ideas and thoughts!</p> <p>Basti</p> http://stackoverflow.com/questions/1807297/question-about-what-i-should-have-before-connect 0 Question about what I should have before Connect NeverAgain 2009-11-27T07:48:07Z 2009-11-27T08:00:14Z <p>I have this included:</p> <pre><code>#include &lt;sys/socket.h&gt; /* for socket(), connect(), send(), and recv() */ /* Establish the connection to the echo server */ if (connect(sock, (struct sockaddr *) &amp;echoServAddr, sizeof(echoServAddr)) &lt; 0) DieWithError("connect() failed"); </code></pre> <p>But I am getting this:</p> <blockquote> <p>TCPClient.cpp:395: error: no matching function for call to ‘ClientHandler::connect(int&amp;, sockaddr*, unsigned int)’</p> </blockquote> <p>The thing is I am also using QT.</p> <p>should I have somethihng before "connect"... SOMETHING::connect(....)</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1805119/qprocess-output-in-file 0 qprocess output in file knishua 2009-11-26T18:35:56Z 2009-11-27T02:18:02Z <p>QProcess procWriteProject ..</p> <p>...</p> <p>1) procWriteProject.start("qconf",QStringList() &lt;&lt; " -sprj " &lt;&lt; projectList[0] &lt;&lt; " >> " &lt;&lt; "\"/tmp/testing.txt\"");</p> <p>2) procWriteProject.start("qconf -sprj " + projectList[0] + " >> " + "/tmp/test_settings");</p> <p>what is the possible way to make this command work. I need that after this command is executed that file test_settings.txt in tmp folder get created and contain output from qconf -sprj command. </p> <p>Brgds,</p> <p>kNish</p> http://stackoverflow.com/questions/1804728/how-to-receive-drag-and-drop-from-apple-address-book-in-qt-4-4-on-mac-os-x-10-5-1 1 How to receive drag and drop from Apple Address book in Qt 4.4 on Mac OS X 10.5/10.6 Andy Brice 2009-11-26T16:44:15Z 2009-11-26T16:44:15Z <p>I am trying to trap drag and drop events from the standard Apple address book app to my Qt app. This code works fine with Qt 4.4. on Mac OS X 10.4:</p> <pre><code>void MyView::contentsDropEvent( QDropEvent* e ) { QList&lt;QUrl&gt; urls = e-&gt;mimeData()-&gt;urls(); ... </code></pre> <p>I can then use the URL to get the vCard. Marvellous.</p> <p>But from Mac OS X 10.5 the apple address book no longer seems to support text/uri-list. So e->mimeData()->urls() returns an empty list. Worse still, e->mimeData()->formats() returns an empty list. How do I find out which vCards they dragged?</p> <p>Here is a comment from a Nokia Qt engineer on this problem:</p> <blockquote> <p>"Adressbook stopped providing drop data as text/uri-list compatible flavor data in OS 10.5. Not much we can do about that. The flavor they provide instead is 'public.vcard'. We could put up support for this as an implementation request, but my gut feeling is that this is too application specific, and can just as well be implemented by the app developer by subclassing QMacMimeData"</p> </blockquote> <p>But there is no QMacMimeData in the Qt 4.4 or 4.5 documentation. Any ideas at how I can find out what they dragged?</p> http://stackoverflow.com/questions/1801167/how-can-i-connect-the-pressed-signal-of-32-buttons-to-a-single-function-without 2 How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots? yan bellavance 2009-11-26T01:56:09Z 2009-11-26T16:38:20Z <p>I have a widget and inside it are 32 buttons. I need to connect each button's pressed() signal to a slot in order to call a function who's parameters depend on which button I have pressed. Right now I did that by adding 32 slots in the form of on_QPushButtonName_pressed() but thats a lot of slots. I was wondering if there is another way I could do it that is smaller. I have done something similar but I was working with custom widgets so I could just create a new signal in the code of my class but I would like to avoid creating a custom widget for just a single button.</p> http://stackoverflow.com/questions/1801074/what-are-the-differences-between-gtk-and-qt 2 What are the differences between Gtk+ and Qt? Matthew 2009-11-26T01:25:38Z 2009-11-26T15:11:54Z <p>A lot of people seem to have an opinion about which is better. I'm not really asking for these opinions, what I'd like to know are the details: What are the things that make one graphical toolkit different from another, and which of these differences do Qt and Gtk+ have?</p> http://stackoverflow.com/questions/1800349/qgraphicsview-scene-multithreading-nightmare 0 QGraphicsView/Scene - multithreading nightmare icStatic 2009-11-25T22:25:15Z 2009-11-26T14:58:43Z <p>Am I correct in thinking that the QGraphics* classes are not thread-safe? I am porting an old app to Qt and in the process attempting to make it multi-threaded too. I looked at the update code and I see no locks whatsoever.</p> <p>I started off right, all my processing is done in a set of worker threads so that the GUI does not have to block. But as soon as I come to display my visual representation the whole thing falls down like a pack of cards as the update code attempts to read from the buffer the other thread is writing to.</p> <p>Here is my test case:</p> <ol> <li>Create a bunch of ellipse objects</li> <li>Create a thread and pass it the scene pointer</li> <li>In a loop modify any setting on any object in the scene.</li> </ol> <p>Test function:</p> <pre><code>bool CBasicDocument::Update( float fTimeStep ) { const QList&lt;QGraphicsItem*&gt; tObjects = items(); for( QList&lt;QGraphicsItem*&gt;::const_iterator tIter = tObjects.constBegin(); tIter != tObjects.constEnd(); ++tIter ) { QGraphicsEllipseItem* pElipse = (QGraphicsEllipseItem*)(*tIter); if( pElipse ) { pElipse-&gt;setPen( QPen( QColor( (int)(255.0f * sinf( fTimeStep )), (int)(255.0f * cosf( fTimeStep )), (int)(255.0f * sinf( fTimeStep )) ) ) ); } } return true; } </code></pre> <p>I have been thinking about ways I can fix this and none of them are particularly pretty.</p> <p>Ideally what I want to happen is when I change a setting on an object it is buffered until the next render call, but for the time being I'll settle with it not crashing!</p> <p>At the moment I have four options:</p> <ol> <li><p>Double buffer the whole scene maintaining two scene graphs in lockstep (one rendering, one updating). This is how our multithreaded game engine works. This is horrible here though because it will require double the CPU time and double the memory. Not to mention the logistics of maintaining both scene graphs.</p></li> <li><p>Modify QGraphics* to be thread safe as above. This is probably the most practical approach but it will be a lot of work to get it done.</p></li> <li><p>Push modifications to the scene into a queue and process them from the main thread.</p></li> <li><p>Throw multithreading to the wind for the time being and just let my app stall when the document updates. (Not pretty given the data size for some documents)</p></li> </ol> <p>None of them are particularly appealing and all require a massive amount of work.</p> <p>Does anybody have any ideas or attempted multithreading QGraphicsScene before?</p> <p>Cheers</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-11-26T14:53:08Z <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/1803112/set-a-qcombobox-or-qspinbox-to-a-value-not-allowed 0 Set a QComboBox or QSpinBox to a value not allowed data 2009-11-26T11:20:44Z 2009-11-26T12:26:56Z <p>I am maintaining an application which tries to help the user get his parameters to work together, as there are many interdependencies. </p> <p>Now there is a default value of x for a variable Y. When the user changes some other variable Z, there might be a new minimum value for Y which is greater than x. This is set as a minimum for the spinbox. Now the spinbox can not display the current value anymore, but rather displays the minimum. I would like the user to be able to see his old value. Is there some setting I don't see in Qt to achieve something like this?</p> <p>Same question goes for QComboBox. </p> http://stackoverflow.com/questions/1792318/ruby-creating-a-simple-application-in-qt 1 Ruby: creating a simple application in Qt gmile 2009-11-24T19:20:24Z 2009-11-26T09:26:13Z <p>I'm trying to create a simple application, written in Ruby via Qt. I designed a form (MainForm) in a Qt Designer and translated it via <code>rbuic4</code> to the Ruby code representation. The pure untouched result has four methods, and looks like this:</p> <pre><code>=begin ** Form generated from reading ui file 'stackover.ui' ** ** Created: Р’С‚ 24. РЅРѕСЏ 21:15:02 2009 ** by: Qt User Interface Compiler version 4.3.1 ** ** WARNING! All changes made in this file will be lost when recompiling ui file! =end class Ui_MainWindow attr_reader :centralwidget attr_reader :pushButton attr_reader :listView attr_reader :menubar attr_reader :statusbar def setupUi(mainWindow) mainWindow.setObjectName("mainWindow") @centralwidget = Qt::Widget.new(mainWindow) @centralwidget.setObjectName("centralwidget") @pushButton = Qt::PushButton.new(@centralwidget) @pushButton.setObjectName("pushButton") @pushButton.setGeometry(Qt::Rect.new(10, 10, 75, 23)) @listView = Qt::ListView.new(@centralwidget) @listView.setObjectName("listView") @listView.setGeometry(Qt::Rect.new(10, 40, 431, 192)) mainWindow.setCentralWidget(@centralwidget) @menubar = Qt::MenuBar.new(mainWindow) @menubar.setObjectName("menubar") @menubar.setGeometry(Qt::Rect.new(0, 0, 451, 21)) mainWindow.setMenuBar(@menubar) @statusbar = Qt::StatusBar.new(mainWindow) @statusbar.setObjectName("statusbar") mainWindow.setStatusBar(@statusbar) retranslateUi(mainWindow) size = Qt::Size.new(451, 276) size = size.expandedTo(mainWindow.minimumSizeHint()) mainWindow.resize(size) Qt::MetaObject.connectSlotsByName(mainWindow) end # setupUi def setup_ui(mainWindow) setupUi(mainWindow) end def retranslateUi(mainWindow) mainWindow.setWindowTitle(Qt::Application.translate("MainWindow", "MainWindow", nil, Qt::Application::UnicodeUTF8)) @pushButton.setText(Qt::Application.translate("MainWindow", "PushButton", nil, Qt::Application::UnicodeUTF8)) end # retranslateUi def retranslate_ui(mainWindow) retranslateUi(mainWindow) end end module Ui class MainWindow &lt; Ui_MainWindow end end # module Ui </code></pre> <p>The major idea is to create a Ruby-Qt application, to run my small Ruby apps with GUI - as for now I don't need all the power of Qt library. </p> <p>I'm aware of <a href="http://www.arachnoid.com/ruby/RubyGUIProject/index.html" rel="nofollow">this</a> great example, but it shows off a different generated code for the .ui file. Or did they managed to alter it somehow? Anyway, their example works fine, while I can't make my own working properly. </p> <p>I just don't know what to do with my generated file, how to go further and make a connection with my Ruby program... Maybe my <code>rbuic4</code> is wrong? Or am I'm running it with incorrect options (I'm an <code>-o</code> option) to get the <a href="http://www.arachnoid.com/ruby/RubyGUIProject/index.html" rel="nofollow">arachnoid</a>-like template?</p> http://stackoverflow.com/questions/1487659/how-to-send-keypresses-from-qt-application-to-libvlc 0 How to send keypresses from qt application to libvlc anon 2009-09-28T15:21:39Z 2009-11-26T05:00:02Z <p>I need to send keypresses from my application window to libvlc, how do i do that? I tried using varSetInteger but then i got the following error</p> <p>error: ‘var_SetInteger’ was not declared in this scope</p> <p>so i searched for the file in which var_SetInteger was defined and found that it was defined in vlc_variables.h so in included it and got the following error. What am i missing?</p> <p>../vlc-0.9.10/include/vlc_variables.h:121: error: ‘__var_Create’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:121: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:121: error: expected <code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:121: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:121: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:122: error: ‘__var_Destroy’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:122: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:122: error: expected </code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:122: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:122: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:124: error: ‘__var_Change’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:124: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:124: error: expected <code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:124: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:124: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:126: error: ‘__var_Type’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:126: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:126: error: expected </code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:126: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:126: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:127: error: ‘__var_Set’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:127: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:127: error: expected <code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:127: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:127: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:128: error: ‘__var_Get’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:128: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:128: error: expected </code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:128: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:128: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:131: error: ‘__var_Command’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:131: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:131: error: expected <code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:131: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:131: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:133: error: expected constructor, destructor, or type conversion before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:171: error: ‘__var_AddCallback’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:171: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:171: error: expected </code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:171: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:171: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:172: error: ‘__var_DelCallback’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:172: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:172: error: expected <code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:172: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:172: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:173: error: ‘__var_TriggerCallback’ has not been declared ../vlc-0.9.10/include/vlc_variables.h:173: error: expected identifier before ‘(’ token ../vlc-0.9.10/include/vlc_variables.h:173: error: expected </code>)' before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:173: error: expected ‘,’ or ‘...’ before ‘*’ token ../vlc-0.9.10/include/vlc_variables.h:173: error: expected constructor, destructor, or type conversion before ‘)’ token ../vlc-0.9.10/include/vlc_variables.h:201: error: ‘__var_SetInteger’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:201: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:201: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:201: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:201: error: expected primary-expression before ‘int’ ../vlc-0.9.10/include/vlc_variables.h:201: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:202: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:215: error: ‘__var_SetBool’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:215: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:215: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:215: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:215: error: expected primary-expression before ‘bool’ ../vlc-0.9.10/include/vlc_variables.h:215: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:216: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:229: error: ‘__var_SetTime’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:229: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:229: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:229: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:229: error: expected primary-expression before ‘i’ ../vlc-0.9.10/include/vlc_variables.h:229: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:230: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:243: error: ‘__var_SetFloat’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:243: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:243: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:243: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:243: error: expected primary-expression before ‘float’ ../vlc-0.9.10/include/vlc_variables.h:243: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:244: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:257: error: ‘__var_SetString’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:257: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:257: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:257: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:257: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:257: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:258: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:270: error: ‘__var_SetVoid’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:270: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:270: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:270: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:270: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:271: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:302: error: ‘__var_GetInteger’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:302: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:302: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:302: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:302: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:303: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:317: error: ‘__var_GetBool’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:317: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:317: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:317: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:317: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:318: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:332: error: ‘__var_GetTime’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:332: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:332: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:332: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:332: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:333: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:347: error: ‘__var_GetFloat’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:347: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:347: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:347: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:347: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:348: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:362: error: ‘__var_GetString’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:362: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:362: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:362: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:362: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:363: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:371: error: ‘__var_GetNonEmptyString’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:371: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:371: error: ‘obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:371: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:371: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:372: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:412: error: variable or field ‘__var_IncInteger’ declared void ../vlc-0.9.10/include/vlc_variables.h:412: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:412: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:412: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:424: error: variable or field ‘__var_DecInteger’ declared void ../vlc-0.9.10/include/vlc_variables.h:424: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:424: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:424: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:437: error: ‘__var_CreateGetInteger’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:437: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:437: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:437: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:437: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:438: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:449: error: ‘__var_CreateGetBool’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:449: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:449: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:449: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:449: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:450: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:461: error: ‘__var_CreateGetTime’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:461: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:461: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:461: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:461: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:462: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:473: error: ‘__var_CreateGetFloat’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:473: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:473: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:473: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:473: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:474: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:485: error: ‘__var_CreateGetString’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:485: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:485: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:486: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:486: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:487: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:492: error: ‘__var_CreateGetNonEmptyString’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:492: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:492: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:493: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:493: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:494: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:527: error: ‘__var_CreateGetIntegerCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:527: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:527: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:527: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:527: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:528: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:540: error: ‘__var_CreateGetBoolCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:540: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:540: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:540: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:540: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:541: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:553: error: ‘__var_CreateGetTimeCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:553: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:553: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:553: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:553: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:554: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:566: error: ‘__var_CreateGetFloatCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:566: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:566: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:566: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:566: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:567: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:579: error: ‘__var_CreateGetStringCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:579: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:579: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:580: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:580: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:581: error: expected ‘,’ or ‘;’ before ‘{’ token ../vlc-0.9.10/include/vlc_variables.h:587: error: ‘__var_CreateGetNonEmptyStringCommand’ declared as an ‘inline’ variable ../vlc-0.9.10/include/vlc_variables.h:587: error: ‘vlc_object_t’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:587: error: ‘p_obj’ was not declared in this scope ../vlc-0.9.10/include/vlc_variables.h:588: error: expected primary-expression before ‘const’ ../vlc-0.9.10/include/vlc_variables.h:588: error: initializer expression list treated as compound expression ../vlc-0.9.10/include/vlc_variables.h:589: error: expected ‘,’ or ‘;’ before ‘{’ token src/transcribeWidget.cpp:859: warning: unused parameter ‘bytesSent’ src/transcribeWidget.cpp:859: warning: unused parameter ‘bytesTotal’ ../vlc-0.9.10/include/vlc_variables.h:201: warning: ‘__var_SetInteger’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:215: warning: ‘__var_SetBool’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:229: warning: ‘__var_SetTime’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:243: warning: ‘__var_SetFloat’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:257: warning: ‘__var_SetString’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:270: warning: ‘__var_SetVoid’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:302: warning: ‘__var_GetInteger’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:317: warning: ‘__var_GetBool’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:332: warning: ‘__var_GetTime’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:347: warning: ‘__var_GetFloat’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:362: warning: ‘__var_GetString’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:371: warning: ‘__var_GetNonEmptyString’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:437: warning: ‘__var_CreateGetInteger’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:449: warning: ‘__var_CreateGetBool’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:461: warning: ‘__var_CreateGetTime’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:473: warning: ‘__var_CreateGetFloat’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:485: warning: ‘__var_CreateGetString’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:492: warning: ‘__var_CreateGetNonEmptyString’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:527: warning: ‘__var_CreateGetIntegerCommand’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:540: warning: ‘__var_CreateGetBoolCommand’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:553: warning: ‘__var_CreateGetTimeCommand’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:566: warning: ‘__var_CreateGetFloatCommand’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:579: warning: ‘__var_CreateGetStringCommand’ defined but not used ../vlc-0.9.10/include/vlc_variables.h:587: warning: ‘__var_CreateGetNonEmptyStringCommand’ defined but not used</p> http://stackoverflow.com/questions/286565/in-a-qtablewidget-changing-the-text-color-of-the-selected-row 2 In a QTableWidget, changing the text color of the selected row Jérôme 2008-11-13T08:54:10Z 2009-11-26T04:56:31Z <p>I'm using a QTableWidget to display several rows. Some of these rows should reflect an error and their text color is changed :</p> <p>Rows reflecting that there is no error are displayed with a default color (black text on white background on my computer).<br /> Rows reflecting that there is an error are displayed with a red text color (which is red text on white background on my computer).</p> <p>This is all fine as long as there is no selection. As soon as a row is selected, no matter of the unselected text color, the text color becomes always white (on my computer) over a blue background.</p> <p>This is something I would like to change to get the following :<br /> When a row is selected, if the row is reflecting there is no error, I would like it to be displayed with white text on blue background (default behavior).<br /> If the row is reflecting an error and is selected, I would like it to be displayed with red text on blue background.</p> <p>So far I have only been able to change the selection color for the whole QTableWidget, which is not what I want !</p> http://stackoverflow.com/questions/1800754/can-you-implement-lazy-array-access-in-qtscript 0 Can you implement lazy array access in QtScript? Dan 2009-11-25T23:50:50Z 2009-11-25T23:58:14Z <p>Is it possible to implement a QObject for use in QtScript which overloads [] to implement lazy array population?</p> <p>I want to implement something like this:</p> <pre><code>var bar = foo["bar"]; </code></pre> <p>and have the value be lazily calculated in C++ code. Is this possible?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile 0 adding #ifndef #define #endif breaks the compile yan bellavance 2009-11-16T19:01:01Z 2009-11-25T20:53:17Z <p>I added a #ifndef to a file of my project and the compile fails in this case. As soon as I remove it or put any other name in the define it compiles fine. What could be the problem. Sounds like the file is already declared but I do not know where. Im fine just removing it but I really want to know why it is doing this.</p> <p>error: expected class-name before ‘{’ token error: ‘QDesignerFormEditorInterface’ has not been declared</p> <p>and a couple of other errors</p> <p>I am actually using an example from Qt :"Custom Widget Plugin Example"</p> <p>The difference is I am using my own class for the custom widget(.h, .cpp and .ui file).</p> <p>link to the project: <a href="http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz" rel="nofollow">http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz</a></p> <p>It might have to do with the file that has 2 includes, though that is how the example did it.</p> <p>I have just added a link to the files so you can see. Its not much just 2 classes</p> http://stackoverflow.com/questions/1799106/can-i-decide-where-a-qaction-is-added-to-a-qmenubar 1 Can I decide where a Qaction is added to a Qmenubar yan bellavance 2009-11-25T18:42:50Z 2009-11-25T19:02:36Z <p>I need to add a QAction directly into a QMenuBar (not an QAction inside a QMenu but a QAction directly in the QMenuBar) I am able to do this with the following command. </p> <p>ui->menuBar->addAction("VFTP",this, SLOT(VFTPmenuTrigger()) );</p> <p>My only problem is that when I add it, it is appended to the end of the menu bar that I have built in Qt designer. I would like to be able to put it somewhere in the middle. Seems the only way I could do this is if I generate the menu bar by coding it only. Is there a way to build most of my menuBar in Qt Designer and then add that Qaction in the menu bar where I want? I hope I am clear and I added the QAction programmatically because it is not possible to do so with Qt (I know it sounds countintuitive to put a QAction directly in the menu bar but this is what the customer wants) </p> http://stackoverflow.com/questions/1793037/how-do-i-add-a-header-with-data-to-a-qtablewidget-in-qt 0 How do I add a header with data to a QTableWidget in Qt? San Jacinto 2009-11-24T21:28:31Z 2009-11-25T18:22:56Z <p>Hi,</p> <p>I'm still learning Qt and I am indebted to the SO community for providing me with great, very timely answers to my Qt questions. Thank you.</p> <p>I'm quite confused on the idea of adding a header to a QTableWidget. What I'd like to do is have a table that contains information about team members. Each row for a member should contain his first and last name, each in its own cell, an email address in one cell, and office in the other cell. I'd to have a header above these columns to name them as appropriate.</p> <p>I'm trying to start off easy and get just the header to display "Last" (as in last name). Here is my code.</p> <pre> int column = m_ui->teamTableWidget->columnCount(); m_ui->teamTableWidget->setColumnCount(column+1); QString* qq = new QString("Last"); m_ui->teamTableWidget->horizontalHeader()->model()->setHeaderData(0, Qt::Horizontal, QVariant(QVariant::String, &qq)); </pre> <p>My table gets rendered corretly, but the header doesn't contain what I would expect. It contains 1 cell that contains the text "1".</p> <p>I am obviously doing something very silly here that is wrong, but i am lost. I keep pouring over the documentation, finding nothing. Here are the documentation links to the function calls I am making for the very last line.</p> <p><a href="http://doc.trolltech.com/4.5/qtableview.html#horizontalHeader" rel="nofollow">http://doc.trolltech.com/4.5/qtableview.html#horizontalHeader</a> <a href="http://doc.trolltech.com/4.5/qabstractitemview.html#model" rel="nofollow">http://doc.trolltech.com/4.5/qabstractitemview.html#model</a> <a href="http://doc.trolltech.com/4.5/qabstractitemmodel.html#setHeaderData" rel="nofollow">http://doc.trolltech.com/4.5/qabstractitemmodel.html#setHeaderData</a></p> <p>Thanks for any and all help.</p> <p>Edit: HOW I SOLVED THE PROBLEM</p> <p>Using some help from the accepted answer, I came up with the following code:</p> <pre> m_ui->teamTableWidget->setColumnCount(m_ui->teamTableWidget->columnCount()+1); QTableWidgetItem* qtwi = new QTableWidgetItem(QString("Last"),QTableWidgetItem::Type); m_ui->teamTableWidget->setHorizontalHeaderItem(0,qtwi); </pre> http://stackoverflow.com/questions/1792521/what-does-this-warning-message-mean 0 What does this warning message mean? ej 2009-11-24T19:55:10Z 2009-11-25T14:37:48Z <blockquote> <p>Product.cpp:34: warning: the address of ‘QTextStream&amp; endl(QTextStream&amp;)’, will always evaluate as ‘true’</p> <p>Product.cpp: In member function ‘void Product::setProductToSold()’:</p> <p>Product.cpp:45: warning: the address of ‘QTextStream&amp; endl(QTextStream&amp;)’, will always evaluate as ‘true’</p> </blockquote> <pre><code>#include &lt;string&gt; #include &lt;iostream&gt; #include &lt;time.h&gt; using std::string; using std::cout; #include "Product.h" Product::Product() { seller = ""; itemName = ""; price = 0.00; min = 0.00; buyingPrice = 0.00; time = 0; description = ""; highestBidder = "None"; currentBid = 0.00; timer = new QTimer( this ); connect( timer, SIGNAL(timeout()), this, SLOT(setProductToSold()) ); } void Product::startTimer() { Line 34: cout &lt;&lt; " Timer Started " &lt;&lt; endl; timer-&gt;start( 2000, TRUE ); // 2 seconds single-shot timer } void Product::setHandler(Handler *h) { handler = h; } void Product::setProductToSold() { Line 45: cout &lt;&lt; " Item auction over" &lt;&lt; endl; } </code></pre> <p>My Product.h::</p> <pre><code>#include &lt;string&gt; #include &lt;qobject.h&gt; #include &lt;qtimer.h&gt; #include &lt;qgl.h&gt; #include "HandleTCPClient.h" class Handler; //Define ourselves a product class class Product : public QObject { Q_OBJECT public: Product(); QTimer *timer; string seller, itemName, description, highestBidder; double price, min, buyingPrice, currentBid; int time; bool isSold; Handler *handler; void setHandler(Handler *h); void startTimer(); public slots: void setProductToSold(); }; #endif </code></pre> <p>Thanks :)</p> http://stackoverflow.com/questions/1790904/how-to-export-headers-using-qt-pro-files 0 how to export headers using Qt pro files Suresh 2009-11-24T15:44:35Z 2009-11-25T09:20:43Z <p>I've a project with following files</p> <pre><code>TestProject/api/apiheader1.h TestProject/api/apiheader2.h TestProject/src/apiimplementaton.cpp TestProject/inc/apiimplementation.h TestProject/TestProject.pro </code></pre> <p>When the project TestProject.pro is built headers apiheader1.h, apiheader2.h needs to be copied to /usr/include/TestLib/. Is it possible to do this by specifying it in project file TestProject.pro.?</p> <p>Any pointers / links will be helpful.</p> http://stackoverflow.com/questions/1781173/pyqt-removechild-addchild-qgroupbox 0 PyQt: removeChild/addChild QGroupBox ThreaderSlash 2009-11-23T04:59:01Z 2009-11-25T02:20:39Z <p>Hi Everybody,</p> <p>I am developing a system for a customer which is displayed in a set of tabs, and shows a table in the centralwidget with data extracted from a database.</p> <p>Depending on mouse events, the container (groupBox) must be removed from the centralwidget, or then added with new updated data for the table.</p> <p>Here is a piece of the code that runs nicely and shows the table with data inside the GroupBox:</p> <pre><code> self.tab_tableview = QtGui.QWidget() self.tab_tableview.setObjectName("tab_tableview") self.viewGroupBox = QtGui.QGroupBox(self.tab_tableview) self.viewGroupBox.setGeometry(QtCore.QRect(10, 0, 751, 501)) self.viewGroupBox.setObjectName("viewGroupBox") self.vBox = QtGui.QVBoxLayout() self.vBox.addWidget(self.newGroupBox) self.vBox.setGeometry(QtCore.QRect(40, 170, 171, 111)) self.vBox.addStretch(1) self.viewTableWidget = QtGui.QTableView(self.viewGroupBox) self.viewTableWidget.setGeometry(QtCore.QRect(10, 20, 731, 471)) self.viewTableWidget.setObjectName("viewTableWidget") updatedTableModel=self.callShowTable() self.viewTableWidget.setModel(updatedTableModel) self.viewTableWidget.setColumnWidth(0,30) self.viewTableWidget.setColumnWidth(1,550) self.viewTabWidget.addTab(self.tab_tableview, "") if removeContainer_Bottun_Pressed: print "remove bottun was pressed" self.vBox.removeWidget(self.viewGroupBox) if addContainer_Bottun_Pressed: print "add bottun was pressed" self.vBox.addWidget(self.viewGroupBox) </code></pre> <p>The program detects when "removeContainer_Bottun_Pressed" is true, and run the removeWidget(self.newGroupBox). Although removeWidget runs, the groupBox stays in the same place, instead of disappearing and reappearing on request.</p> <p>What is missing here?</p> <p>All comments and suggestions are highly appreciated.</p> http://stackoverflow.com/questions/1793884/qcombobox-with-single-value-select-this-value 0 QComboBox with single value: Select this value data 2009-11-25T00:15:43Z 2009-11-25T01:10:52Z <p>I have a QComboBox which changes its selection possibilities depending on certain conditions. Because of special combinations, it might have only one selection left over, which has to be "confirmed" by the user, preferably by looking at all possible selections, seeing that there is only one, and then selecting this.</p> <p>My problem: If a user selects the only option there is, the value is never set, i.e. no signal is sent. Is there a way to circumvent this?</p> http://stackoverflow.com/questions/1792309/qt-set-window-background 0 QT set window background Zach Smith 2009-11-24T19:18:33Z 2009-11-24T19:21:47Z <p>I have scoured through the documentation looking for a way to change the main window's background to an image I have located in the project file. I tried to use a palette with no luck. My question is, how and what is the easiest way to change the background of a window?</p> <p>Thank You for any help, Zach Smith</p> http://stackoverflow.com/questions/1782068/compile-combination-of-qtwinmigrate-qtpropertybrowser-under-vc-2008 0 Compile Combination of qtwinmigrate + qtpropertybrowser Under VC++ 2008 Yan Cheng Cheok 2009-11-23T09:37:08Z 2009-11-24T10:46:51Z <p>I need to display a property browser under a MFC app.</p> <p>I try to combine and compile the solution for the two</p> <p><a href="http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Windows/qtwinmigrate/" rel="nofollow">http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Windows/qtwinmigrate/</a> <a href="http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtpropertybrowser/" rel="nofollow">http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtpropertybrowser/</a></p> <p>I am using VC2009, QT 2009.04 with Visual Studio Add-On 1.1.1</p> <p>Take note, under my machine, there are no problem for me to compile them successfully separately.</p> <p>I copy, and add all exsiting CPP and HEADER files found in</p> <pre><code>qtpropertybrowser-2.5-opensource\src </code></pre> <p>into</p> <pre><code>qtwinmigrate-2.8-opensource\examples\qtdll </code></pre> <p>Here is how my new project looks like in the screen shoot (qtwinmigrate - windows at right most)</p> <p><img src="http://yancheng.cheok.googlepages.com/help.png" alt="alt text"></p> <p>The qtpropertybrowser, is the project which I am able to compile with no problem :</p> <pre><code>1&gt;------ Rebuild All started: Project: simple, Configuration: Release Win32 ------ 1&gt;Deleting intermediate and output files for project 'simple', configuration 'Release|Win32' 1&gt;Moc'ing qtpropertybrowserutils_p.h... 1&gt;RCC ..\..\src\qtpropertybrowser.qrc 1&gt;MOC ..\..\src\qtvariantproperty.h 1&gt;MOC ..\..\src\qttreepropertybrowser.h 1&gt;MOC ..\..\src\qtpropertymanager.h 1&gt;MOC ..\..\src\qtpropertybrowser.h 1&gt;MOC ..\..\src\qtgroupboxpropertybrowser.h 1&gt;MOC ..\..\src\qteditorfactory.h 1&gt;MOC ..\..\src\qtbuttonpropertybrowser.h 1&gt;Compiling... . . . 1&gt;Compiling... 1&gt;moc_qtpropertybrowserutils_p.cpp 1&gt;Linking... 1&gt;Embedding manifest... </code></pre> <p>However, when come to build modified version of qtwinmigrate (original version of qtwinmigrate was able to compiled with no problem)</p> <pre><code>1&gt;------ Rebuild All started: Project: qtdialog, Configuration: Release Win32 ------ 1&gt;Deleting intermediate and output files for project 'qtdialog', configuration 'Release|Win32' 1&gt;Moc'ing qtpropertybrowserutils_p.h... 1&gt;Moc'ing qteditorfactory.h... 1&gt;Moc'ing qtvariantproperty.h... 1&gt;Moc'ing qttreepropertybrowser.h... 1&gt;Moc'ing qtpropertymanager.h... 1&gt;Moc'ing qtpropertybrowser.h... 1&gt;Moc'ing qtgroupboxpropertybrowser.h... 1&gt;Moc'ing qtbuttonpropertybrowser.h... 1&gt;Moc'ing qwinwidget.h... 1&gt;Moc'ing qwinhost.h... 1&gt;Compiling... . . . 1&gt;Compiling... 1&gt;moc_qtpropertybrowserutils_p.cpp 1&gt;moc_qteditorfactory.cpp 1&gt;.\Release\moc_qteditorfactory.cpp(74) : error C2027: use of undefined type 'QtSpinBoxFactoryPrivate' 1&gt; c:\documents and settings\yan-cheng.cheok\my documents\downloads\qtwinmigrate-2.8-opensource\qtwinmigrate-2.8-opensource\examples\qtdll\release\../../../lib/qtpropertybrowser-2.5-opensource/src/qteditorfactory.h(97) : see declaration of 'QtSpinBoxFactoryPrivate' 1&gt;.\Release\moc_qteditorfactory.cpp(74) : error C2227: left of '-&gt;slotPropertyChanged' must point to class/struct/union/generic type </code></pre> <p>My questions is</p> <ol> <li>Why qtpropertybrowser just perform "Moc'ing" in 1 file, but qtwinmigrate perform "Moc'ing" in so many files?</li> <li>Why qtpropertybrowser just compile "moc_qtpropertybrowserutils_p.cpp", but qtwinmigrate try to compile so many "moc_....cpp"?</li> </ol> http://stackoverflow.com/questions/1754866/how-to-make-modeless-dialog-stay-on-top-of-its-parent-in-solaris-cde 0 How to make modeless dialog stay on top of its parent in Solaris CDE JackyTeoh 2009-11-18T09:59:00Z 2009-11-24T09:34:43Z <p>Hi,</p> <p>I have a problem with Qt modeless dialog in Solaris 8/10 machine using CDE (Common Desktop Environment). </p> <p>The dialog serve as drawing panel/popup that required user to choose the tools from main application before proceeding to draw on it. The problem is whenever user click on main application toolbar, then the dialog will goes behind the main application.</p> <p>Notice that this is the behavior pertaining to CDE only, Open Windows enviroment or Solaris Java environment don't cause this issue.</p> <p>My question is how can I make it always on top of its parent (main application)? I've tried to pass in WX11BypassWM flag to the dialog, to by pass window manager, but then the border and frame is gone which cause the dialog to not drag/move-able.</p> <p>Any solution to fix this?</p> <p>Many thanks :) ~jky~</p> http://stackoverflow.com/questions/1783204/force-library-linking-with-qt-and-google-test 1 Force library linking with Qt and google test chedi 2009-11-23T13:44:34Z 2009-11-24T08:00:42Z <p>Hi,</p> <p>I'm trying to write a test suit for my Qt(c++) application using google test, the main problem is that my application consists of one main program and various shared libs. Everything was working just fine, until I tried to do some code coverage using gcov/lcov (which don't operate on dynamic libs), so I modified all my .pro file to have a static lib compilation using :</p> <pre><code> CONFIG += staticlib create_prl QMAKE_LFLAGS += -static LIBS += ../../Libs/lib*.a </code></pre> The problem is that google test test application is something like this: <pre><code> int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } </code></pre> so it detects the linkage at runtime, which means that when I compile the test application here is no warning or whatever that indicate a problem, and when running the test application it execute 0 test because it doesn't found any. my solution (quit annoying one) is to define in each class which will be used for test a phony public static member and do an operation for the main test application on it: <pre> <code> class SETTINGS_TESTS_SHARED_EXPORT SettingsTests: public testing::Test { public: SettingsTests(); virtual ~SettingsTests(); static bool dummy; protected: virtual void SetUp(); virtual void TearDown(); private: Settings* _setting0; Settings* _setting1; Settings* _setting2; }; </code> </pre> <pre><code> using namespace MBI::SETTINGS; using namespace MBI::TESTS; int main(int argc, char **argv) { SettingsTests::dummy = true; ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } </code></pre> <p>so I can force the linkage of that lib on my application.</p> <p>I have also found the option -u to do something like that in gcc but doesn't seem to work. have anyone have a way to force static library linking if no symbol can be detected in compile time ?</p> http://stackoverflow.com/questions/989606/phonon-and-image-support 0 Phonon and image support Daniel 2009-06-13T00:25:07Z 2009-11-24T08:00:06Z <p>I'm trying to build a simple slideshow-like effect using Phonon with PyQt. The "slideshow" will be made up of images and/or video, but the images should display for some fixed period of time. When I queue up an image in a <code>MediaSource</code>, it is displayed for only a short moment.</p> <p>Phonon appears to support images via the backend (at least on OS X with Quicktime), but I haven't found anything documented to indicate this. The <code>Phonon.BackendCapabilities.availableMimeTypes()</code> function only returns audio and video formats; none of the formats I've successfully tested - JPEG, PNG - are listed.</p> <p>I need to determine if a given <code>MediaSource</code> is an image or not, so I can tell the <code>MediaOjbect</code> to pause for some given period of time. Of course I can make a big list of known image format extensions, and check the filename of the media - but this is kludgy. How can I do this with Phonon?</p> http://stackoverflow.com/questions/764928/usr-bin-ld-cannot-find-lfreetype-why-and-how-can-i-make-it-work 2 /usr/bin/ld: cannot find -lfreetype Why? And how can I make it work? Brentmparker 2009-04-19T06:03:06Z 2009-11-24T03:57:26Z <h3>Exact duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/646232/-usr-bin-ld-cannot-find-lfreetype-qt">/usr/bin/ld: cannot find -lfreetype qt</a></p> </blockquote> <p><hr /></p> <p>Hi, I'm writing a cross-platform Qt application for a graduate project. I've been working with Qt 4.3, but just recently upgraded to 4.5. On my Windows machine, it works great. No problems. However, on my Linux machine, things aren't quite so nice.</p> <p>I'm using the Qt creator and it goes through the compiling process making all the object files. But then it makes a call to:</p> <p>g++ -Wl, -rpath, (all the .o files here) -L/media/HOME/Qt-Linux-4.5/qt/lib -lQtGui -L/media/HOME/Qt-Linux-4.5/qt/lib -L/usr/X11R6/lib -pthread -lfreetype -lgobject-2.0 -lrt -lglib-2.0 -ldl -lpthread</p> <p>It gives me the error:</p> <p>/usr/bin/ld: cannot find -lfreetype collect2: ld returned 1 exit status</p> <p>Now, I can locate libfreetype.so.6 and libfreetype.so.6.3.18 in my /usr/lib folders. I've tried running this inserting -L/usr/lib, but that didn't work. I've tried ln -s /usr/lib/libfreetype.so.6.3.18 libfreetype.so, I've tried editing the ld.so.conf file. </p> <p>I'm trying this on an eeepc with Eeebuntu, if that helps.</p> <p>Help!! I've been trying to get this to work for two days. I don't know what else I can do. Any suggestions?</p> <p>Thanks much! Brent</p>