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.
45 lines
791 B
45 lines
791 B
#ifndef CMODULE_H
|
|
#define CMODULE_H
|
|
|
|
#include <tqframe.h>
|
|
#include <tdelistview.h>
|
|
#include "noatun/pref.h"
|
|
|
|
class TDEListView;
|
|
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
|
|
|
|
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
|