Harald Scheirich

2,146
Reputation
166 views

Registered User

Name Harald Scheirich
Member for 1 year
Seen 44 mins ago
Website
Location Washington, DC
Age 42
SW Engineer by trade ...
Nov
26
comment How to receive drag and drop from Apple Address book in Qt 4.4 on Mac OS X 10.5/10.6
QMacMimeData is implemented in src/gui/kernel/qclipboard_mac.cpp sometimes they rely on their "gut feeling" too much
Nov
23
answered Game engines for iPhone vs. native iPhone sdk development
Nov
23
answered Unity vs Torque game engines and IDE environment
Nov
13
answered Memory Leak Analysis
Nov
12
awarded  Scholar
Nov
12
asked QSqlDatabase::transaction and other open transaction, block or fail ?
Nov
6
comment Missing/desired features in Notepad++
Xenu I would love to get rid of crimson, I use Notepad++ all the time (v.5.3.1) right now, the cool thing about the crimson column mode is then when you do a column select the selection acts just like a normal select would but on columns, this includes becoming a column insert cursor when you type, making column editing incredibly easy. The NP++ mode overwrites the selected text (unless I am doing something completely wrong), crimson extends the linear way of selection/editing to the columns Try it out ...
Nov
3
comment Missing/desired features in Notepad++
Still not the same, it will probably work in a pinch but the crimson functionality works so seamless within the editor (no popups), i have been keeping crimson around just for this
Nov
3
answered Flash games hack, score is 49700?? How to improve flash games security?
Oct
31
comment Why is C and C++ IDE tool support behind what’s available for managed platforms?
C'mon that is just a useless remark. Every tool has it's purpose, if you want to stick with your text editor good for you, but a lot of the IDE's feature move our craft (yes craft) one step up from just typing code
Oct
31
comment Why is C and C++ IDE tool support behind what’s available for managed platforms?
As to vs2010 they brought in an external parser just for the IDE. As to complexity, include files, macros and template objects all have to be taken into account too
Oct
30
revised Python PyQT4 - Adding an unknown number of QComboBox widgets to QGridLayout
corrected links, again ...
Oct
30
answered Python PyQT4 - Adding an unknown number of QComboBox widgets to QGridLayout
Oct
29
answered For consistent tempo on iPhone, is there a better solution than system sounds?
Oct
27
accepted OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS
Oct
27
revised OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS
edited tags
Oct
27
answered OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS
Oct
27
answered In Qt, create a table with an blank editable row
Oct
11
accepted General printing raster and/or vector images
Oct
10
answered General printing raster and/or vector images
Oct
8
answered Create database in QT
Oct
8
revised Create database in QT
Corrected indenting of sample code
Sep
27
revised Persistence classes in Qt
Added link
Sep
27
answered Persistence classes in Qt
Sep
26
awarded  Yearling
Sep
13
comment Qt QPushbutton Icon above Text
subclassing just for formatting is usually not worth the effort. A lot can be done just by applying styles. And while the documentation on the styles could be better, it works reasonably well and usually as expected.
Sep
13
comment Parse config file in C/C++
I have found the overhead of not necessarily the parsing but the binding of xml files to the data not worth the effort for simple configuration files. If you have something that creates the bindings it is a different matter.
Sep
10
comment How signal and slots are implemented under the hood ?
Basically correct, you can set a breakpoint at the the emit and then step through the signalling process. While usually delivered directly, signals mayb be queued, this is necessary when you want to connect two objects in different threads
Sep
6
awarded  
Sep
5
answered Do warnings matter?
Sep
3
comment Qt model’s tree view and table view
if you post your code here it becomes searchable and for all to see
Sep
3
revised Qt model’s tree view and table view
Added code
Sep
2
comment How to efficiently select a subset of rows of a QTableView that match certain criteria?
The QAbstractItemModel supports a function called match, it will do the searching for you, and returns a list of QModelIndex entries
Sep
2
answered Can I make NSManagedObject into a singleton?
Aug
30
answered Qt model’s tree view and table view
Aug
30
comment How to show a big image on the iPhone (without overflowing the memory)?
No to create the tiles you would either have to load the whole image into memory, which is what you are trying to prevent, or have them in a format where you can determine the location of a pixel in the file from its location on the screen, which you can't easily with JPG (i don't know if you can at all)
Aug
29
comment How to show a big image on the iPhone (without overflowing the memory)?
Depends what you mean by "do this on the iPhone". The description of your app is a little bit vague. If you store the images on the phone then you can as well prepare the tiles. If you store the images on a server the you would have to make your server serve the tiles as opposed to a whole image
Aug
28
answered How to show a big image on the iPhone (without overflowing the memory)?
Aug
28
revised list of object types for iphone sdk programming
added 1 characters in body
Aug
28
answered QT Application Performance vs. WinAPI/MFC/WTL/…
Aug
28
comment QT Application Performance vs. WinAPI/MFC/WTL/…
While the signal and slot mechanism might seem fast, it is definitely not light weight, one signal connected to one slot causes 3-4 if not more function calls, step through the thing and you will see.
Aug
27
answered list of object types for iphone sdk programming
Aug
25
revised QTableView - not allow user to edit cell
corrected namespaces for the constants
Aug
25
accepted QTableView - not allow user to edit cell
Aug
25
answered QTableView - not allow user to edit cell
Aug
25
accepted QT Database Interface… best place to get started?
Aug
24
answered QT Database Interface… best place to get started?
Aug
23
answered Tangible benefits of Use Case Modelling
Aug
23
comment Can’t make empty selection in NSTableView
Sorry to say this but then what do you expect by asking a question about an operating system that has not been released yet, and which you are under an NDA about.
Aug
20
comment Jdesktop or Qt for better Desktop application
I think they relying on community input for jambi now, iirc i saw something about this a couple of months ago, but i can't find the appropriate link. On a side note I would not call having to write c++ a 'con', it is as much of a con as something else written in java if you don't use java in general