blob: 2ddc7e7c884e789c59abae210ed816a36d97531c (
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
107
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef ENTRYVIEW_H
#define ENTRYVIEW_H
class KRun;
class KTempFile;
#include "datavectors.h"
#include <tdehtml_part.h>
#include <tqguardedptr.h>
namespace Tellico {
class XSLTHandler;
class ImageFactory;
class StyleOptions;
/**
* @author Robby Stephenson
*/
class EntryView : public TDEHTMLPart {
Q_OBJECT
public:
/**
* The EntryView shows a HTML representation of the data in the entry.
*
* @param parent TQWidget parent
* @param name TQObject name
*/
EntryView(TQWidget* parent, const char* name=0);
/**
*/
virtual ~EntryView();
/**
* Uses the xslt handler to convert an entry to html, and then writes that html to the view
*
* @param entry The entry to show
*/
void showEntry(Data::EntryPtr entry);
void showText(const TQString& text);
/**
* Clear the widget and set Entry pointer to NULL
*/
void clear();
/**
* Sets the XSLT file. If the file name does not start with a back-slash, then the
* standard directories are searched.
*
* @param file The XSLT file name
*/
void setXSLTFile(const TQString& file);
void setXSLTOptions(const StyleOptions& options);
void setUseGradientImages(bool b) { m_useGradientImages = b; }
signals:
void signalAction(const KURL& url);
public slots:
/**
* Helper function to refresh view.
*/
void slotRefresh();
private slots:
/**
* Open a URL.
*
* @param url The URL to open
*/
void slotOpenURL(const KURL& url);
void slotReloadEntry();
void slotResetColors();
private:
void resetColors();
Data::EntryPtr m_entry;
XSLTHandler* m_handler;
TQString m_xsltFile;
TQString m_textToShow;
// to run any clicked processes
TQGuardedPtr<KRun> m_run;
KTempFile* m_tempFile;
bool m_useGradientImages : 1;
bool m_checkCommonFile : 1;
};
} //end namespace
#endif
|