summaryrefslogtreecommitdiffstats
path: root/part/kxesearchdialog.h
blob: 9d77da4dd5c9e597898140363cf8e8367195a873 (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
/***************************************************************************
                          kxesearchdialog.h  -  description
                          -----------------
    begin                : Tue Jul 10 2001
    copyright            : (C) 2001, 2002, 2003 by The KXMLEditor Team
    email                : lvanek@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 KXESEARCHDIALOG_H
#define KXESEARCHDIALOG_H

#include "kxesearchdialogbase.h"

#include <tqlineedit.h>
#include <tqcheckbox.h>

/**
 * Dialog for input information from user
 * about searching in XML document
 */
// TODO add possibility to search backwards
class KXESearchDialog : public KXESearchDialogBase
{
		TQ_OBJECT

	public:
		KXESearchDialog( TQWidget * pParent, const char * pszName = 0, bool bModal = true );

		TQString getSearchString() const { return m_pEditSearchedString->text(); }
		bool getMatchCase() const { return m_pCheckBoxMatchCase->isChecked(); }
		bool getInElementNames() const { return m_pCheckBoxElementNames->isChecked(); }
		bool getInAttributeNames() const { return m_pCheckBoxAttributeNames->isChecked(); }
		bool getInAttributeValues() const { return m_pCheckBoxAttributeValues->isChecked(); }
		bool getInContents() const { return m_pCheckBoxContents->isChecked(); }

	protected:
		/** Enables/Disables the "Find"-button. */
		void toggleAcceptButton();

	protected slots:
		/** Called when text in edit line is changed */
		virtual void slotTextChanged(const TQString & );

    /** Called on a change of the "find in" checkbuttons. */
		virtual void slotFindInChanged();
};

#endif