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.
85 lines
1.9 KiB
85 lines
1.9 KiB
/*
|
|
* newssourcedlgimpl.h
|
|
*
|
|
* Copyright (c) 2001 Frerich Raabe <raabe@kde.org>
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. For licensing and distribution details, check the
|
|
* accompanying file 'COPYING'.
|
|
*/
|
|
#ifndef NEWSSOURCEDLGIMPL_H
|
|
#define NEWSSOURCEDLGIMPL_H
|
|
#include "newssourcedlg.h"
|
|
#include "newsengine.h"
|
|
|
|
#include <kdialogbase.h>
|
|
#include <kurl.h>
|
|
|
|
#include <tqpixmap.h>
|
|
|
|
class XMLNewsSource;
|
|
class NewsIconMgr;
|
|
class TQProgressBar;
|
|
class TQTimer;
|
|
|
|
class SuggestProgressDlg : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
SuggestProgressDlg(const KURL &url, TQWidget *parent, const char *name = 0);
|
|
virtual ~SuggestProgressDlg();
|
|
|
|
XMLNewsSource *xmlSrc() { return m_xmlSrc; }
|
|
TQPixmap icon() const { return m_icon; }
|
|
const KURL &iconURL() const { return m_iconURL; }
|
|
|
|
private slots:
|
|
void slotTimeoutTick();
|
|
void slotLoadComplete(XMLNewsSource *, bool);
|
|
void slotGotIcon(const KURL &, const TQPixmap &);
|
|
|
|
private:
|
|
bool m_gotSourceFile;
|
|
bool m_gotIcon;
|
|
XMLNewsSource *m_xmlSrc;
|
|
bool m_succeeded;
|
|
TQPixmap m_icon;
|
|
KURL m_iconURL;
|
|
TQProgressBar *m_progressBar;
|
|
TQTimer *m_timeoutTimer;
|
|
};
|
|
|
|
class NewsSourceDlgImpl : public NewsSourceDlg
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
NewsSourceDlgImpl(TQWidget * = 0, const char * = 0, bool = FALSE, WFlags = 0);
|
|
|
|
void setup(const NewsSourceBase::Data &, bool);
|
|
|
|
signals:
|
|
void newsSource(const NewsSourceBase::Data &);
|
|
|
|
protected slots:
|
|
void slotCancelClicked();
|
|
void slotOkClicked();
|
|
void slotSourceFileChanged();
|
|
void slotSuggestClicked();
|
|
void slotModified();
|
|
KURL polishedURL(const KURL &) const;
|
|
bool validateURL(const KURL &);
|
|
|
|
private slots:
|
|
void slotGotIcon(const KURL &, const TQPixmap &);
|
|
|
|
private:
|
|
bool m_modified;
|
|
};
|
|
|
|
#endif // NEWSSOURCEDLGIMPL_H
|