~ubuntu-branches/ubuntu/vivid/krusader/vivid-proposed

« back to all changes in this revision

Viewing changes to krusader/Filter/filterdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-05-05 22:26:37 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505222637-ydv3cwjwy365on2r
Tags: 1:2.1.0~beta1-1ubuntu1
* Merge from Debian Unstable.  Remaining changes:
  - Retain Kubuntu doc path

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                        filterdialog.h  -  description
3
 
                             -------------------
4
 
    copyright            : (C) 2005 + by Csaba Karai
5
 
    e-mail               : krusader@users.sourceforge.net
6
 
    web site             : http://krusader.sourceforge.net
7
 
 ---------------------------------------------------------------------------
8
 
  Description
9
 
 ***************************************************************************
10
 
 
11
 
  A
12
 
 
13
 
     db   dD d8888b. db    db .d8888.  .d8b.  d8888b. d88888b d8888b.
14
 
     88 ,8P' 88  `8D 88    88 88'  YP d8' `8b 88  `8D 88'     88  `8D
15
 
     88,8P   88oobY' 88    88 `8bo.   88ooo88 88   88 88ooooo 88oobY'
16
 
     88`8b   88`8b   88    88   `Y8b. 88~~~88 88   88 88~~~~~ 88`8b
17
 
     88 `88. 88 `88. 88b  d88 db   8D 88   88 88  .8D 88.     88 `88.
18
 
     YP   YD 88   YD ~Y8888P' `8888Y' YP   YP Y8888D' Y88888P 88   YD
19
 
 
20
 
                                                     H e a d e r    F i l e
21
 
 
22
 
 ***************************************************************************
23
 
 *                                                                         *
24
 
 *   This program is free software; you can redistribute it and/or modify  *
25
 
 *   it under the terms of the GNU General Public License as published by  *
26
 
 *   the Free Software Foundation; either version 2 of the License, or     *
27
 
 *   (at your option) any later version.                                   *
28
 
 *                                                                         *
29
 
 ***************************************************************************/
30
 
 
31
 
#ifndef FILTERDIALOG_H
32
 
#define FILTERDIALOG_H 
33
 
 
34
 
#include <kdialog.h>
35
 
#include "../VFS/krquery.h"
36
 
 
37
 
class FilterTabs;
38
 
class GeneralFilter;
39
 
 
40
 
class FilterDialog : public KDialog
41
 
{
42
 
  Q_OBJECT
43
 
 
44
 
public:
45
 
  FilterDialog(  QWidget *parent = 0 );
46
 
  KRQuery getQuery();
47
 
 
48
 
public slots:
49
 
  void slotCloseRequest( bool doAccept );
50
 
  
51
 
protected slots:
52
 
  void slotOk();
53
 
 
54
 
private:
55
 
  FilterTabs * filterTabs;
56
 
  GeneralFilter * generalFilter;
57
 
  KRQuery query;
58
 
};
59
 
 
60
 
#endif /* FILTERDIALOG_H */
 
1
/***************************************************************************
 
2
                        filterdialog.h  -  description
 
3
                             -------------------
 
4
    copyright            : (C) 2005 + by Csaba Karai
 
5
    e-mail               : krusader@users.sourceforge.net
 
6
    web site             : http://krusader.sourceforge.net
 
7
 ---------------------------------------------------------------------------
 
8
  Description
 
9
 ***************************************************************************
 
10
 
 
11
  A
 
12
 
 
13
     db   dD d8888b. db    db .d8888.  .d8b.  d8888b. d88888b d8888b.
 
14
     88 ,8P' 88  `8D 88    88 88'  YP d8' `8b 88  `8D 88'     88  `8D
 
15
     88,8P   88oobY' 88    88 `8bo.   88ooo88 88   88 88ooooo 88oobY'
 
16
     88`8b   88`8b   88    88   `Y8b. 88~~~88 88   88 88~~~~~ 88`8b
 
17
     88 `88. 88 `88. 88b  d88 db   8D 88   88 88  .8D 88.     88 `88.
 
18
     YP   YD 88   YD ~Y8888P' `8888Y' YP   YP Y8888D' Y88888P 88   YD
 
19
 
 
20
                                                     H e a d e r    F i l e
 
21
 
 
22
 ***************************************************************************
 
23
 *                                                                         *
 
24
 *   This program is free software; you can redistribute it and/or modify  *
 
25
 *   it under the terms of the GNU General Public License as published by  *
 
26
 *   the Free Software Foundation; either version 2 of the License, or     *
 
27
 *   (at your option) any later version.                                   *
 
28
 *                                                                         *
 
29
 ***************************************************************************/
 
30
 
 
31
#ifndef FILTERDIALOG_H
 
32
#define FILTERDIALOG_H
 
33
 
 
34
#include <kdialog.h>
 
35
#include "../VFS/krquery.h"
 
36
 
 
37
class FilterTabs;
 
38
class GeneralFilter;
 
39
 
 
40
class FilterDialog : public KDialog
 
41
{
 
42
    Q_OBJECT
 
43
 
 
44
public:
 
45
    FilterDialog(QWidget *parent = 0);
 
46
    KRQuery getQuery();
 
47
 
 
48
public slots:
 
49
    void slotCloseRequest(bool doAccept);
 
50
 
 
51
protected slots:
 
52
    void slotOk();
 
53
 
 
54
private:
 
55
    FilterTabs * filterTabs;
 
56
    GeneralFilter * generalFilter;
 
57
    KRQuery query;
 
58
};
 
59
 
 
60
#endif /* FILTERDIALOG_H */