You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
395 B
26 lines
395 B
15 years ago
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
12 years ago
|
#include <tdeio/job.h>
|
||
15 years ago
|
|
||
|
class KLineEdit;
|
||
14 years ago
|
class TQLabel;
|
||
15 years ago
|
class KFileItem;
|
||
|
|
||
14 years ago
|
class PreviewTest : public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
PreviewTest();
|
||
|
|
||
|
private slots:
|
||
|
void slotGenerate();
|
||
12 years ago
|
void slotResult(TDEIO::Job *);
|
||
14 years ago
|
void slotPreview( const KFileItem *, const TQPixmap & );
|
||
15 years ago
|
void slotFailed();
|
||
|
|
||
|
private:
|
||
|
KLineEdit *m_url;
|
||
14 years ago
|
TQLabel *m_preview;
|
||
15 years ago
|
};
|
||
|
|