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.
71 lines
2.0 KiB
71 lines
2.0 KiB
/***************************************************************************
|
|
begin : Thu Jul 31 00:31:51 2003
|
|
copyright : (C) 2003 - 2004 by Scott Wheeler
|
|
email : wheeler@kde.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef ADVANCEDSEARCHDIALOG_H
|
|
#define ADVANCEDSEARCHDIALOG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class KLineEdit;
|
|
class KPushButton;
|
|
class TQGroupBox;
|
|
class TQRadioButton;
|
|
class SearchLine;
|
|
|
|
class AdvancedSearchDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
struct Result
|
|
{
|
|
DialogCode result;
|
|
PlaylistSearch search;
|
|
TQString playlistName;
|
|
};
|
|
|
|
AdvancedSearchDialog(const TQString &defaultName,
|
|
const PlaylistSearch &defaultSearch = PlaylistSearch(),
|
|
TQWidget *parent = 0,
|
|
const char *name = 0);
|
|
|
|
virtual ~AdvancedSearchDialog();
|
|
|
|
public slots:
|
|
Result exec();
|
|
|
|
protected slots:
|
|
virtual void accept();
|
|
virtual void clear();
|
|
virtual void more();
|
|
virtual void fewer();
|
|
|
|
private:
|
|
void updateButtons();
|
|
|
|
TQWidget *m_criteria;
|
|
PlaylistSearch m_search;
|
|
TQString m_playlistName;
|
|
TQValueList<SearchLine *> m_searchLines;
|
|
KLineEdit *m_playlistNameLineEdit;
|
|
TQRadioButton *m_matchAnyButton;
|
|
TQRadioButton *m_matchAllButton;
|
|
KPushButton *m_moreButton;
|
|
KPushButton *m_fewerButton;
|
|
};
|
|
|
|
#endif
|