blob: 8d17be29e0d6e9c116d3aa30f705f38f7e7b471b (
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
|
/***************************************************************************
kxetexteditordialog.h - description
-------------------
begin : Ne pro 14 2003
copyright : (C) 2003 by The KXMLEditor Team
email : lvanek.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 KXETEXTEDITORDIALOG_H
#define KXETEXTEDITORDIALOG_H
#include <qwidget.h>
#include <qstring.h>
#include <qsyntaxhighlighter.h>
#include <ktextedit.h>
#include "kxetexteditordialogbase.h"
#include "kxesyntaxhighlighter.h"
/**Dialog for editing raw XML as text
*@author Lumir Vanek
*/
class KXETextEditorDialog : public KXETextEditorDialogBase
{
Q_OBJECT
public:
KXETextEditorDialog(QWidget *parent=0, const char *name=0);
~KXETextEditorDialog();
QString editorText() const { return m_pTextEditor->text(); }
void setEditorText(const QString strText) { m_pTextEditor->setText(strText); }
public slots:
/**
* Changes syntax highlighting colors.
*/
void slotTextViewSettingsChanged();
protected:
bool validateXml(bool);
protected slots:
// fired, when user press Validate button
virtual void slotValidate();
// fired, when user change text editor contents
void slotTextChanged();
// fired, when user press OK button
virtual void accept();
private:
KXESyntaxHighlighter *m_pSyntaxHighlighter;
};
#endif
|