Re: [Interest] Qt Assistant can't search

2012-03-13 Thread David Ching
> Ah, hah! You do it from a terminal window, with a command-line option. > On a Macintosh, since the .app is really a bundle directory, you do something like this: > >cd /qtbuild/install/macosx/bin/Assistant.app/Contents/MacOS >./Assistant -rebuild-search-index That's better than the hack I sugge

Re: [Interest] Qt Assistant can't search

2012-03-13 Thread John Weeks
On 13-Mar-2012, at 5:01 PM, John Weeks wrote: > Or maybe there's a secret way to make Assistant rebuild its index. Ah, hah! You do it from a terminal window, with a command-line option. On a Macintosh, since the .app is really a bundle directory, you do something like this: cd /qtbuild/instal

Re: [Interest] Qt Assistant can't search

2012-03-13 Thread David Ching
>Thanks, David. That's what I tried. I tried removing everything and adding it back. > I tried removing everything, closing Qt Assitant, re-starting Assistant and adding >everything back. I tried it more than once, and with some details thrown in like >setting it to a blank page before removing eve

Re: [Interest] Qt Assistant can't search

2012-03-13 Thread John Weeks
Thanks, David. That's what I tried. I tried removing everything and adding it back. I tried removing everything, closing Qt Assitant, re-starting Assistant and adding everything back. I tried it more than once, and with some details thrown in like setting it to a blank page before removing every

Re: [Interest] QML and C++ types mapping

2012-03-13 Thread STEFANI Mathieu
Investigating with the QMetaObject and QMetaMethod, I figured out that the correct corresponding signal was clicked(QDateTime) and not clicked(QDate). By using QDateTime instead of QDate, it just works as expected. From: interest-bounces+mathieu.stefani=supinfo@qt-project.org [mailto:intere

Re: [Interest] Receive screen rotate/resize events?

2012-03-13 Thread Lincoln Ramsay
On 03/14/2012 06:42 AM, ext g4hx wrote: > Thanks for the help. I have to admit that I overlooked this part of the > documentation. However, there is one problem: If I call showFullScreen() > on my widget, then any call to resize() is ignored. So even though I > receive resized() or workAreaResized

Re: [Interest] Qt Assistant can't search

2012-03-13 Thread David Ching
>Date: Tue, 13 Mar 2012 13:21:56 -0700 >From: John Weeks >Subject: [Interest] Qt Assistant can't search >To: interest@qt-project.org >Message-ID: <7a4bd766-dd20-4918-b57d-89d06e372...@wavemetrics.com> >Content-Type: text/plain; charset="us-ascii" > >I have recently installed Qt 4.8 on my Macintosh

Re: [Interest] Receive screen rotate/resize events?

2012-03-13 Thread g4hx
On 03/12/2012 12:50 AM, Lincoln Ramsay wrote: > On 03/12/2012 02:46 AM, ext g4hx wrote: >> When I rotate the screen, an X11 event of type > ... >> is created. However, none of the available toolkits that I know >> (qt3/4/gtk) picks up the event. So once the screen is rotated, my widget >> is not sp

[Interest] Qt Assistant can't search

2012-03-13 Thread John Weeks
I have recently installed Qt 4.8 on my Macintosh, and now Qt Assistant can't search for anything. The documentation is clearly all there (I've been reading it) but searches give a big "Your search did not match any documents." message. I even got that when I tried to search for "QWidget". Huh.

Re: [Interest] QTextEdit and Style sheets

