User Nick McCowin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T19:35:12Zhttp://stackoverflow.com/feeds/user/52683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1145714/how-to-catch-ctrlc-key-event-with-qt-when-ctrl-is-released-before-c0How to catch Ctrl+C key event with Qt when Ctrl is released before 'C'?Nick McCowin2009-07-17T21:13:15Z2009-10-22T14:08:33Z
<p>I would like to call some custom copy code when the user releases Ctrl+C. When 'C' is released before Ctrl, Qt sends a key event that matches with <code>QKeySequence::Copy</code>. When Ctrl is released before 'C', the release event does not match.</p>
<p>When the key release event comes in with Ctrl, is there a way to see if 'C' is still being held down?</p>
<p>When I don't handle Ctrl being released first, the event gets passed along and it does a regular copy, which is exactly what I don't want to happen.</p>
<pre><code>bool
MyWidget::eventFilter(QObject* object, QEvent* event)
{
// the text edit box filters its events through here
if (object == m_text_edit_box)
{
if (event->type() == QEvent::KeyPress)
{
QKeyEvent *key_event = static_cast<QKeyEvent*>(event);
if (key_event->matches(QKeySequence::Copy))
{
// don't do anything and don't pass along event
return true;
}
}
else if (event->type() == QEvent::KeyRelease)
{
QKeyEvent *key_event = static_cast<QKeyEvent*>(event);
if (key_event->matches(QKeySequence::Copy))
{
// we only get in here if 'c' is released before ctrl
callCustomCopy();
return true;
}
}
}
// pass along event
return false;
}
</code></pre>
http://stackoverflow.com/questions/1122785/how-to-force-visual-studio-preprocessor-case-sensitivity-with-includes3How to force Visual Studio preprocessor case sensitivity with #includes?Nick McCowin2009-07-14T00:05:15Z2009-07-14T00:33:17Z
<p>If you have a header file named ThisIsAHeaderFile.h, the following will still locate the file in Visual Studio:</p>
<pre><code>#include <ThisIsAheaderFile.h>
</code></pre>
<p>Is there a way to enforce case sensitivity so that the #include will result in an error?</p>
http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/927405#9274053Answer by Nick McCowin for How to get intellisense to reliably work in Visual Studio 2008Nick McCowin2009-05-29T18:18:46Z2009-05-29T18:50:09Z<p>It looks like there's hope on the horizon for those of us unable to obtain Visual Assist:</p>
<p><a href="http://blogs.msdn.com/vcblog/archive/2009/05/27/rebuilding-intellisense.aspx" rel="nofollow">Rebuilding Intellisense</a></p>
http://stackoverflow.com/questions/918668/how-can-i-redefine-a-built-in-keyboard-shortcuts-behavior1How can I redefine a built in keyboard shortcut's behavior?Nick McCowin2009-05-28T00:41:37Z2009-05-29T13:45:21Z
<p>I am attempting to re-implement the Copy behavior for a QTextEdit object. The custom context menu I create works as expected when the 'Copy' button is clicked, but Ctrl+C isn't being handled correctly. Since the context menu doesn't have any issues, I'll omit that portion of the code.</p>
<pre><code>// Create a text edit box for text editing
QTextEdit text_edit_box = new QTextEdit(getBaseWidget());
text_edit_copy_action = new QAction(QString("Copy"), getBaseWidget());
text_edit_copy_action->setShortcut(QKeySequence::Copy);
// Add custom copy action to the text edit box to ensure Ctrl+C uses our copy
// implementation
text_edit_box->addAction(text_edit_copy_action);
</code></pre>
<p>When I set the shortcut to be an unused key combination (e.g., Ctrl+Q) it works fine. It seems Ctrl+C is being handled differently since it's "built in".</p>
http://stackoverflow.com/questions/808215/is-there-a-data-structure-that-doesnt-allow-duplicates-and-also-maintains-order1Is there a data structure that doesn't allow duplicates and also maintains order of entry?Nick McCowin2009-04-30T17:50:38Z2009-04-30T19:06:50Z
<p><strong>Duplicate:</strong> <a href="http://stackoverflow.com/questions/769097/choosing-a-stl-container">http://stackoverflow.com/questions/769097/choosing-a-stl-container</a></p>
<p>I'm looking for a data structure that acts like a set in that it doesn't allow duplicates to be inserted, but also knows the order in which the items were inserted. It would basically be a combination of a set and list/vector.</p>
<p>I would just use a list/vector and check for duplicates myself, but we need that duplicate verification to be fast as the size of the structure can get quite large.</p>
http://stackoverflow.com/questions/508033/convert-tabs-to-spaces-in-a-net-string/508242#5082421Answer by Nick McCowin for Convert tabs to spaces in a .Net stringNick McCowin2009-02-03T18:06:48Z2009-02-03T18:06:48Z<p>I think what you mean to say is you'd like to replace tabs with the effective amount of spaces they were expanded to. The first way that comes to mind doesn't involve regular expressions (and I don't know that this problem could be solved with them).</p>
<ul>
<li>Step through the string character by character, keeping track of your current position in the string.</li>
<li>When you find a tab, replace it with N spaces, where <code>N = tab_length - (current_position % tab_length)</code>.</li>
<li>Add N to your current position and continue though the string.</li>
</ul>
http://stackoverflow.com/questions/808215/is-there-a-data-structure-that-doesnt-allow-duplicates-and-also-maintains-order/808248#808248Comment by Nick McCowin on Is there a data structure that doesn't allow duplicates and also maintains order of entry?Nick McCowin2009-04-30T19:57:00Z2009-04-30T19:57:00ZGreg's solution in the duplicate question doesn't seem to require the wrapper. Thanks for pointing me in the most pain free direction, though.