
Qt Widgets by un-defined 33 comments

Qt Widgets by un-defined 33 comments
Regards
- Mehdi - Apr 14 2011

Qt Widgets by un-defined 33 comments
is the project still alive? Seems like it hasn't been updated since 2008 which is a tremendously long time in the FOSS universe. :-)
Is there a chance you'll bring the stuff in sync with the latest KPart terminal module?
Regards
- Mehdi - Apr 13 2011

Developers Apps by momesana 15 comments
first of all thank you for using QRegExp-Editor and your feedback. We'll look into the issue shortly.
Recently we set up a project page for QRegExp-Editor on sourceforge. It can be found here:
http://sourceforge.net/projects/qregexp-editor
The bugtracker is already working and I would appreciate if you create a proper bug report there, so we have it documented and can track it and notify you when it is resolved. You can also make feature-requests there.
It would also be important to know which version of QRegExp-Editor the bug pertains to. You should always try out the latest stable version. There are currently no installers for Windows but this will change in the next few days.
Best regards - Feb 18 2011

Qt Components by JPNaude 1 comment
the project seems to be licensed under GPL. I think LGPL should also be added to the list of licenses if that is not the case yet. LGPL suits libs very well and would increase the adoption of Qtilities.
Best regards - Oct 08 2010

Developers Apps by momesana 15 comments
unfortunately there is no mailing list since I didn't expect any feedback.
Regarding the issue, I couldn't reproduce it (which does not mean that there is no issue) so it would be kind if you tell me which version of Qt you are using.
I'll change the code and add qDebug() instructions so the matches can be written to the console. That would give us some useful hints as to where to find the bug.
I'll also send you a private message with my email address and messenger ID's so we can debug this together if you like :-).
Best regards
- Mehdi Salem Naraghi. - Jun 08 2010

Developers Apps by momesana 15 comments
first of all thanks for reporting the bug. The crash is due to your regexp matching the empty string, so a regular expression like [te]? would lead to an infinite loop since it will match 1 or _zero_ occurrences of t or e. Here is a minimal compiling example showing that:
#include <QtCore>
#include <QDebug>
int main()
{
QRegExp rx("[te]?");
QString text("text");
int pos = 0;
int loopCnt = 0;
while((pos = rx.indexIn(text, pos)) != -1) {
Q_ASSERT(loopCnt++ < 10);
qDebug() << "pos:" << pos << " cap(0):" << rx.cap(0) << " len:" << rx.matchedLength();
pos += rx.matchedLength();
}
}
Of course this shouldn't crash this application so I fixed that bug. Now if you happen to match the empty string the application will abort evaluating the regexp and display a warning to make you aware of that. - May 18 2010

Developers Apps by momesana 15 comments
thanks for the feedback. Unfortunately you didn't provide enough information for me to reproduce the crash. I've just tested this text:
5.3cm 422inch 76 89.3
21.256 3.4CM
98756456789756746574897456465465.45676MM
8.4?
against this regexp:
(\d+(\.\d+)?)(cm|inch|mm)?(?:\?)?
but this didn't result in a crash even though there are plenty of ? signs in there. Here is the result: http://img17.imageshack.us/img17/223/regexpeditor.jpg
It would be very kind if you provided one or two use-cases where the application crashes on your system (that is the regexp and the parsed text) so I can verify that bug and hopefully debug the app.
Thanks in advance - May 17 2010

KDE 3.x Window Decorations by dralgebra 175 comments
Since I first saw the crystal windec on a friend's desktop many months ago (I think real transluceny was not even supported on X then), I have been waiting for the crystal theme to support real Translucency.
Not seeing the windows beneath the Crystal-windowdecoration-frame opposes its very purpose, since this is to immitate the natural behaviour of Glas.
I will not use crystal until it supports real translucency but when it does, I will switch to it and never look back!!! - Apr 20 2005

KDE 3.x Window Decorations by dralgebra 175 comments
Since I first saw the crystal theme on a friend's Desktop many months ago (I think real transluceny was not even supported on X then), I have been waiting for the crystal theme to support real Translucency.
Not seeing the windows beneath the Crystal-windowdecoration-frame opposes its very purpose, since this is to immitate the natural behaviour of Glas.
I will not use crystal until it supports real translucency but when it does, I will switch to it and never look back!!! - Apr 20 2005

Cursors by velenux 19 comments
xrdb $HOME/.Xresources to the ~/.xinitrc file in order to make X look for the cursor resources defined in .Xresources but it didn't help either.
So, is anyone outthere who has been able to manage this cursers to become smaller in some way? and if yes, then How?
please email me at momesana@yahoo.de or vp_admin@virtualpersia.org.
thanks in advance, momesana! - Jul 26 2003