Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/4/head
Michele Calgaro 8 months ago
parent 18375c775f
commit a7b1339d13
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -29,7 +29,7 @@ we have:
To be done: To be done:
- Implement a widget to let the user select ImageCollections. The minimal - Implement a widget to let the user select ImageCollections. The minimal
interface should be: interface should be:
class ImageCollectionSelector : public QWidget { class ImageCollectionSelector : public TQWidget {
QValueList<ImageCollection> imageCollections; QValueList<ImageCollection> imageCollections;
} }

@ -59,19 +59,19 @@ The implementation would looks something like this:
class Browser { class Browser {
public: public:
Browser( BrowserShared* ); Browser( BrowserShared* );
virtual QWidget* widget( QWidget* parent ); virtual TQWidget* widget( TQWidget* parent );
KURL::List images(); KURL::List images();
// all the other stuff to make a shared class. // all the other stuff to make a shared class.
signals: signals:
void descriptionChanged( const QString& ); void descriptionChanged( const TQString& );
void previewChanged( const QPixmap& ); void previewChanged( const QPixmap& );
} }
class BrowserShared { class BrowserShared {
public: public:
virtual QWidget* widget( QWidget* parent ) = 0; virtual TQWidget* widget( TQWidget* parent ) = 0;
KURL::List images() = 0; KURL::List images() = 0;
signals: signals:
... ...

Loading…
Cancel
Save