The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
16 views

is there any limitation of how fast or how many times signals can be emitted in Qt?

i was experimenting with QThread the other day and i wanted to create an infinite loop by using signals only and not for, foreach or while but then my code would crash after emitting the signal and ...
1
vote
1answer
42 views

Qt name collision, but no_keywords not an option

I have a dilemma. In a program I'm writing using Qt, I use a (non-Qt) library that uses a Qt keyword in its headers as a name (the library being pf_ring to be precise, and the name "slots") and so I ...
0
votes
1answer
53 views

Qt signals/slots: Is it an error to emit a signal from a temporary object?

In Qt, if a signal is called from a temporary object, such that the object may be deleted by the time the slot is called, is it an error? In case it's relevant, the code is emitting the signal from ...
0
votes
1answer
33 views

Is there a guarantee that no signals are delivered from a different thread after QObject::disconnect()?

I am not thinking of the problem that queued signals are still delivered in the receiving thread after disconnect(), instead: Consider the case that a Sender object is generating signals in thread 1 ...
1
vote
2answers
34 views

Fixed - Signal/Slots connection does not work with no warning or error

I'm using Eclipse with Qt and even thought I wrote a simple example, it doesn't work. The small window with a button and a QLineEdit appears, but if I push the button, it writes nothing in the ...
0
votes
1answer
39 views

How can I detect the back button being pressed in QWizard?

I have a QWizard and I need to perform certain actions each time a wizard page becomes visible. Currently I am doing this in the validateCurrentPage function but I have realised that it is only called ...
1
vote
0answers
37 views

PySide: Returning a value from a slot

The Pyside documentation states that slots can have return values, but I have yet to figure out how make it do so. I couldn't find any usable code samples on this, so I've added a decorator as the ...
0
votes
0answers
7 views

PyQt Adding menus that are defined in other modules

I am trying to develop a modular (plugin) PyQt Application. I am talking here about a plugin that may have been written by another developer and that extends my application. At application start up ...
1
vote
1answer
52 views

Private QT signal

I have a data model that I want other objects to be able to watch for updates, but I don't want to give anyone control of the update signal itself. I've come up with a something that makes sense to me ...
0
votes
1answer
18 views

Sorting a model has no immediate effect

I implemented sort in a QAbstractTableModel subclass. The sorting itself works but the view doesn't change until I hover over the table itself (i.e. not the header). How can I fix this? At first I ...
2
votes
1answer
70 views

QPushbutton does not connect

In the following code I'm trying to replace "original text" with "new text" when "click" button is pressed. I dont get any errors, but the label's text doesnt change. QPushButton *button=new ...
1
vote
1answer
65 views

Map signal to slot through an observer for variable number of arguments

Consider signal manager that receives the signal, checks for some conditions, and if they are met, transmits signal to slot, discarding signal otherwise: signal(some args) ---> [manager] ---> ...
1
vote
0answers
25 views

QxtLogger (From libQxt) prints its Messages in Application Output

I am using QxtLogger (from libQxt) for logging in our application. It was working fine with Qt 4.7.3. I recently updated to Qt 4.8, Since then log messages from QxtLogger are getting printed in ...
0
votes
2answers
49 views

Connect Qt signal and slot in a derived QObject constructor

