[Interest] pySide for QT5

2013-05-15 Thread Sergey
Hi, When pySide for QT5 will be available? -- Sergey ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QML combobox in ListView delagate

2013-05-13 Thread Sergey
over below rows. Is there a way to tell QML engine to display drop down menu over all ListView rows in any case? -- Sergey ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] view examples\declarative\cppextensions\qwidgets\qwidgets.qml using pySide or PyQt4

2013-05-13 Thread Sergey
QML using qmlRegisterType(). You can refer to this post on how to do it. :) http://qt-project.org/forums/viewthread/7616 Regards, Wesley On Thu, May 2, 2013 at 1:42 AM, Sergey <mailto:sh0...@gmail.com>> wrote: Hi, I've downloaded and installed ftp://ftp.qt.nokia.co

[Interest] view examples\declarative\cppextensions\qwidgets\qwidgets.qml using pySide or PyQt4

2013-05-01 Thread Sergey
QWidgets" has no qmldir and no namespace Same problem if use PyQt4. Is it possible to embed QWidget-based objects into QML in pySide or PyQT4? -- Regards, Sergey ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Excel-like grid of numbers in QML

2013-04-11 Thread Sergey
Hi, Is it possible to create Excel-like grid with numbers using QML? So that it would be possible to hide/show rows, recount values, put checkboxes in some cells? Any information, hints, urls would be a help. -- Regards, Sergey ___ Interest mailing

[Interest] CSS with QML

2013-04-10 Thread Sergey
Hi, Is it possible to add CSS file to QML in QT? -- Regards, Sergey ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qwt and upgrading to Qt 5

2013-04-10 Thread Sergey Popov
these issues seems not to be really hard to resolve, but it's better to be ready to spend some time for successful migration to new version of these beautiful libraries. Good luck! -- with best regards, Sergey P. phone: +380687507707 skype: uazure jabber: az...@jab

Re: [Interest] QSqlTableModel - table name issue in Postresql

2013-04-08 Thread Sergey Borovkov
SQL is not case sensitive unless you use quotes. So since you created tables with mixed lower and upper case there is no other choice but to quote them (or name your tables in lower case separated by underscores which is more common I believe). On Sat, Apr 6, 2013 at 4:30 PM, Muhammad Bashir Al-No

Re: [Interest] MacOS 10.4 + QT 4.7.4 + my app linking error

2012-11-28 Thread Sergey
After linking with zlib and CoreFoundation framework, these functions are still not found: _FrontWindow _GetCurrentProcess _SelectWindow _SetFrontProcess _ShowWindow What must I link additionally? 28.11.2012 9:28, Lincoln Ramsay wrote: > > I seem to recall Mac apps needing to explicitly link to

[Interest] explore contents of built in qmake variables

2012-11-27 Thread Sergey
Hi, is there a way to find out total contents of QT_CONFIG, CONFIG qmake variables? Are they arrays? Can I somehow print their contents? I know how to test, if config contains something, for example: contains(QT_CONFIG, system-zlib) : message("system-zlib") But how to print ALL CONTENTS of QT

Re: [Interest] MacOS 10.4 + QT 4.7.4 + my app linking error

2012-11-27 Thread Sergey
must I link additionally to find them? 27.11.2012 17:16, Konstantin Tokarev wrote: > > 27.11.2012, 17:15, "Sergey" : >> I didn't link with zlib at all. >> I solved problem adding this line to the pro file: >> >> include(...qt/4.7.4/qt-everywhere-opensour

Re: [Interest] MacOS 10.4 + QT 4.7.4 + my app linking error

2012-11-27 Thread Sergey
ke install" does not copy source files to the installation folder. Is there a way to confugure qt build process so that source files would be placed to the $$[QT_INSTALL_PREFIX]/SRC? 27.11.2012 16:26, Michael Jackson wrote: > On Nov 27, 2012, at 6:04 AM, Sergey wrote: > >> Hello

[Interest] MacOS 10.4 + QT 4.7.4 + my app linking error

2012-11-27 Thread Sergey
Hello, I built QT 4.7.4 on MacOS 10.4 Tiger. When I build my app, I get this error while linking: /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ld: for architecture i386 /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ld: Undefined symbols: _CFDataGetBytePtr _CFDataGetLength _CFDataGetTypeID _CFGetTypeID _

[Interest] configure QT 4.7.4 with jpeg plugin

