User Joe Corkery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:27:19Z http://stackoverflow.com/feeds/user/7587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1505582/determining-32-vs-64-bit-in-c 12 Determining 32 vs 64 bit in C++ Joe Corkery 2009-10-01T18:17:13Z 2009-10-22T11:48:21Z <p>I'm looking for a way to reliably determine whether C++ code is being compiled in 32 vs 64 bit. We've come up with what we think is a reasonable solution using macros, but was curious to know if people could think of cases where this might fail or if there is a better way to do this. Please note we are trying to do this in a cross-platform, multiple compiler environment.</p> <pre><code>#if ((ULONG_MAX) == (UINT_MAX)) #define IS32BIT #else #define IS64BIT #endif #ifdef IS64BIT DoMy64BitOperation() #else DoMy32BitOperation() #endif </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1239730/help-with-linker-failer-gnu-linkonce-t 1 Help with linker failer: .gnu.linkonce.t... Joe Corkery 2009-08-06T15:35:18Z 2009-08-07T15:41:29Z <p>I'm having trouble linking a shared library using gcc 3.2.3 with binutils 2.18. When I try to link the library I get the following error:</p> <p>.gnu.linkonce.t_... referenced in section .rodata: defined in discarded section .gnu.linkonce.t...</p> <p>I've done a fair amount of googling on this and most places seem to indicate it is a regression introduce in binutils 2.17 and later fixed in 2.18.50, but I was curious if anybody knew if there were any particular workarounds for the issue without having to touch binutils and gcc.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1239730/help-with-linker-failer-gnu-linkonce-t/1245498#1245498 0 Answer by Joe Corkery for Help with linker failer: .gnu.linkonce.t... Joe Corkery 2009-08-07T15:41:29Z 2009-08-07T15:41:29Z <p>This turned out to be a strange result where the system was mismatching gcc with a different binutils. /usr/bin/gcc was being used (3.2.3) and /usr/local/bin/ld was being used with it due to /usr/local/bin being in front of /usr/bin in the path. When we switched so that /usr/bin was at the front of the path, the appropriate /usr/bin/ld was called (binutils 2.14) and this seems to have resolved the problem.</p> http://stackoverflow.com/questions/1196364/obtaining-text-from-a-qlistview/1196398#1196398 3 Answer by Joe Corkery for obtaining text from a QListView Joe Corkery 2009-07-28T20:02:45Z 2009-07-28T20:02:45Z <p>You can ask the QListView object for its root QModelIndex and use that to iterate over the different entries using the sibling/children methods. You can access the text associated with each index by calling the data method on the index with the role specified as the Qt::DisplayRole.</p> <p>For more details see the following documentation:</p> <p><a href="http://doc.trolltech.com/4.4/qabstractitemview.html" rel="nofollow">QAbstractItemView</a> - parent class to QListView</p> <p><a href="http://doc.trolltech.com/4.4/qmodelindex.html" rel="nofollow">QModelIndex</a></p> http://stackoverflow.com/questions/157759/how-can-i-determine-the-running-mac-os-x-version-programmatically 4 How can I determine the running Mac OS X version programmatically? Joe Corkery 2008-10-01T14:06:07Z 2009-07-28T08:07:56Z <p>Hi everybody,</p> <p>I have a program which needs to behave slightly differently on Tiger than on Leopard. Does anybody know of a system call which will allow me to accurately determine which version of Mac OS X I am running. I have found a number of macro definitions to determine the OS of the build machine, but nothing really good to determine the OS of the running machine.</p> <p>Thanks, Joe</p> http://stackoverflow.com/questions/1089598/incorrect-qfileinfo-permissions-for-user-desktop-on-vista-64 0 Incorrect QFileInfo permissions for user desktop on vista 64 Joe Corkery 2009-07-06T23:01:20Z 2009-07-07T21:19:56Z <p>I am using the following code to determine if I can write to a specific directory using QFileInfo:</p> <pre><code>QFileInfo dinfo(dirname); if (dinfo.exists()) valid = dinfo.isWritable() </code></pre> <p>Unfortunately, when I pass in the path of the current user's desktop on Vista 64:</p> <pre><code>C:\Users\USERNAME\Desktop </code></pre> <p>QFileInfo::isWritable() returns false. However, if I pass it another directory (say C:\Temp) it returns true. I requested the directory permissions from the QFileInfo object which were 5555 (not writable by anyone). This code works as expected on other platforms including Windows XP. Anybody have any ideas as to what might be going on here.</p> <p>As a point of reference, if I remove the check I can actually save the file to that location without a problem.</p> http://stackoverflow.com/questions/1089598/incorrect-qfileinfo-permissions-for-user-desktop-on-vista-64/1094950#1094950 1 Answer by Joe Corkery for Incorrect QFileInfo permissions for user desktop on vista 64 Joe Corkery 2009-07-07T21:19:56Z 2009-07-07T21:19:56Z <p>So, after a bit of digging through the Task Tracker at Qt, I discovered that QFileInfo::isWritable() is only valid for use on files and not directories. By changing the code to ask if I could create the file of interest instead of asking if the directory is writable, I was able to achieve the desired outcome:</p> <pre><code>QDir dir(dirname); if (dir.exists()) { QFileInfo finfo(dir.absoluteFilePath(fname)); valid = finfo.isWritable(); } </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1076300/extending-python-with-c-c/1076318#1076318 6 Answer by Joe Corkery for Extending Python with C/C++ Joe Corkery 2009-07-02T19:45:43Z 2009-07-02T19:45:43Z <p>We use SWIG to wrap our C/C++ libraries for use in Python. It works quite well.</p> <p><a href="http://www.swig.org/" rel="nofollow">http://www.swig.org/</a></p> http://stackoverflow.com/questions/1072272/best-fictional-users-for-test-data/1072289#1072289 1 Answer by Joe Corkery for Best Fictional Users for Test Data Joe Corkery 2009-07-02T03:17:31Z 2009-07-02T03:17:31Z <p>Random entries from the phone book or maybe all the actors who played Dr. Who.</p> http://stackoverflow.com/questions/1069352/is-it-possible-to-turn-off-support-for-and-or-boolean-operator-usage-in-gcc 3 Is it possible to turn off support for "and" / "or" boolean operator usage in gcc? Joe Corkery 2009-07-01T14:15:55Z 2009-07-01T14:28:21Z <p>GCC seems to allow "and" / "or" to be used instead of "&amp;&amp;" / "||" in C++ code; however, as I expected, many compilers (notably MSVC 7) do not support this. The fact that GCC allows this has caused some annoyances for us in that we have different developers working on the same code base on multiple platforms and occasionally, these "errors" slip in as people are switching back and forth between Python and C++ development.</p> <p>Ideally, we would all remember to use the appropriate syntax, but for those situations where we occasionally mess up, it would be really nice if GCC didn't let it slide. Anybody have any ideas on approaches to this?</p> <p>If "and" and "or" are simply #defines then I could #undef when using GCC but I worry that it is more likely built into the compiler at more fundamental level.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1041987/going-more-social-having-more-fun-at-office-for-programmers/1042208#1042208 0 Answer by Joe Corkery for Going more social, having more fun at office for programmers Joe Corkery 2009-06-25T04:36:22Z 2009-06-25T04:36:22Z <p>Our office (4-5 people) goes out to lunch together pretty much everyday. Lunch is covered by the company as long as 2 or more employees are present. The idea being that it fosters camaraderie among the employees as well as an opportunity to talk shop with others that you might not normally interact with on a given problem.</p> <p>The overall cost to the company is relatively low in the grand scheme of things and is definitely a nice benefit to the employees.</p> http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003 0 Problem with regular expression replacement in Visual Studio 2003 Joe Corkery 2009-06-25T03:34:16Z 2009-06-25T04:00:09Z <p>I'm in the process of converting some LaTeX documentation to restructured text and having some trouble with a regular expression in Visual Studio 2003. I'm trying to convert \emph{text} to *text* using the following find/replace strings: </p> <pre><code>\\emph\{([^\}]*)\} *\0* </code></pre> <p>However, using this pair I get \emph{text} converted to *\emph{text}* which was not what I expected. When I use *\1* instead of *\0* I get ** as the replacement result.</p> <p>What am I missing or what don't I understand about the grouping rules?</p> <p>Thanks.</p> http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1019082#1019082 0 Answer by Joe Corkery for Qt - top level widget with keyboard and mouse event transparency? Joe Corkery 2009-06-19T17:20:50Z 2009-06-19T17:20:50Z <p>Maybe I'm missing something here, but have you tried subclassing the QMainWindow class and overriding the <a href="http://doc.trolltech.com/4.5/qwidget.html#event" rel="nofollow">QWidget::event()</a> method to always return false? If you need to handle some events, you could add that intelligence here as well.</p> <p>This technique should allow you to inspect the events coming in to the application and ignore them if desired without having to eat them using an event filter.</p> <p>If this doesn't work you could attempt to redirect the events to the desktop by calling <a href="http://doc.trolltech.com/4.5/qcoreapplication.html#notify" rel="nofollow">QCoreApplication::notify()</a> and passing the event to the desktop widget obtained by calling <a href="http://doc.trolltech.com/4.5/qapplication.html#desktop" rel="nofollow">QApplication::desktop()</a>. I have no idea if this would work, but it seemed like it might be worth giving a try.</p> http://stackoverflow.com/questions/1015276/c-container-iterator-dependency-problem/1015308#1015308 2 Answer by Joe Corkery for C++ Container / Iterator Dependency Problem Joe Corkery 2009-06-18T21:33:26Z 2009-06-18T21:33:26Z <p>I would recommend separating the definition from the declaration of the classes. In the header file, forward declare the hexFile classes and then fully declare both of them in the header file. You can then define the individual classes in more detail in the associated source file. </p> http://stackoverflow.com/questions/1009520/any-way-to-bulk-load-a-qt-data-model-to-avoid-excess-signal-invocations/1012139#1012139 4 Answer by Joe Corkery for Any way to "bulk load" a Qt data model to avoid excess signal invocations? Joe Corkery 2009-06-18T11:22:29Z 2009-06-18T13:35:43Z <p>Try using the <a href="http://doc.trolltech.com/4.5/qobject.html#blockSignals" rel="nofollow">QObject::blockSignals</a> method on the object emitting the signals. This will allow you to suppress and then later restore signal generation. Very useful for exactly this type of operation. </p> http://stackoverflow.com/questions/944665/designing-a-qt-opengl-application-in-eclipse/944806#944806 5 Answer by Joe Corkery for Designing a Qt + OpenGL application in Eclipse Joe Corkery 2009-06-03T13:37:26Z 2009-06-03T13:37:26Z <p>If you are using Qt Designer (which I think is available via Eclipse Integration), you can place a base QWidget in the layout and then "promote" that widget to a QGLWidget. To do this:</p> <ol> <li>Add the QWidget to the desired place in the layout</li> <li>Right-click on the widget</li> <li>Select "Promote To"</li> <li>Enter QGLWidget as the class name and as the header</li> <li>Hit <em>Add</em></li> <li>Select the QGLWidget from the list of promoted widgets at the top of the dialog</li> <li>Hit <em>Promote</em></li> </ol> <p>This way you don't have to go through the placeholder route and create an additional layer.</p> http://stackoverflow.com/questions/934950/how-to-make-binary-distribution-of-qt-application-for-linux/935125#935125 2 Answer by Joe Corkery for How to make binary distribution of Qt application for Linux Joe Corkery 2009-06-01T14:42:49Z 2009-06-02T04:03:30Z <p>When we distribute Qt apps on Linux (or really any apps that use shared libraries) we ship a directory tree which contains the actual executable and associated wrapper script at the top with sub-directories containing the shared libraries and any other necessary resources that you don't want to link in.</p> <p>The advantage of doing this is that you can have the wrapper script setup everything you need for running the application without having to worry about having the user set environment variables, install to a specific location, etc. If done correctly, this also allows you to not have to worry about from where you are calling the application because it can always find the resources.</p> <p>We actually take this tree structure even further by placing all the executable and shared libraries in platform/architecture sub-directories so that the wrapper script can determine the local architecture and call the appropriate executable for that platform and set the environment variables to find the appropriate shared libraries. We found this setup to be particularly helpful when distributing for multiple different linux versions that share a common file system.</p> <p>All this being said, we do still prefer to build statically when possible, Qt apps are no exception. You can definitely build with Qt statically and you shouldn't have to go build a lot of additional dependencies as krbyrd noted in his response.</p> http://stackoverflow.com/questions/927043/is-there-a-way-to-determine-if-a-top-level-qt-window-has-been-moved 0 Is there a way to determine if a top level Qt window has been moved? Joe Corkery 2009-05-29T16:55:12Z 2009-05-29T18:16:03Z <p>I am trying to determine when the main window of my application has been moved. The main window is a standard QMainWindow and we've installed an eventFilter on the QApplication to look for moveEvents for the QMainWindow, but none are being triggered. For a variety of reasons, subclassing the QMainWindow isn't really an option.</p> <p>Any thoughts on this, aside from starting a QTimer tto constantly check the position, would greatly be appreciated.</p> http://stackoverflow.com/questions/918668/how-can-i-redefine-a-built-in-keyboard-shortcuts-behavior/922404#922404 -2 Answer by Joe Corkery for How can I redefine a built in keyboard shortcut's behavior? Joe Corkery 2009-05-28T18:12:26Z 2009-05-29T13:45:21Z <p>I would recommend creating an event filter and installing that on the base widget (or even the QApplication instance). You can use the event filter to look at key events and hopefully see the Ctrl+C event prior to it being handled elsewhere.</p> <p>When you encounter the Ctrl+C event that you want to handle, make sure to accept that event to prevent it from being propogated any further.</p> http://stackoverflow.com/questions/869093/getting-first-three-digits-from-int-float/869119#869119 1 Answer by Joe Corkery for Getting first three digits from int/float Joe Corkery 2009-05-15T14:42:54Z 2009-05-15T14:42:54Z <p>You can do this by converting the number into a text representation using itoa or sprintf or implementing your own version of this conversion technique. Once this is done, you can pull the first three characters from the text buffer to use.</p> http://stackoverflow.com/questions/781668/char-to-int-conversion-in-c/781687#781687 1 Answer by Joe Corkery for Char to int conversion in C. Joe Corkery 2009-04-23T13:28:27Z 2009-04-23T13:28:27Z <p>Yes. This is safe as long as you are using standard ascii characters, like you are in this example.</p> http://stackoverflow.com/questions/779185/conflict-with-drawtext-function 0 Conflict with DrawText function Joe Corkery 2009-04-22T20:52:10Z 2009-04-22T21:23:56Z <p>I am developing a multi-platform application and in one component I have a class method called DrawText. Unfortunately, I get a linker error (on windows only) saying that there is an unresolved external symbol for a DrawTextW method of this class.</p> <p>I've seen this before with other methods ending in "Text" where it is looking for either a FooTextW or FooTextA method instead of the FooText method I defined. My assumption is that somewhere in the Windows headers there is a macro definition assigning FooText to FooTextW or FooTextA based on some other definition.</p> <p>Aside from renaming my function (which is what I did in the past), does anybody have any good ideas for getting around this issue?</p> <p>Thanks.</p> <p>Joe</p> http://stackoverflow.com/questions/305554/c-do-static-primitives-become-invalid-at-program-exit 4 C++: Do static primitives become invalid at program exit? Joe Corkery 2008-11-20T15:01:01Z 2008-11-21T03:28:15Z <p>Assume I have a function like this:</p> <pre><code>MyClass &amp;MyFunction(void) { static MyClass *ptr = 0; if (ptr == 0) ptr = new MyClass; return MyClass; } </code></pre> <p>The question is at program exit time, will the ptr variable ever become invalid (i.e. the contents of that ptr are cleaned up by the exiting process)? I realize that this function leaks, but it is only an example for simplicity.</p> <p>The same question also applies to other primitives besides pointers as well. How about if I have a static integer, does the value of that integer always persist throughout exit or is variable due to static destruction order issues?</p> <p>EDIT:</p> <p>Just to clarify, I want to know what actually happens to the contents of the static pointer (or any other primitive type like an int or a float) and not to the memory it is pointing to. For instance, imagine that the ptr points to some memory address which I want to check in the destructor of some other static class. Can I rely on the fact that the contents of the ptr won't be changed (i.e. that the pointer value won't be cleaned up during the static destruction process)?</p> <p>Thanks, Joe</p> http://stackoverflow.com/questions/285226/what-python-tools-can-i-use-to-interface-with-a-websites-api/285252#285252 2 Answer by Joe Corkery for What Python tools can I use to interface with a website's API? Joe Corkery 2008-11-12T20:35:12Z 2008-11-12T20:35:12Z <p>Python has a very nice httplib module as well as a url module which together will probably accomplish most of what you need (at least with regards to wget functionality).</p> http://stackoverflow.com/questions/269124/is-the-binary-data-i-convert-to-a-short-valid/269152#269152 0 Answer by Joe Corkery for Is the binary data I convert to a Short valid? Joe Corkery 2008-11-06T15:37:01Z 2008-11-06T16:01:14Z <p>The value of FFFF for a "short" is -1 but the value of FFFF for an "unsigned short" is 65536. </p> <p>In this case you should make sure you are using an unsigned short if you are sure that all of your values will be positive.</p> http://stackoverflow.com/questions/269081/is-it-possible-to-have-templated-classes-within-a-template-class/269171#269171 1 Answer by Joe Corkery for is it possible to have templated classes within a template class? Joe Corkery 2008-11-06T15:41:25Z 2008-11-06T15:41:25Z <p>This is a very common usage. </p> <p>You should make sure that the class M that is specified as the template parameter is fully declared before the creation of the first instance of class C. Perhaps you are missing a header file include or perhaps this is a namespace issue.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76476#76476 1 Answer by Joe Corkery for What is the single most effective thing you did to improve your programming skills? Joe Corkery 2008-09-16T20:17:26Z 2008-09-16T20:17:26Z <p>Working as a programming lab teaching assistant -- having to teach another person to code, particularly through example, really made a big difference in the quality of the code I wrote.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/76132#76132 0 Answer by Joe Corkery for What development book made the most impact on you as a developer? Joe Corkery 2008-09-16T19:41:58Z 2008-09-16T19:41:58Z <p>"Algorithms in C" (1st edition) by Sedgewick taught me all about algorithms as well as teaching me all about the pitfalls of documentation and copy/pasting code as all the example code in this version was taken from the "Algorithms in Pascal" version and were simply passed through a simple code translator which did not adjust for the different indexing schemes.</p> http://stackoverflow.com/questions/1505582/determining-32-vs-64-bit-in-c/1505631#1505631 Comment by Joe Corkery on Determining 32 vs 64 bit in C++ Joe Corkery 2009-10-02T14:52:29Z 2009-10-02T14:52:29Z Thanks, this is pretty close to what we were looking for. We'll add additional compiler options as we encounter them, but this covers 90% of cases right now. http://stackoverflow.com/questions/1103313/is-anybody-using-the-named-boolean-operators Comment by Joe Corkery on Is anybody using the named boolean operators? Joe Corkery 2009-07-09T13:41:00Z 2009-07-09T13:41:00Z I asked a related <a href="http://stackoverflow.com/questions/1069352/is-it-possible-to-turn-off-support-for-and-or-boolean-operator-usage-in-gcc" rel="nofollow" title="is it possible to turn off support for and or boolean operator usage in gcc">stackoverflow.com/questions/1069352/&hellip;</a> recently on how to control whether or not they supported by the compiler. Turns out its enabled by default in GCC and not so much in MSVC. http://stackoverflow.com/questions/1072272/best-fictional-users-for-test-data/1072331#1072331 Comment by Joe Corkery on Best Fictional Users for Test Data Joe Corkery 2009-07-02T04:03:33Z 2009-07-02T04:03:33Z +1 This is a great way to really stress test an application which may need to be internationalized as well. http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1044627#1044627 Comment by Joe Corkery on most professional way to tell a developer they are no good Joe Corkery 2009-06-25T15:44:08Z 2009-06-25T15:44:08Z That may be true in your industry, but in more specific niche areas of software development (say chemical or bio-informatics) it is a very small world and you definitely continue to encounter people long after either of you have left the place where you first interacted. http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003/1042094#1042094 Comment by Joe Corkery on Problem with regular expression replacement in Visual Studio 2003 Joe Corkery 2009-06-25T04:07:39Z 2009-06-25T04:07:39Z Ah... that is exactly the problem. Thank you very much. http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003 Comment by Joe Corkery on Problem with regular expression replacement in Visual Studio 2003 Joe Corkery 2009-06-25T03:49:04Z 2009-06-25T03:49:04Z I'm trying to replace this: The \emph{selection} language used in the application is ... with The <i>selection</i> language used in the application is ... http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003 Comment by Joe Corkery on Problem with regular expression replacement in Visual Studio 2003 Joe Corkery 2009-06-25T03:46:12Z 2009-06-25T03:46:12Z I'm not sure what you mean. http://stackoverflow.com/questions/1009520/any-way-to-bulk-load-a-qt-data-model-to-avoid-excess-signal-invocations/1012139#1012139 Comment by Joe Corkery on Any way to "bulk load" a Qt data model to avoid excess signal invocations? Joe Corkery 2009-06-19T01:50:40Z 2009-06-19T01:50:40Z If you know when you have reached the last change you can unblock the signal before you perform the operation and then would get just a single signal sent. http://stackoverflow.com/questions/927043/is-there-a-way-to-determine-if-a-top-level-qt-window-has-been-moved/927395#927395 Comment by Joe Corkery on Is there a way to determine if a top level Qt window has been moved? Joe Corkery 2009-05-31T05:19:58Z 2009-05-31T05:19:58Z The main window class of interest is part of a separately maintained set of code and as such can't trivially be subclassed to solve this problem. http://stackoverflow.com/questions/877699/default-construction-of-elements-in-a-vector/877720#877720 Comment by Joe Corkery on Default construction of elements in a vector Joe Corkery 2009-05-18T13:28:33Z 2009-05-18T13:28:33Z Well, it certainly has bit me a number of times where I forgot to initialize a bool only to discover different behaviors between Windows and Mac based on the default types. Also, interesting to note sizeof(bool) == 1 on Windows and 4 on a Mac. http://stackoverflow.com/questions/305554/c-do-static-primitives-become-invalid-at-program-exit/305575#305575 Comment by Joe Corkery on C++: Do static primitives become invalid at program exit? Joe Corkery 2008-11-20T15:17:50Z 2008-11-20T15:17:50Z Your comment about the value of the static int is what I was getting at as opposed to the fate of the memory. Do you know of any references which detail the guarantee of the value through the end? http://stackoverflow.com/questions/157759/how-can-i-determine-the-running-mac-os-x-version-programmatically/158164#158164 Comment by Joe Corkery on How can I determine the running Mac OS X version programmatically? Joe Corkery 2008-10-03T04:07:19Z 2008-10-03T04:07:19Z One of the reason's I am interested in determining which OS version is that support for hardware stereo visualization stopped functioning properly in Leopard, but continues to work in Tiger. Both versions indicate support for it, but only Tiger does it correctly.