blob: 9b2a05b97978414b13670426006d7305cc7b9b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// kmfawidgets.h - KMFilterAction parameter widgets
// Copyright: (c) 2001 Marc Mutz <Marc@Mutz.com>
// License: GPL
#ifndef _kmfawidgets_h_
#define _kmfawidgets_h_
#include <klineedit.h>
#include <qstring.h>
/** The param widget for KMFilterActionWithAddress..
@author Marc Mutz <mutz@kde.org>
*/
class QPushButton;
class KURLRequester;
class KMFilterActionWithAddressWidget : public QWidget
{
Q_OBJECT
public:
KMFilterActionWithAddressWidget( QWidget* parent=0, const char* name=0 );
void clear() { mLineEdit->clear(); }
QString text() const { return mLineEdit->text(); }
void setText( const QString & aString ) { mLineEdit->setText( aString ); }
protected slots:
void slotAddrBook();
private:
QPushButton* mBtn;
QLineEdit* mLineEdit;
};
class KMSoundTestWidget : public QWidget
{
Q_OBJECT
public:
KMSoundTestWidget( QWidget * parent, const char * name=0 );
~KMSoundTestWidget();
QString url() const;
void setUrl( const QString & url );
void clear();
signals:
void testPressed();
protected slots:
void playSound();
void openSoundDialog( KURLRequester * );
void slotUrlChanged( const QString & );
private:
KURLRequester *m_urlRequester;
QPushButton *m_playButton;
};
#endif /*_kmfawidget_h_*/
|