2012-11-21 Thread Sergey
Hello, I configure QT 4.7.4 using this command: configure -opensource -debug-and-release -platform win32-msvc2008 -static -no-crt -no-phonon -no-qt3support -nomake examples -nomake demos -openssl-linked -qt-libtiff -qt-libjpeg -qt-gif -qt-libpng -qt-libmng -qt-zlib -qt-sql-odbc -qt-sql-sqlite

[Interest] debug QtService

2012-11-07 Thread Sergey
Hello, all I'm developing windows web service using QtService. To debug it, I launch program in VS2005 debugger with -e argument. It starts in console mode and handles requests. How can I emulate stopping the service, so that all code, which is working usually when windows stops the service? I w

Re: [Interest] Heavily Commented Example: Simple Single Frontend with Two Backends

2012-10-23 Thread Sergey Borovkov
I did some googling and found this http://lists.qt.nokia.com/pipermail/qt4-feedback/2009-October/000880.html - you are saying that it's ok to use volatile on x86_64 here since there is no actual synchronization here. Or am I missing something here and cases are different? Sorry for nitpicking, I am

Re: [Interest] [QtQuick] A couple of questions regarding focus

2012-09-12 Thread Sergey Borovkov
Try to search in Qt bugzilla... I think there were lots of bugs connected with focus and workarounds about them. Also about you first question - I think you need to manually track focus to know which item has it On Wed, Sep 12, 2012 at 7:21 PM, Preet wrote: > Hiya, > > I'm having trouble giving

Re: [Interest] Qt Events/Signals and Loops (while ... for..)

2012-08-29 Thread Sergey Borovkov
No, he means you don't need infinite loop. Read about Qt event system to get understanding about your problem On Wed, Aug 29, 2012 at 6:56 PM, Abhishek wrote: > do you mean return statement after my loop ? like while(x==true){..} > return; > > but I have while(x == true) { ... } which I want to

[Interest] qt plugins path for QtBrowserPlugin

2012-05-24 Thread Sergey
g-Ins or in /Library/Internet Plug-Ins So I need to call qApp->setLibraryPath( + "~/Library/Internet Plug-Ins/my.plugin/Contents/Plugins"); How can I find out location of safari plug-in, if applicationDirPath() gives location of safari app, not location of its plug-in? -- Sergey

[Interest] qInstallMsgHandler in QAxServer

2012-04-25 Thread Sergey
Hello, Is it possible to call qInstallMsgHandler in my qaxserver in-process server before creating exported controls? So that message handler would write to log file all information from the moment of loading activex dll into memory? -- Sergey

[Interest] self-register qaxserver in HKEY_CURRENT_USER\Software\Classes\CLSID instead of HCR\CLSID

2012-04-03 Thread Sergey
Hello, Is it possible somehow to tune qaxserver so that it would register itself in HKEY_CURRENT_USER\Software\Classes\CLSID instead of HCR\CLSID? I need it so that non-privileged user could register my ActiveX. -- Thanks ___ Interest mailing list

[Interest] -MT and static QT

2012-04-03 Thread Sergey
r Qt either, since it is likely to cause problems. If I use -MT, how can I detect if there are problems with memory in my app, they are writing about? -- Sergey ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] debug QtBrowserPlugin

2012-03-14 Thread Sergey
Hello, How to debug QtBrowsePlugin application, so that I could step by each line of code in Visual Studio? If my Plugin crushes in browser, how to find line of code, where crush happens? -- Thanks ___ Interest mailing list Interest@qt-project.org ht

[Interest] qtbrowserplugin-2.3-opensource\examples\trivial

2012-03-13 Thread Sergey
Hello, I've downloaded qtbrowserplugin-2.3-opensource Built qtbrowserplugin-2.3-opensource\examples\trivial into release\nptrivial.dll How to install nptrivial.dll as plugin into FireFox, Chrome? -- Thanks ___ Interest mailing list Interest@qt-project.

[Interest] embed any ActiveQt example into IE webpage

2012-03-07 Thread Sergey
Hi, list I'm trying to write sample ActiveX on QT and embed it into html webpage for IE. I have created in Visual Studio 2005: File-New-Project-Qt4 Projects-ActiveQT server Built project. Got dll. Added path with QT dlls to system path variable. called regsvr32 tetrix.dll created html page:

[Interest] QT 4.5.3 on Lion MacOS

2012-02-29 Thread Sergey
Hello, My QT application was built on MacOS 10.4 (Tiger) Tiger is installed on my Mac-Mini computer, used for building program releases. One of the program users installed program on MacOS Lion. Jpeg images in program on Lion MacOS have corrupted colors. So now I need to debug and solve this pro