summaryrefslogtreecommitdiffstats
path: root/kexi/core/kexisearchandreplaceiface.h
blob: f581de34e20003188c3224956eb4244390257a67 (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
98
99
100
101
102
103
104
105
106
/* This file is part of the KDE project
   Copyright (C) 2007 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KexiSearchAndReplaceViewInterface_H
#define KexiSearchAndReplaceViewInterface_H

#include <kexiutils/tristate.h>
#include <tqstring.h>
class TQVariant;
class TQStringList;

//! @short An interface used by Kexi views (KexiViewBase) supporting search/replace features
class KEXICORE_EXPORT KexiSearchAndReplaceViewInterface
{
	public:
		KexiSearchAndReplaceViewInterface();
		virtual ~KexiSearchAndReplaceViewInterface();

		//! @short Specifies options for find and replace operations.
		/*! A GUI for setting these options is provided by KexiFindDialog class. */
		class KEXICORE_EXPORT Options {
			public:
				Options();

				//! Special values for columnNumber.
				enum SpecialLookInValue {
					AllColumns = -1,   //!< "all columns" (the default)
					CurrentColumn = -2 //!< "current column"
				};
				//! Column number to look in, AllColumns means "all columns" (the default)
				//! and CurrentColumn means "current column".
				int columnNumber;

				//! Specifies possible options for text matching
				enum TextMatching {
					MatchAnyPartOfField = 0, //!< Matched text can be any part of field (the default)
					MatchWholeField = 1,     //!< Matched text must be the whole field
					MatchStartOfField = 2    //!< Matched text must be at the start of field
				};

				//! Specifies possible options for text matching
				TextMatching textMatching;

				//! Specifies search direction
				enum SearchDirection {
					SearchUp = 0,      //!< Search up (previous) from the current position
					SearchDown = 1,    //!< Search down (next) from the current position (the default)
					SearchAllRows = 2, //!< Search from the first to the last row
					DefaultSearchDirection = SearchDown //! Used to mark the default
				};

				//! Specifies search direction
				SearchDirection searchDirection;

				//! True for searching is case-sensitive (false by default)
				bool caseSensitive : 1;

				//! True for searching for whole words only (false by default)
				bool wholeWordsOnly : 1;

				//! True if question should be displayed before every replacement made (true by default)
				bool promptOnReplace : 1;
		};

		/*! Sets up data for tqfind/replace dialog, based on view's data model.
		 \a columnNames should contain column name, \a columnCaptions should contain column captions,
		 and \a currentColumnName should beset to current column's name.
		 Implementation should set up values and return true if tqfind/replace dialog should be filled. */
		virtual bool setupFindAndReplace(TQStringList& columnNames, TQStringList& columnCaptions,
			TQString& currentColumnName) = 0;

		/*! Finds \a valueToFind within the view.
		 \a options are used to control the process. Selection is moved to found value.
		 \return true if value has been found, false if value has not been found,
		 and cancelled if there is nothing to find or there is no data to search in. 
		 If \a next is true, "find next" is performed, else "find previous" is performed. */
		virtual tristate tqfind(const TQVariant& valueToFind, 
			const KexiSearchAndReplaceViewInterface::Options& options, bool next) = 0;

		/*! Finds \a valueToFind within the view and replaces with \a replacement
		 \a options are used to control the process.
		 \return true if value has been found and replaced, false if value 
		 has not been found and replaced, and cancelled if there is nothing 
		 to find or there is no data to search in or the data is read only. 
		 If \a replaceAll is true, all found values are replaced. */
		virtual tristate findNextAndReplace(const TQVariant& valueToFind, const TQVariant& replacement, 
			const KexiSearchAndReplaceViewInterface::Options& options, bool replaceAll) = 0;
};

#endif