I have a small application, written in Qt, in which the MainWindow class is having 2 public slots namely:
class MainWindow : public QMainWindow
{
Q_OBJECT
.
.
.
.
public slots:
quint8 GetColorCode();
QString GetRGBColorCode();
.
.
.
};
As per the Squish documents, public slots, signals and properties with Q_PROPERTY macro can be accessed directly from Squish environment. Slots and Signals appear under the Squish IDEs method list window. But unfortunately I am not able to see the above methods in the Squish IDE method list. Is there any specific way to make the public slots available to Squish?
Regards,
Bikash