User Parker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:21:11Z http://stackoverflow.com/feeds/user/4757 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1262081/how-to-encrypt-and-decrypt-a-file-with-qt-c/1262676#1262676 8 Answer by Parker for How to encrypt and decrypt a file with Qt/C++? Parker 2009-08-11T20:18:21Z 2009-08-11T20:18:21Z <p>I've never used it myself, but I've heard great things about <a href="http://delta.affinix.com/qca/" rel="nofollow">QCA</a>. It's cross platfrom, uses a Qt-style API and Qt datatypes.</p> http://stackoverflow.com/questions/1045886/https-log-in-with-urllib2 1 HTTPS log in with urllib2 Parker 2009-06-25T19:52:48Z 2009-06-26T08:21:53Z <p>I currently have a little script that downloads a webpage and extracta somw data I'm interested in. Nothing fancy.</p> <p>Currently I'm downloading the page like so:</p> <pre><code>import commands command = 'wget --output-document=- --quiet --http-user=USER --http-password=PASSWORD https://www.example.ca/page.aspx' status, text = commands.getstatusoutput(command) </code></pre> <p>Although this works perfectly, I thought it'd make sense to remove the dependency on wget. I thought it should be trivial to convert the above to urllib2, but thus far I've had zero success. The Internet is full urllib2 examples, but I haven't found anything that matches my need for simple username and password HTTP authentication with a HTTPS server.</p> http://stackoverflow.com/questions/906994/qgraphicsitem-emulating-an-item-origin-which-is-not-the-top-left-corner/908854#908854 2 Answer by Parker for QGraphicsItem : emulating an item origin which is not the top left corner Parker 2009-05-26T03:56:02Z 2009-05-26T03:56:02Z <p>You're overthinking it. QGraphicsPixmapItem already has this functionality built in. See the <code>setOffset</code> method. (<a href="http://doc.trolltech.com/4.5/qgraphicspixmapitem.html#setOffset" rel="nofollow">http://doc.trolltech.com/4.5/qgraphicspixmapitem.html#setOffset</a>)</p> <p>So to set the item origin at its centre, just do <code>setOffset( -0.5 * QPointF( width(), height() ) );</code> every time you set the pixmap.</p> http://stackoverflow.com/questions/851190/how-to-disable-the-up-down-buttons-within-the-qdoublespinbox/852558#852558 3 Answer by Parker for How to disable the up/down buttons within the QDoubleSpinBox Parker 2009-05-12T12:40:44Z 2009-05-12T12:40:44Z <p>You need to create a QDoubleSpinBox subclass with a custom implementation of the step enabled function. (<a href="http://doc.trolltech.com/4.5/qabstractspinbox.html#stepEnabled" rel="nofollow">http://doc.trolltech.com/4.5/qabstractspinbox.html#stepEnabled</a>)</p> http://stackoverflow.com/questions/851210/for-qdoublespinbox-can-i-give-an-range-0-0minmax1-0-if-yes-how-do-i-get-the/852527#852527 2 Answer by Parker for For QDoubleSpinBox, can I give an range 0.0<min<max<1.0. If yes how do I get the step buttons to work with it Parker 2009-05-12T12:33:15Z 2009-05-12T12:33:15Z <p>Use setSingleStep() to set the step size to something reasonable for your range. (<a href="http://doc.trolltech.com/4.5/qdoublespinbox.html#singleStep-prop" rel="nofollow">http://doc.trolltech.com/4.5/qdoublespinbox.html#singleStep-prop</a>)</p> http://stackoverflow.com/questions/787809/how-to-clean-up-a-complex-qlist/788973#788973 2 Answer by Parker for How to clean up a complex QList? Parker 2009-04-25T13:53:56Z 2009-04-25T13:53:56Z <p>Because you're creating the sub items with "new", you do have to deallocate them yourself. See the qDeleteAll function for a quick way of doing so.</p> <p>Is there a reason why you're using new to create these hashs? (Your code is obviously just a snippet, so the pointers could be used and passed around elsewhere.) Generally, it's much simpler to just construct them on the stack so that destruction happens automatically.</p> http://stackoverflow.com/questions/771008/c-for-loop-vs-foreach/773384#773384 2 Answer by Parker for c++ for loop vs foreach Parker 2009-04-21T16:07:52Z 2009-04-21T16:07:52Z <p>First off, I'd just like to say I agree with Pax, and that the speed probably doesn't enter into it. foreach wins hands down based on readability, and that's enough in 98% of cases.</p> <p>But of course the Qt guys have looked into and actually done some profiling: <a href="http://labs.trolltech.com/blogs/2009/01/23/iterating-efficiently/" rel="nofollow">http://labs.trolltech.com/blogs/2009/01/23/iterating-efficiently/</a></p> <p>The main lesson to take away from that is, use const references in read only loops as it avoids the creation of temporary instances. It also make the purpose of the loop more explicit, regardless of the looping method you use.</p> http://stackoverflow.com/questions/530992/floating-embedded-qdockwidget-in-a-qwidget-kxmlguiwindows-centralwidget-designe/582594#582594 1 Answer by Parker for Floating/Embedded QDockWidget in a QWidget (KXmlGuiWindow's CentralWidget designed in QT Designer) Parker 2009-02-24T17:06:06Z 2009-02-24T17:06:06Z <p>I would design the QDockWidget contents as separate UI files. Then create them and stick them into the QDockWidgets in the AEmpire constructor.</p> http://stackoverflow.com/questions/424666/which-way-to-go-in-linux-qt-or-kdevelop/424832#424832 5 Answer by Parker for Which way to go in Linux (Qt or KDevelop) Parker 2009-01-08T16:05:50Z 2009-01-08T16:08:07Z <p>You seemed to be confused. <a href="http://trolltech.com/products" rel="nofollow">Qt</a> is a C++ toolkit. <a href="http://www.kdevelop.org/" rel="nofollow">KDevelop</a> is an IDE.</p> <p>From your comment I see that you meant Qt Designer. Designer is not an IDE; it is just an application for graphically creating user interfaces. It can't compile code, debug, or do any of the other things an IDE does.</p> <p>The KDevelop IDE actually embeds Designer into itself, so this clearly isn't a "one or the other" type situation.</p> <p>Of course a third possibility is that you were talking about <a href="http://trolltech.com/developer/qt-creator" rel="nofollow">Qt Creator</a>, the IDE that was recently released as beta by Qt Software. If that's the case, then I would just encourage you to try them both out and see which you prefer. They take different approaches and the better option would be based almost entirely on personal preference.</p> http://stackoverflow.com/questions/360368/lambda-function-for-classes-in-python/360456#360456 4 Answer by Parker for Lambda function for classes in python? Parker 2008-12-11T18:53:30Z 2008-12-11T18:53:30Z <p>There's no need for lambda at all. lambda is just syntatic sugar to define a function and use it at the same time. Just like any lambda call can be replaced with an explicit def, we can solve your problem by creating a real class that meets your needs and returning it. </p> <pre><code>class Double: def run(self,x): return x*2 class Triple: def run(self,x): return x*3 def createMultiplier(n): class Multiply: def run(self,x): return x*n return Multiply class Library: def __init__(self,c): self.c = c() def Op(self,val): return self.c.run(val) op1 = Double op2 = Triple op3 = createMultiplier(5) lib1 = Library(op1) lib2 = Library(op2) lib3 = Library(op3) print lib1.Op(2) print lib2.Op(2) print lib3.Op(2) </code></pre> http://stackoverflow.com/questions/334952/how-to-know-a-qtreewidget-selected-item/344284#344284 0 Answer by Parker for How to know a QTreeWidget selected item? Parker 2008-12-05T15:55:22Z 2008-12-05T15:55:22Z <p>Using the itemClicked() signal will miss any selection changes made using the keyboard. I'm assuming that's a bad thing in your case.</p> http://stackoverflow.com/questions/316826/c-qt-vs-adobe-air/326039#326039 1 Answer by Parker for C++/Qt vs Adobe AIR Parker 2008-11-28T15:30:43Z 2008-11-28T15:30:43Z <p>If your looking for some examples of "fun" UIs using Qt and SVG, take a look at the KDEGames [1][2] and KDEEdu [3][4] projects. There's lot's of nice code there that uses QGraphicsView and SVG to created scalable interfaces. Of course note that's it's GPL so be careful what you "borrow" if your app isn't.</p> <p>[1] <a href="http://games.kde.org/" rel="nofollow">http://games.kde.org/</a></p> <p>[2] <a href="http://websvn.kde.org/trunk/KDE/kdegames/" rel="nofollow">http://websvn.kde.org/trunk/KDE/kdegames/</a></p> <p>[3] <a href="http://edu.kde.org/" rel="nofollow">http://edu.kde.org/</a></p> <p>[4] <a href="http://websvn.kde.org/trunk/KDE/kdeedu/" rel="nofollow">http://websvn.kde.org/trunk/KDE/kdeedu/</a></p> http://stackoverflow.com/questions/30521/qt-child-window-placement/163631#163631 0 Answer by Parker for Qt Child Window Placement Parker 2008-10-02T17:45:20Z 2008-11-27T17:17:59Z <p>Generally, I'd recommend not forcing window positions unless your application has some very special windowing requirements. It's the window manager's job to determine where new windows are put and most of them do a good job. If MetaCity isn't picking a good position, then that's its problem.</p> <p>If you do your own window placement you may get a better result then what a poor window manager would give, but you'll also miss out on the intelligent window placement algorithms available in more advanced window managers.</p> http://stackoverflow.com/questions/1801074/what-are-the-differences-between-gtk-and-qt/1801117#1801117 Comment by Parker on What are the differences between Gtk+ and Qt? Parker 2009-11-26T11:06:07Z 2009-11-26T11:06:07Z The &quot;automatic settings saving&quot; versus &quot;OK, Apply, Cancel&quot; is really more a Gnome versus KDE thing. Both toolkits can handle either. http://stackoverflow.com/questions/1382537/setting-qmainwindow-at-the-center-of-screen Comment by Parker on Setting QMainWindow at the center of screen Parker 2009-09-08T18:45:48Z 2009-09-08T18:45:48Z Manually positioning windows is generally discouraged. It's the window manager's job to position windows and if your app manually centres itself, that will lead to inconsistencies. For example on my dual head system, where will your code place the window? Unless you have a very good reason, don't micromanage window placement. http://stackoverflow.com/questions/1045886/https-log-in-with-urllib2/1045905#1045905 Comment by Parker on HTTPS log in with urllib2 Parker 2009-06-26T12:50:46Z 2009-06-26T12:50:46Z Ive tried with both HTTPBasicAuthHandler and HTTPDigestAuthHandler, but this is still giving me 401 errors. http://stackoverflow.com/questions/1045886/https-log-in-with-urllib2/1046153#1046153 Comment by Parker on HTTPS log in with urllib2 Parker 2009-06-25T22:13:19Z 2009-06-25T22:13:19Z How do I know which &quot;realm&quot; and &quot;uri&quot; to pass to add_password? I guess it's obvious that I don't know a whole lot about HTTP and authentication. http://stackoverflow.com/questions/1045375/unable-to-understand-the-reason-for-self-in-python/1045497#1045497 Comment by Parker on Unable to understand the reason for self in Python Parker 2009-06-25T19:58:26Z 2009-06-25T19:58:26Z @Shane C. Mason: <a href="http://begthequestion.info/" rel="nofollow">begthequestion.info</a> http://stackoverflow.com/questions/286565/in-a-qtablewidget-changing-the-text-color-of-the-selected-row Comment by Parker on In a QTableWidget, changing the text color of the selected row Parker 2009-06-18T12:52:52Z 2009-06-18T12:52:52Z What does the code you're currently using to set the text color look like? http://stackoverflow.com/questions/923458/running-a-separate-process-or-thread-in-qt Comment by Parker on Running a separate process or thread in Qt Parker 2009-05-29T13:21:46Z 2009-05-29T13:21:46Z One word of warning. You cannot use QPixmaps outside of the GUI thread. I was recently bitten by this is a similar threaded image rendering type application. Use QImage instead. If you really need a QPixmap (which I did) you'll have to return a QImage from the thread and do the conversion (which is quite expensive) in the main GUI thread. http://stackoverflow.com/questions/851190/how-to-disable-the-up-down-buttons-within-the-qdoublespinbox/853844#853844 Comment by Parker on How to disable the up/down buttons within the QDoubleSpinBox Parker 2009-05-13T15:17:03Z 2009-05-13T15:17:03Z Actually, set button symbols allows you to choose between up and down arrow buttons, plus and minus buttons, or no buttons at all. It doesn't let you individually enable and disable them. http://stackoverflow.com/questions/846015/how-modern-is-c-language-used-in-qt/846363#846363 Comment by Parker on How modern is C++ language used in Qt? Parker 2009-05-11T18:26:20Z 2009-05-11T18:26:20Z @Piotr Qt containers are STL compatible. Qt is a major selling point for C++, why did Boost invent their own signal/slot mechanism? ;) Diversity is a good thing. As for Qt signals and slots being compatible with Boost's, keep in mind that Qt <i>invented</i> signals and slots back in 1994 when templates weren't an real option. Nowadays Boost signals might be the better implementation, but Qt has a lot of customers with a lot of code written using the existing system. They might look at using templated signals for Qt5, but until then their hands are tied. <a href="http://doc.qtsoftware.com/4.5/templates.html" rel="nofollow">doc.qtsoftware.com/4.5/templates.html</a> http://stackoverflow.com/questions/846015/how-modern-is-c-language-used-in-qt/846363#846363 Comment by Parker on How modern is C++ language used in Qt? Parker 2009-05-11T12:49:52Z 2009-05-11T12:49:52Z I would like to point out that none of the signal methods you mention are currently part of C++ or its standard library. They're all 3rd party libraries. As for QVector, it's a vector container with a Qt style API. Qt's API is one of its biggest selling points, so providing container classes with a familiar API only makes sense for them. http://stackoverflow.com/questions/24109/c-ide-for-linux/24135#24135 Comment by Parker on C++ IDE for Linux? Parker 2009-05-08T18:56:03Z 2009-05-08T18:56:03Z KDevelop4 is a really, really great C++ IDE. Unfortunately it hasn't yet been released, so I'm hesitant to recommend it, especially to someone new to Linux. I build it from SVN weekly and am nothing but impressed with the direction it's taking. http://stackoverflow.com/questions/24109/c-ide-for-linux/24119#24119 Comment by Parker on C++ IDE for Linux? Parker 2009-05-08T18:51:35Z 2009-05-08T18:51:35Z I both agree and disagree with you. Learning the underlying tools is important, no question, but once you understand what's actually going on, a good IDE can make life a lot easier and more productive. I think the key is to get an IDE that tries to provide an interface to the tools below without trying to hide the details. I think this issue often confuses people coming from MSVS where the editor, the compiler, the debugger, etc. all appear to the user as a single monolithic tool. http://stackoverflow.com/questions/833366/custom-qt-widget-isnt-showing-up Comment by Parker on custom qt widget isn't showing up Parker 2009-05-07T12:27:31Z 2009-05-07T12:27:31Z I think we need more code to answer this properly. What does the mywidget class look like? What is centralWidget? Does centralWidget have a layout? http://stackoverflow.com/questions/809859/optimal-tab-size-for-code-readability/809862#809862 Comment by Parker on Optimal tab size for code readability Parker 2009-05-01T15:15:59Z 2009-05-01T15:15:59Z @Mnementh: For example, if you have a function call with a lot of long parameters you often have to break it across lines, using whitespace to align it for readability. Tabs shouldn't be used for this as the alignment will break depending on the tab size used. The proper method is to uses tabs to indent the line to match the one above and then uses spaces to make things pretty. @Greg Hewgill: Are there really decent editors out there that don't visualise tabs and spaces differently? (This is a real question, I assumed all programming editors supported this.) http://stackoverflow.com/questions/794813/pyqt-combobox-only-react-on-user-interaction/794898#794898 Comment by Parker on PyQT combobox only react on user interaction Parker 2009-04-29T13:57:38Z 2009-04-29T13:57:38Z @Chris Cameron, Qt can automatically mirror the layout for RTL locales. To test this yourself, just pass the &quot;-reverse&quot; switch on the command line to any Qt application.