Tagged Questions
The slots tag has no wiki summary.
8
votes
4answers
2k views
How delete and deleteLater works wrt to signals and slots in Qt?
There is an object of class QNetworkReply. There is a slot (in some other object) connected to its finished() signal. Signals are synchronous (the default ones). There is only one thread.
At some ...
7
votes
1answer
217 views
How is __slots__ implemented in Python?
How is __slots__ implemented in Python?
Is this exposed in the C interface?
How do I get __slots__ behaviour when defining a Python class in C via PyTypeObject?
7
votes
3answers
1k views
Why am I getting an error about my class defining __slots__ when trying to pickle an object?
I'm trying to pickle an object of a (new-style) class I defined. But I'm getting the following error:
>>> with open('temp/connection.pickle','w') as f:
... pickle.dump(c,f)
...
Traceback ...
6
votes
2answers
94 views
Get all __slots__ of derived class
I need to initialise all slots of an instance with None. How do I get all slots of a derived class?
Example (which does not work):
class A(object):
__slots__ = "a"
def __init__(self):
...
6
votes
3answers
264 views
5
votes
2answers
234 views
Equality of Python classes using slots
Another question provides a nice, simple solution for implementing a test for equality of objects. I'll repeat the answer for context:
class CommonEqualityMixin(object):
def __eq__(self, ...
4
votes
2answers
235 views
Using Python descriptors with slots
I want to be able use python descriptors in a class which has the slots optimization:
class C(object):
__slots__ = ['a']
a = MyDescriptor('a')
def __init__(self, val):
self.a ...
3
votes
2answers
836 views
How to pickle and unpickle objects with self-references and from a class with slots?
What is a correct way to pickle an object from a class with slots, when this object references itself through one of its attributes? Here is a simple example, with my current implementation, which ...
2
votes
1answer
147 views
pyQt signals/slots with QtDesigner
I'm trying to write a program that will interact with QGraphicsView. I want to gather mouse and keyboard events when the happen in the QGraphicsView. For example, if the user clicks on the ...
2
votes
2answers
284 views
simple QT signal/slot problem
I think I have some fundamental misunderstanding of how the QT signal/slot mechanism works. I have worked through example programs and they make sense but when I've tried to take those and modify ...
2
votes
3answers
2k views
Qt QWEBview JavaScript callback
How to pass a function "pointer" from JavaScript to a slot?
in JavaScript:
function f1()
{
alert("f1");
}
qtclass.submit(f1);
and in Qt:
public slots:
void submit(void * ptr)
{
...
2
votes
2answers
876 views
Qt QNetworkAccessManager does not emit signals
The function CheckSite() is called with an url like http://site.com, it initializes a QNetworkAccessManager object and connect() slots and signals.
The manger->get() call seems work (it generates ...
1
vote
2answers
150 views
Seg Fault After Setting Up New Public Signal in QT
Hey, I am just getting my feet wet with Qt, I am trying to pull the string from a QlineEdit and append it to a QTextBrowser after clicking a button(for simplicity/error checking I am just having it ...
1
vote
4answers
281 views
PyQt - slots with parameter
Example:
I have three pushbuttons, all makes almost the same.
I want to have only 1 slot-function for all 3 buttons.
def slotButtons(nr_button):
#common part
if(nr==1):
#for button 1
...
1
vote
1answer
643 views
Performance of boost::signals2
I'm switching from xlobjects to boost::signals2 as my signal/slot framework in the hope that the establishment of connections, threir removal, signal emission, etc is thread-safe. I'm not interested ...
1
vote
1answer
285 views
QT Interface with Slots
I made an interface and plugins by following this tutorial:
http://doc.trolltech.com/4.6/plugins-howto.html
and everything is working fine.
But know I would like to connect a Signal to a slot of the ...
1
vote
1answer
302 views
Problem with signals and slots
Using Qt Creator, I am creating a class with custom slots in Qt:
class CustomEdit : public QTextEdit
{
Q_OBJECT
public:
CustomEdit(QWidget* parent);
public slots:
void onTextChanged ...
1
vote
1answer
1k views
Slot not being passed from action to layout in Symfony 1.4
I'm using the following to set a slot in an action but I can't retrieve it in the layout.
$this->getResponse()->setSlot('global_message', 'You have already completed this contest.');
But if ...
0
votes
1answer
17 views
connecting a QAction to a virtual slot?
I am trying to a create a command class hierarchy. Basically each command will be bound to a QAction. Once the action is triggered, it will call a virtual method.
Here is the code:
class Command : ...
0
votes
1answer
63 views
Qt Mainwindow menu signals
I've "Core" object that handles QMainWindow.
Core.h code
class Core : public QObject
{
Q_OBJECT
public:
explicit Core(QObject *parent = 0);
~Core();
void appInit();
int ...
0
votes
1answer
57 views
Perl Qt 3.1 and threads
I have a class which isa Qt::Object and has a method that creates a thread.
Whenever I attempt to detach or join the thread it seg faults.
Also the emit signal is not working.
Sample code is:
...
0
votes
2answers
124 views
Singleshot: SLOT with arguments
I have a strange problem. Here is my code:
def method1(self, arg1, delay=True):
"""This is a method class"""
def recall(arg1):
self.method1(arg1, delay=False)
...
0
votes
1answer
77 views
django include_javascript/use_javascript and similiar
Good day.
I'm searching for the way to include javascript/css files inside django templates using symfony-like style or similiar.
My base/layout.html template looks like this:
<!DOCTYPE html ...
0
votes
1answer
77 views
Symfony backend <title>
I use Symfony 1.4.11. And I need to add custom <title></title> for each page.In frontend I use slots (here) But I need also to do same in my backend... How to do this? Use generator.yml?
...
0
votes
1answer
99 views
Including slots in auto-generated admin modules with Symfony
Is there a way of including a slot from generator.yml in Symfony? I would like to add a piece of HTML code only within some backend modules, and slots is the best idea I can come up with.
If not with ...
0
votes
0answers
263 views
ActiveX events and Qt
I'm trying to use the Skype4COM library in a Qt application. Now with dumpcpp I've created the h and cpp file.
I can collect Users in my friends list and make a call but I don't know how I could ...
0
votes
2answers
200 views
signals and slots in multilayered UI widgets
Let's say we have the follogin UI:
+--------------------------+
|W1 +--------------+ |
| |W2 | |
| | +----------+ | |
| | |W3 | | |
| | ...
0
votes
1answer
105 views
Proper way to relay signals across classes in qt4?
I have a QMainWindow which spawns a few wizards. The QMainWindow has a QFrame class that lists a collection of objects. I want to launch this window from within my wizard's QWizardPages.
Basically, I ...
0
votes
1answer
66 views
Why do I get two clicked or released signals when using a custom slot for a QPushButton?
here's the main code at first I thought is was the message box but setting a label instead has the same effect.
#include <time.h>
#include "ui_mainwindow.h"
#include <QMessageBox>
class ...
0
votes
1answer
349 views
Qt C++ WebKit windowCloseRequested Signal
I am trying to connect QWebpage::windowCloseRequested() to a slot that just prints out a debug message. When I call window.close(); in JavaScript it doesn't bubble the signal up or call the slot...
...
-1
votes
1answer
70 views
Slot problems with QT, linker error
Was wanting to ask about a linker error I keep getting. I installed QT and am using it on Visual Studio 2005. Basically whenever i try and declare a slot I get this linker error message.
Error 1 ...