[Interest] mysql not connecting

2012-06-27 Thread Sujan Dasmahapatra
I am getting this error when executing my application error while loading shared libraries: libmysqlclient_r.so.14: cannot open shared object file: No such file or directory libmysqlclient_r.so.14 is already there in /usr/lib/mysql folder. What else could be the problem pls help.

[Interest] qmake: Building a shared object which is not a lib

2012-06-27 Thread Christian Gagneraud
Hi there, I would like to build a shared object (PySide module) using qmake. My first attempt was to use TEMPLATE=lib, which worked except that I have no control on the name of the output file. Is there a way to override the name of the generated shared object file? Basically using

Re: [Interest] mysql not connecting

2012-06-27 Thread Sujan Dasmahapatra
Yes I have just executed export LD_LIBRARY_PATH=/usr/lib/mysql:$LD_LIBRARY_PATH ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Fonts not rendering!

2012-06-27 Thread Konstantin Tokarev
27.06.2012, 19:06, Lata Agrawal lata.agra...@enrouteinc.com: Hi, I am working with an Embedded Linux/MIPS device. It has qt-4.6.2 libs compiled using gcc-4.2.4 installed on it. LD_LIBRARY_PATH is set appropriately. I tried running a simple QT app with a button on device. The app runs

Re: [Interest] qmake: Building a shared object which is not a lib

2012-06-27 Thread Andreas Pakulat
Hi, Am Mittwoch, 27. Juni 2012 schrieb Christian Gagneraud : On 27/06/12 12:32, Mandeep Sandhu wrote: On Wed, Jun 27, 2012 at 4:29 PM, Christian Gagneraud ch...@techworks.iejavascript:; wrote: Hi there, [...] If you build a plugin, then the version links are not created, and

Re: [Interest] qmake: Building a shared object which is not a lib

2012-06-27 Thread Christian Gagneraud
On 27/06/12 18:26, Andreas Pakulat wrote: Hi, Am Mittwoch, 27. Juni 2012 schrieb Christian Gagneraud : On 27/06/12 12:32, Mandeep Sandhu wrote: On Wed, Jun 27, 2012 at 4:29 PM, Christian Gagneraud ch...@techworks.ie javascript:; wrote: Hi there, [...]

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Till Oliver Knoll
Am 27.06.2012 um 19:03 schrieb Eric Clark ecl...@ara.com: Hello All, ...QFileDialog::getExistingDirectory(…) and pass in a default directory to open to, the native dialog does open to the correct directory. However, the tree in the left-hand pane of the Windows dialog does not expand

Re: [Interest] Fonts not rendering!

2012-06-27 Thread Atlant Schmidt
Lata: Desktop grep -i 'q[sp]f' QScrollLabelLog.txt stat64(/tmp/qtembedded-0//fonts/dejavu_sans_12_75.qsf, {st_mode=S_IFREG|0644, st_size=17284, ...}) = 0 stat64(/tmp/qtembedded-0//fonts/dejavu_sans_12_50.qsf, {st_mode=S_IFREG|0644, st_size=18600, ...}) = 0

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Eric Clark
Oliver, Thanks for your suggestion. I didn’t think to look at that because I have been used to seeing the Windows Vista and XP file dialogs for so long and those ones do expand, but there is no left pane when it is a directory browsing dialog. Therefore, I looked at the way it works in Visual

[Interest] QTabWidget/QTabBar allowing user to edit tab names

2012-06-27 Thread Carl Schumann
Qt community. I would like to allow the user to edit tab names in my application, e.g., by right-clicking and then being given a text field to enter the new name. How would this best be done please? Thanks for any help. Sincerely, Carl Schumann

Re: [Interest] QTabWidget/QTabBar allowing user to edit tab names

2012-06-27 Thread Bill Crocker
On 06/27/2012 05:02 PM, Carl Schumann wrote: Qt community. I would like to allow the user to edit tab names in my application, e.g., by right-clicking and then being given a text field to enter the new name. How would this best be done please? Thanks for any help. What have you tried?

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Tony Rietwyk
Hi Eric, There is a Windows Explorer option to synchronise the left hand tree with the currently selected folder on the right. I'm pretty sure the default is switched off. I have no idea where I found the option though! Explorer is s buggy. I wish MS would hurry up and fix the

Re: [Interest] Fonts not rendering!

2012-06-27 Thread Lata Agrawal
Thanks Atlant for the time and info you have provided here. I will follow what you have recommended and hopefully be able to solve the problem. Thanks again and best regards, Lata On 28 June 2012 00:33, Atlant Schmidt aschm...@dekaresearch.com wrote: Lata: Desktop grep -i 'q[sp]f'

Re: [Interest] Most direct path to using a QComboBox to edit a cell in a QTableView?

2012-06-27 Thread K. Frank
Hello Tony! Thanks for your pointers on how to hook the delegates and views together. At the moment it looks like things are working the way I want. On Tue, Jun 26, 2012 at 10:06 PM, Tony Rietwyk t...@rightsoft.com.au wrote: Hi Frank, ... And how, specifically, do I associate a delegate with

[Interest] Where are the USER properties of Qt-provided QObjects documented?

2012-06-27 Thread K. Frank
Hi List! Where in the documentation (not the source code) can I find out which of the properties of a standard Qt QObject class is the designated USER property? By way of example, when I look at the documentation for QComboBox, I see nothing that indicates which property is the USER property.