-
Notifications
You must be signed in to change notification settings - Fork 1
/
vfktextbrowser.h
78 lines (61 loc) · 1.96 KB
/
vfktextbrowser.h
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
#ifndef VFKTEXTBROWSER_H
#define VFKTEXTBROWSER_H
#include <QTextBrowser>
#include <QUrl>
#include <QPair>
#include "documentbuilder.h"
typedef QMap<QString, QString > TaskMap;
class VfkTextBrowser : public QTextBrowser
{
Q_OBJECT
public:
struct HistoryRecord
{
QString html;
QStringList parIds;
QStringList budIds;
Coordinates definitionPoint;
};
typedef QList<HistoryRecord> History;
enum ExportFormat { Html, RichText, Latex };
explicit VfkTextBrowser( QWidget *parent = 0 );
~VfkTextBrowser();
void startPage();
QUrl currentUrl() { return mCurrentUrl; }
bool exportDocument( const QUrl task, const QString fileName, ExportFormat format );
void setConnectionName( const QString &connectionName );
QStringList currentParIds() { return mCurrentRecord.parIds; }
QStringList currentBudIds() { return mCurrentRecord.budIds; }
Coordinates currentDefinitionPoint() { return mCurrentRecord.definitionPoint; }
void showInfoAboutSelection( QStringList parIds, QStringList budIds );
void postInit();
signals:
void updateHistory( HistoryRecord );
void showParcely( QStringList );
void showBudovy( QStringList );
void currentParIdsChanged( bool );
void currentBudIdsChanged( bool );
void historyBefore( bool );
void historyAfter( bool );
void definitionPointAvailable( bool );
void switchToPanelImport();
void switchToPanelSearch( int );
public slots:
void processAction( const QUrl task );
void onLinkClicked( const QUrl task );
void goBack();
void goForth();
void saveHistory( HistoryRecord record );
void showHelpPage();
private:
DocumentBuilder *mDocumentBuilder;
HistoryRecord mCurrentRecord;
History mUrlHistory;
History::iterator mHistoryIt;
QUrl mCurrentUrl;
static VfkDocument *documentFactory( ExportFormat format );
void updateButtonEnabledState();
TaskMap parseTask(const QUrl task);
QString documentContent( const TaskMap taskMap, ExportFormat format );
};
#endif // VFKTEXTBROWSER_H