blob: bc9ac7147c63f09ac49ad9c3155d999bd0a4d674 (
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
|
//-*-C++-*-
/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Luis Carvalho
email : lpassos@mail.telepac.pt
**************************************************************************
**************************************************************************
* *
* 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 PMLIBRARYOBJECTSEARCH_H
#define PMLIBRARYOBJECTSEARCH_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqwidget.h>
class TQLineEdit;
class TQListBox;
class TQPushButton;
class PMLibraryEntryPreview;
class KListView;
/**
* Search widget for Library Objects.
* It also provides drag. If the user doesn't have a clear idea
* where the objects he wants are, this is the dialog to use.
*/
class PMLibraryObjectSearch: public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
PMLibraryObjectSearch( TQWidget *parent );
private slots:
void slotSearchButtonPressed( );
private:
TQLineEdit* m_pSearch;
TQPushButton* m_pSearchButton;
KListView* m_pFileList;
PMLibraryEntryPreview* m_pPreview;
};
#endif
|