|
|
|
#ifndef CMODULE_H
|
|
|
|
#define CMODULE_H
|
|
|
|
|
|
|
|
#include <tqframe.h>
|
|
|
|
#include <klistview.h>
|
|
|
|
#include "noatun/pref.h"
|
|
|
|
|
|
|
|
class KListView;
|
|
|
|
class TQSplitter;
|
|
|
|
class TQListViewItem;
|
|
|
|
class NoatunLibraryInfo;
|
|
|
|
class TQTextView;
|
|
|
|
class TQButtonGroup;
|
|
|
|
class MimeTypeTree;
|
|
|
|
class KLineEdit;
|
|
|
|
|
|
|
|
namespace Arts {class TraderOffer;}
|
|
|
|
|
|
|
|
class TQCheckBox;
|
|
|
|
class KURLRequester;
|
|
|
|
|
|
|
|
class General : public CModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
|
|
General(TQObject *parent=0);
|
|
|
|
virtual void save();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotRequesterClicked( KURLRequester * );
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQCheckBox *mLoopList, *mOneInstance, *mRememberPositions,
|
|
|
|
*mClearOnOpen, *mFastVolume, *mRemaining;
|
|
|
|
TQButtonGroup* mPlayOnStartup;
|
|
|
|
KURLRequester *mDlSaver;
|
|
|
|
KLineEdit *mTitleFormat;
|
|
|
|
};
|
|
|
|
|
|
|
|
// I'm too lazy to grep - Neil
|
|
|
|
#include "pluginmodule.h"
|
|
|
|
|
|
|
|
#endif
|