[Interest] QTreeView and context menu

2014-02-27 Thread Graham Labdon
Hi I have developed a class derived from QAbstractItemModel and am using it to display data in a QTreeView. I want to display a context menu when the user right clicks on an item in the tree. The contents of this menu are dependent on which item in the tree has bee clicked and the result of the

Re: [Interest] Row(Layout), use spacing as resize handle. How to do that?

2014-02-27 Thread Saether Jan-Arve
First, I would consider using SplitView. If that's not an option, I'm curious why you want to use a layout, and which of its features you want. Specifically, I'm curious to know what behavior you expect when a handle is resized. Should it redistribute all items to the left and all items to the

Re: [Interest] Qt installer framework: maintenance tool update fails silently

2014-02-27 Thread Karsten Heimrich
Hi, On 26.02.2014 17:56, Wiebe Cazemier wrote: Hi, I created an installer for our Qt application with the Qt Installer framework (1.5 on Windows 7). I'm trying to install an update, and so I uploaded new files to the repository created by repogen. When I start the maintenance tool

Re: [Interest] Qt installer framework: maintenance tool update fails silently

2014-02-27 Thread Wiebe Cazemier
- Original Message - From: Karsten Heimrich karsten.heimr...@digia.com To: interest@qt-project.org Sent: Thursday, 27 February, 2014 1:04:24 PM Subject: Re: [Interest] Qt installer framework: maintenance tool update fails silently Did you bump the version number of the component

Re: [Interest] QTreeView and context menu

2014-02-27 Thread Clément Geiger
Hello Graham, You can use the contextMenuPolicy Qt::CustomContextMenu. In that case, when your QTreeView receives a right-click, it sends a signal contextMenuRequested(QPoint) that you can connect to a slot. In that slot, you are able to know which item has been clicked through

Re: [Interest] QWebEngine Status?

2014-02-27 Thread Rich Conlan
Those are updates to Qt WebKit. What I’m looking for info on is WebEngine, which is the embedding of Chromium in Linux. The latest info I can find is from a January blog post, http://blog.qt.digia.com/blog/2014/01/23/qt-webengine-technology-preview-available/ I’d thought it was due to be part

Re: [Interest] Row(Layout), use spacing as resize handle. How to do that?

2014-02-27 Thread Mark Gaiser
On Thu, Feb 27, 2014 at 12:37 PM, Saether Jan-Arve jan-arve.saet...@digia.com wrote: First, I would consider using SplitView. If that's not an option, I'm curious why you want to use a layout, and which of its features you want. Specifically, I'm curious to know what behavior you expect

Re: [Interest] QTreeView and context menu

2014-02-27 Thread Graham Labdon
Thanks for the hints From: Clément Geiger [mailto:clement.gei...@gmail.com] Sent: 27 February 2014 13:57 To: Graham Labdon Cc: Interest@qt-project.org Subject: Re: [Interest] QTreeView and context menu Hello Graham, You can use the contextMenuPolicy Qt::CustomContextMenu. In that case, when

Re: [Interest] QWebEngine Status?

2014-02-27 Thread Allan Sandfeld Jensen
On Thursday 27 February 2014, Rich Conlan wrote: Those are updates to Qt WebKit. What I’m looking for info on is WebEngine, which is the embedding of Chromium in Linux. The latest info I can find is from a January blog post,

[Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-27 Thread Michael Jackson
I am trying to make sure I truly understand the Signals/Slots mechanism because this once has me a bit stumped. I _think_ what I am trying is legal but maybe not. Best is an example: class A : public QObject { Q_OBJECT …. signals: void parametersChanged(); …. }; class

Re: [Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-27 Thread Michael Jackson
On Feb 27, 2014, at 11:24 AM, Michael Jackson imikejack...@gmail.com wrote: I am trying to make sure I truly understand the Signals/Slots mechanism because this once has me a bit stumped. I _think_ what I am trying is legal but maybe not. Best is an example: class A : public QObject {

Re: [Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-27 Thread Jason H
Moc may be confused by a few things. 1. Q_PROPERTIES normally sppear at the top  2. your notifier is not in the class you are declaring it as. Either declare it in A, or override it yourself. Moc is almost magical, but it doesn't have run or compile-time introspection. It can only parse the

Re: [Interest] Android: Can't create main activity / libplugins_bearer_libqgenericbearer.so: open failed

2014-02-27 Thread Jason H
I still have this issue. ANY ideas? From: Jason H scorp...@yahoo.com To: Interests Qt interest@qt-project.org Sent: Monday, February 24, 2014 3:19 PM Subject: [Interest] Android: Can't create main activity / libplugins_bearer_libqgenericbearer.so: open

Re: [Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-27 Thread Jason H
Signals and slots of course are inheritable, but I've never seen someone declare a signal, then use it as a  property notifier in subclass. That's the issue. From: Michael Jackson imikejack...@gmail.com To: Jason H scorp...@yahoo.com Cc:

[Interest] iOS 7 - Audio Recorder Example - no service found for org.qt-project.qt.audiosource'

2014-02-27 Thread Steve Schilz
Hi all, I am trying to run the Qt AudioRecorder sample, it works on Windows 8, Android, OSX 10.9. When I try to run on a mini-ipad , It compiles and runs on the device, however I receive the following error: defaultServiceProvider::requestService(): no service found for -

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Marcelo Estanislau Geyer
So that they can understand, I need to put the contents of a pdf file into a QByteArray, as this QByteArray is used as an attachment in the email sending process. I did a test with a postscript file (.ps file) and it worked perfectly. I only have this problem with pdf files. How can I read

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Constantin Makshin
If you want to test sending en email, send it an check what happens. Or, at least, print the final (i.e. with all encoding and other things being done, exactly what you'd send to an SMTP server) message. Don't try to print a PDF file contents as is — it's not a 100% text-based format and may

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Thiago Macieira
Em sex 28 fev 2014, às 01:58:39, Marcelo Estanislau Geyer escreveu: So that they can understand, I need to put the contents of a pdf file into a QByteArray, as this QByteArray is used as an attachment in the email sending process. I did a test with a postscript file (.ps file) and it worked

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Jason H
Make sure you open the file in binary mode. PS files are text, PDFs have both text and binary modes. Default is binary. QFile f(file.pdf); QByteArray ba; if (f.open (QIODevice::ReadOnly)) {    ba = file.readAll(); } Should be all you need. From: Marcelo

Re: [Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-27 Thread Mandeep Sandhu
https://bugreports.qt-project.org/browse/QTBUG-7684?focusedCommentId=124122page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel So it seems that moc can not support something that is perfectly legal to do? The link you pointed out already mentions that you need to declare

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Till Oliver Knoll
Am 28.02.2014 um 02:58 schrieb Marcelo Estanislau Geyer estanisge...@hotmail.com: So that they can understand, I need to put the contents of a pdf file into a QByteArray, as this QByteArray is used as an attachment in the email sending process. What makes you think you can attach any

Re: [Interest] PDF to QByteArray

2014-02-27 Thread Scott Aron Bloom
However, there are Qt base libraries.. QtExt for instance, that do allow the attachments from QByteArray, and they do all the computation into Base64 hidden from the user. Scott From: interest-bounces+scott.bloom=onshorecs@qt-project.org