summaryrefslogtreecommitdiff
path: root/core/pim/osearch/doclnksearch.cpp
blob: 9d165be939aa767e181465005aeb355c762730be (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//
//
// C++ Implementation: $MODULE$
//
// Description:
//
//
// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//


#include "doclnkitem.h"
#include "doclnksearch.h"

#include <opie2/oresource.h>
#include <opie2/owait.h>

#include <qpe/applnk.h>
#include <qpe/config.h>
#include <qpe/qpeapplication.h>

#include <qaction.h>
#include <qfile.h>
#include <qpopupmenu.h>
#include <qtextstream.h>


DocLnkSearch::DocLnkSearch(QListView* parent, QString name)
: AppLnkSearch(parent, name), _popupMenu(0)
{
    setPixmap( 0, Opie::Core::OResource::loadPixmap( "osearch/documents", Opie::Core::OResource::SmallIcon ) );

	actionSearchInFiles = new QAction( QObject::tr("Search content"),QString::null,  0, 0, 0, true );
	Config cfg( "osearch", Config::User );
   	cfg.setGroup( "doclnk_settings" );
   	actionSearchInFiles->setOn( cfg.readBoolEntry( "search_content", false ) );
}


DocLnkSearch::~DocLnkSearch()
{
	Config cfg( "osearch", Config::User );
   	cfg.setGroup( "doclnk_settings" );
   	cfg.writeEntry( "search_content", actionSearchInFiles->isOn() );
}

void DocLnkSearch::load()
{
	_apps = new DocLnkSet(QPEApplication::documentDir());
}

bool DocLnkSearch::searchFile( AppLnk *app )
{
	if (!actionSearchInFiles->isOn()) return false;
	DocLnk *doc = (DocLnk*)app;
	bool found = false;
	if ( doc->type().contains( "text" ) ){
#ifdef NEW_OWAIT
            QString ouput = QObject::tr("searching %1").arg(doc->file());
		OWait( output );
#endif
	  	QFile f(doc->file());
  		if ( f.open(IO_ReadOnly) ) {
       			QTextStream t( &f );
        		while ( !t.eof() )
       	    			if (_search.match( t.readLine()) != -1) {
					found = true;
					break;
				}
 	       	}
  		f.close();
    	}
	return found;
}

void DocLnkSearch::insertItem( void *rec )
{
	(void)new DocLnkItem( this, (DocLnk*)rec );
	_resultCount++;
}


QPopupMenu* DocLnkSearch::popupMenu()
{
	if (!_popupMenu){
		_popupMenu = new QPopupMenu( 0 );
 		actionSearchInFiles->addTo( _popupMenu );
	}
	return _popupMenu;
//	(void) new DocLnkItem( this, (DocLnk*)rec );
		// rec is undeclared here
#warning  FIXME
	_resultCount++;
}