Switch to unified view

a/src/qtgui/ssearch_w.h b/src/qtgui/ssearch_w.h
1
/* @(#$Id: ssearch_w.h,v 1.2 2006-11-04 14:49:46 dockes Exp $  (C) 2006 J.F.Dockes */
1
/* @(#$Id: ssearch_w.h,v 1.3 2006-11-13 08:58:47 dockes Exp $  (C) 2006 J.F.Dockes */
2
/*
2
/*
3
 *   This program is free software; you can redistribute it and/or modify
3
 *   This program is free software; you can redistribute it and/or modify
4
 *   it under the terms of the GNU General Public License as published by
4
 *   it under the terms of the GNU General Public License as published by
5
 *   the Free Software Foundation; either version 2 of the License, or
5
 *   the Free Software Foundation; either version 2 of the License, or
6
 *   (at your option) any later version.
6
 *   (at your option) any later version.
...
...
21
#include <qvariant.h>
21
#include <qvariant.h>
22
#include <qwidget.h>
22
#include <qwidget.h>
23
#include "recoll.h"
23
#include "recoll.h"
24
#include "searchdata.h"
24
#include "searchdata.h"
25
#include "ssearchb.h"
25
#include "ssearchb.h"
26
#include "refcntr.h"
26
27
27
class SSearch : public SSearchBase
28
class SSearch : public SSearchBase
28
{
29
{
29
    Q_OBJECT
30
    Q_OBJECT
30
31
...
...
41
public slots:
42
public slots:
42
    virtual void searchTextChanged( const QString & text );
43
    virtual void searchTextChanged( const QString & text );
43
    virtual void startSimpleSearch();
44
    virtual void startSimpleSearch();
44
45
45
signals:
46
signals:
46
    void startSearch(Rcl::AdvSearchData);
47
    void startSearch(RefCntr<Rcl::SearchData>);
47
    void clearSearch();
48
    void clearSearch();
48
 private:
49
 private:
49
    bool m_escape;
50
    bool m_escape;
50
};
51
};
51
52