I am writing a simple EchoServer class, inheriting from QTcpServer. And when I connect signal and slot in the constructor, it does not go well. class EchoServer : public QTcpServer { //Q_OBJECT ...
1
vote
1answer
31 views

Check which signal is the calller of the signal

Is there any way to know whether inst1 or inst2 was the trigger for the slot in the next code? MyClass inst1 ,inst2; connect (inst1, sigInst1(), this, mySlot()); connect (inst2, sigInst2(), this, ...
0
votes
1answer
67 views

QTableWidget::setCellWidget() disables signals from QTableWidget?

I have a QTableWidget instance with its cellEntered(int,int) signal associated to a slot X (that higlights the row in which the cell is contained). Also I have one column containing check boxes. The ...
0
votes
2answers
40 views

Slot/signal dynamics regarding QTextEdit

I'm fairly new at C++/Qt, and I only have some web development experience. I'm testing a few things with Qt for learning purposes and I'm failing miserably at it. I'm pretty sure it's because the ...
0
votes
1answer
41 views

Need help connecting signal from thread to slot in GUI

mainwindow.h: #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit ...
0
votes
1answer
82 views

QCheckBox, QRadioButton and QComboBox in QWizard: Signals/ Slots and SignalMapping - Information required

I am trying to create a QWizard. I need to use combinations of QRadioButton and QComboBox in first Window, and QCheckBox and QComboBox in second Window. In the first Window, the information coming ...
0
votes
0answers
22 views

Access to indexes of python list in QML

I have pyside code like this: class Provider(QObject): def __init__(self): QObject.__init__(self) @Slot(unicode, result='QVariant') def get_data(self, something): return ...
0
votes
1answer
41 views

How to connect a signal to a slot

I let Qt-Creator to generate me a basic window app using Qt. I added there a button and try to connect it to a slot. It compiles fine but the app crashes and returns 3, please help me, I don't know ...
0
votes
1answer
84 views

Signal-slot doesn't work using QThread

I am using QT framework. I have been using SIGNAL-SLOT for a while. I like it. :-) But I cannot make it work when I use QThread. I always create new thread using “moveToThread(QThread …)” function. ...
0
votes
1answer
32 views

defining signal outside __init__ of class doesn't work?

I'm trying to understand signals and slots.... read a couple of things http://www.harshj.com/2010/05/06/pyqt-faq-custom-signals-jpeg-mouse-hovers-and-more/#custom ...
4
votes
2answers
54 views

How to call a slot on quit

I want to update my database just before my Qt application closes. I want something like connect(this, SIGNAL(quit()), this, SLOT(updateDatabase())) One way could be to introduce a quit button, but ...
0
votes
1answer
53 views

connecting slots outside mainwindow class

I have some GUI ( showing the bill in using QTableWidget ) which I have implemented outside the MainWindow class in my checkout.cpp file. I am having trouble in connecting slots inside the ...
0
votes
1answer
34 views

Fitting signals to slots in Qt

I'm trying to enable a QPushButton after another QPushButton is clicked and I've run into a problem. The first QPushButton can emit a clicked() signal while the second QPushButton only has slots of ...
2
votes
1answer
320 views

Connect QML signal to C++11 lambda slot (Qt 5)

Connecting a QML signal to a regular C++ slot is easy: // QML Rectangle { signal foo(); } // C++ old-style QObject::connect(some_qml_container, SIGNAL(foo()), some_qobject, SLOT(fooSlot()); // ...
0
votes
0answers
41 views

Use from *args or **kwargs in Qt slot

How to use from *args or **kwargs to def a function in Pyside like this: @QtCore.Slot(str,**kwargs) def send_data(self,**kwargs): print args Is it possible ? MORE Explanation: I have a ...
0
votes
1answer
87 views

QTimer Slot not being fired from Library function

I have a main Qt Application and I am developing a Qt Library that I link to from this Main Application. From the Main Application I wish to call a function in the library that will do something, and ...
0
votes
1answer
131 views

Using OSG's osgViewerQt example with Qt signals/slots

I have already posted this in the OSG mailing list, but the mailing list seems to be a bit slow. Anyway, I'm trying to modify the osgViewerQt example by adding a new class of my own that will contain ...
0
votes
1answer
72 views

PySide, signal and slots [ NameError: globale name 'methodName' is not defined]

i am new in Python programming and I can not move forward because of that problem. My code is above: #!/usr/bin/python3 # -*- coding: utf-8 -*- """ spike 1 9.03.2012 Kevin """ import sys from ...
0
votes
1answer
95 views

Qt signals and slots for multiple objects

I'm having little problem here. I'm having troubles with signals & slots. I'll try to explain with pseudocode. So, here it goes. I have main thread (mainwindow.cpp) where I'm creating new objects ...
0
votes
2answers
61 views

return an unsigned char in a signal/slot mechanism in Qt

I'm using QThreads in Qt, and I'm creating a signal in the worker so it can return an unsigned char buf[10] to be plotted in the gui thread. here's my signal. unsigned char Worker::newinfo(unsigned ...
0
votes
2answers
54 views

Connect Signal and Slots in QT

Is it possible to connect a signal of class A to its own slot Example as connect(objecta1, Signala1,objecta1,slota1)
1
vote
1answer
66 views

Qt: Why doesn't my button get the signal?

Why didn't the button object get the sigKK() signal when the button was clicked? When a signal is emitted, can all qt objects receive this signal? The code is as follows: class PushButton : ...
1
vote
3answers
76 views

How to delete tied objects in Qt?

There are two classes: Widget and Worker. Here is a schematic code. class Widget { Worker *m_worker; QTextEdit *m_edit; public: Widget():m_edit(new QTextEdit){} ~Widget() { ...
0
votes
2answers
99 views

Connect an array to a signal slot mechanism in Qt

I created a QSlider *x_slider[8] array and now I want to create a connect to a slot like this, connect(x_slider[0], SIGNAL(valueChanged(int)), this, SLOT(slider_x(int))); but as I don't want to ...
0
votes
0answers
58 views

An alternative to calling blockSignals on programatical changes to QScrollBar value?

I have a QWidget that has a QScrollBar. An update of the scrollbar value invokes an update function of the QWidget object. This is the connect syntax: connect(ui.scrollBar, SIGNAL(valueChanged(int)), ...
0
votes
1answer
151 views

How can I emit a signal from another class?

I have a problem with my Qt application. I'm trying to emit a signal from within another class (it is a nested class of the one in which the signal is placed). I already connected the signal with a ...
0
votes
0answers
151 views

QtConcurrent and QFutureWatcher Slot Called After Finished() Does Not Work

I have an HTTP server that returns a large amount of data by writing to and flushing a QTcpSocket in blocks. If I wait in my main thread to do this operation, it takes quite awhile and blocks ...
7
votes
1answer
173 views

Algorithm function: Make it a template or take a std::function parameter? [duplicate]

I have a C++ class called Graph, and it has an algorithm method for_each_node(). I can either make it a template, like this: template <class UnaryFunction> UnaryFunction Graph::for_each_node ...
0
votes
0answers
90 views

How to implement simple Signal/Slot mechanism in C/C++ without using any libraries?

I'm new to GUI programming like gtkmm. I'm struggling with libsigc++ but I don't know What is the meaning of Signal/Slot? How can we create that without using sigc and Qt in C/C++? And What is the ...
1
vote
2answers
35 views

Make QObject wait for its listeners before executing function

I'm working with structured light, and I have QCamera and QProjector classes I wrote. When the projector projects a pattern, it must wait for all attached cameras to capture that pattern before it ...
1
vote
1answer
94 views

Object::connect: No such slot AllWidgets::m_pSpinBoxOut->setText

I receive the following error while compiling my cpp file: Object::connect: No such slot AllWidgets::m_pSpinBoxOut->setText( const QString &) in Widgets.cpp:148 Here is the line 148: ...
0
votes
0answers
145 views

How to emit a Qt signal from within an GStreamer AppSink new-sample callback function

I try to evoke a member function every time a GStreamer AppSink receives a new buffer. For this I did the following: main.cpp: #include "mainwindow.h" #include <QApplication> int main(int ...
0
votes
1answer
49 views

Qt - register multiple signals that when they've all emitted produce a giant signal connected to one slot

In my application I have the following situation: an object emits signal removeCharacter removeCharacter has a part A and B, and after part A is done it fires signal removePath slot onRemovePath is ...
3
votes
2answers
130 views

Signals library which tracks slots lifetime automatically

I need a signals/slots c++ library with one specific feature that the signals automatically disconnect the slot when the object with the slot is destroyed. Boost::signals2 offers this feature only ...
0
votes
1answer
158 views

How to use signals and slots for observer pattern?

I wrote a simple observer pattern, where the observer has "void notify(std::string)" function and the observable object calls it on every registered observer and uses tokenized string to transfer the ...
1
vote
2answers
107 views

Qt MainWindow is not updating

I am using Qt to generate a Window. Additionally I use libnfc to get access to a nfc reader, so far so good. In my self written nfc-class i generate a new thread, this thread is polling for new tags ...
0
votes
1answer
190 views

Object::connect: No such signal

I have a problem to create custom slots/signal with a struct. I have the following code : qRegisterMetaType<namespace::myClassA::aStruct>(); QObject::connect(&myClassA, ...

1 2 3 4 5 10