blob: d4c3d538d9c469e1be93d918bfc8109700ea4883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __blah__h__
#define __blah__h__
#include <tqobject.h>
class MyObject: public TQObject
{
TQ_OBJECT
public:
MyObject();
public slots:
void slotPaletteChanged() { printf("TQ_SIGNAL: Palette changed\n"); }
void slotStyleChanged() { printf("TQ_SIGNAL: Style changed\n"); }
void slotFontChanged() { printf("TQ_SIGNAL: Font changed\n"); }
void slotBackgroundChanged(int i) { printf("TQ_SIGNAL: Background %d changed\n", i); }
void slotAppearanceChanged() { printf("TQ_SIGNAL: Appearance changed\n"); }
void slotMessage(int id, int arg) { printf("TQ_SIGNAL: user message: %d,%d\n", id, arg); }
};
#endif
|