2012-03-13 Thread Christoph Feck
On Tuesday 13 March 2012 16:52:21 André Somers wrote: > Op 13-3-2012 16:45, Graham Labdon schreef: > > Hi everyone > > > > Solved this! > > > > edit->setStyleSheet("background-image:url(:/images/bg.jpg)"); > > > > QPalettepalette=edit->palette(); > > > > palette.setBrush(QPalette::Base,Qt::NoBr

Re: [Interest] QTextEdit and Style sheets

2012-03-13 Thread André Somers
Op 13-3-2012 16:45, Graham Labdon schreef: Hi everyone Solved this! edit->setStyleSheet("background-image:url(:/images/bg.jpg)"); QPalettepalette=edit->palette(); palette.setBrush(QPalette::Base,Qt::NoBrush); edit->setPalette(palette); Please report this as a bug. I think that setting a ba

Re: [Interest] QTextEdit and Style sheets

2012-03-13 Thread Graham Labdon
Hi everyone Solved this! edit->setStyleSheet("background-image: url(:/images/bg.jpg)"); QPalette palette = edit->palette(); palette.setBrush(QPalette::Base,Qt::NoBrush); edit->setPalette(palette); From: interest-bounces+graham.labdon=avalonsciences..

[Interest] Ping: QtonPi accepted developers

2012-03-13 Thread quim.gil
Hi, this is a reminder to the developers listed at http://wiki.qt-project.org/QtonPi/Device_program/Accepted Missing a CODE SENT or OK flag. We need your confirmation. Please follow the instructions at the top of the page. Your help is appreciated scanning the page and pinging / forwarding this

[Interest] Qt Project Server Maintenance - Thursday March 15, 08:00 - 08:30 CET

2012-03-13 Thread Matias Rand
Hi, Our hosting provider need to do a quick update on some of our servers related to qt-project.org. The affected services are: * Gerrit / Code Review - http://codereview.qt-project.org/ * Mailing lists - http://lists.qt-project.org/ * Wiki - http://wiki.qt-project.org/ The services will be

Re: [Interest] Using dmalloc with Qt!

2012-03-13 Thread Bo Thorsen
Den 13-03-2012 13:35, Lata Agrawal skrev: > Thanks for replying. You mean I should port my QT application to > Linux/x86 and then then analyze it with Valgrind. That is one option but > there is media player which I am using to play media files which I can > only use on Linux/MIPS device. So will n

Re: [Interest] Using dmalloc with Qt!

2012-03-13 Thread Lata Agrawal
Thanks for replying. You mean I should port my QT application to Linux/x86 and then then analyze it with Valgrind. That is one option but there is media player which I am using to play media files which I can only use on Linux/MIPS device. So will not be able to get memory leaks from this media pla

Re: [Interest] Using dmalloc with Qt!

2012-03-13 Thread Diego Iastrubni
On Tue, Mar 13, 2012 at 1:21 PM, Lata Agrawal wrote: > I am writing a QT application which runs on Linux/MIPS platform. I want to > use a memory detector tool for my QT application. After going through this > link , > I understan

[Interest] Using dmalloc with Qt!

2012-03-13 Thread Lata Agrawal
I am writing a QT application which runs on Linux/MIPS platform. I want to use a memory detector tool for my QT application. After going through this link , I understand that *dmalloc* would be the one which I can use. I am not su

Re: [Interest] Program exiting with code -1073741511

2012-03-13 Thread Ian Thomson
This website has some information: http://www.lmgtfy.com/?q=1073741511 On 13/03/12 10:57, Sujan Dasmahapatra wrote: > I am building my application in Qt-creator. Built is successful. When I > am trying to run it it’s giving errors. Can u help me whats going wrong. > > Error : > > *Starting C:\D

[Interest] Program exiting with code -1073741511

2012-03-13 Thread Sujan Dasmahapatra
I am building my application in Qt-creator. Built is successful. When I am trying to run it it's giving errors. Can u help me whats going wrong. Error : Starting C:\Documents and Settings\sdh\My Documents\STUREC_DATABASE\STUREC\debug\STUREC.exe... The program has unexpectedly finished. C:\Do

Re: [Interest] QTextEdit and Style sheets

2012-03-13 Thread Graham Labdon
Hi everyone There seems to be a bug with setting a background image in QTextEdit under windows - This line of code does not work - edit->setStyleSheet(background-image: url(:/images/bg.jpg)"); However, this does (NB the background color is not shown as red) edit->setStyleSheet("background-color:

Re: [Interest] [ Missing pixels when using drawLine ]

2012-03-13 Thread ashish raste
*Hi Christoph, * > https://bugreports.qt-project.org/browse/QTBUG-23430 > > As a workaround, use drawPixel() for single-pixel "lines". > > As you have suggested, drawPixel() would work for single-pixel lines, but for different pen-widths the drawing isn't continuous. I wanted to know whether by h

[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.

Re: [Interest] [ Missing pixels when using drawLine ]

2012-03-13 Thread Christoph Feck
On Tuesday 13 March 2012 08:28:04 ashish raste wrote: > *Dear all, > > Recently I worked on a paint application, where I implemented a > function to draw whatever a user is scribbling on an image. In the > mouseMove event, I called a function to draw with the previous > point and the current point

Re: [Interest] QTextEdit and Style sheets

2012-03-13 Thread Graham Labdon
This has me confused I can successfully set the background image under Linux, but not under Windows7 Is there anyone out there who could verify that they can set a background image on a QTextEdit under Windows7 Thanks Graham From: interest-bounces+graham.labdon=avalonsciences@qt-project.org

[Interest] [ Missing pixels when using drawLine ]

2012-03-13 Thread ashish raste
*Dear all, Recently I worked on a paint application, where I implemented a function to draw whatever a user is scribbling on an image. In the mouseMove event, I called a function to draw with the previous point and the current point as its arguments, using the drawLine function of QPainter. Now,