blob: 177b3da0854be66ef47aa00b8c67ec0ecc0ab576 (
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
108
109
|
/***************************************************************************
* Copyright (C) 2004 by Enrico Ros <eros.kde@email.it> *
* *
* 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 _KPDF_PRESENTATIONWIDGET_H_
#define _KPDF_PRESENTATIONWIDGET_H_
#include <tqdialog.h>
#include <tqpixmap.h>
#include <tqstringlist.h>
#include <tqvaluevector.h>
#include "core/observer.h"
#include "core/pagetransition.h"
class TDEAccel;
class TDEActionCollection;
class TDEToolBar;
class TQTimer;
class KPDFDocument;
class KPDFPage;
class KPDFLink;
class PresentationFrame;
/**
* @short A widget that shows pages as fullscreen slides (with transitions fx).
*
* This is a fullscreen widget that displays
*/
class PresentationWidget : public TQDialog, public DocumentObserver
{
Q_OBJECT
public:
PresentationWidget( TQWidget * parent, KPDFDocument * doc );
~PresentationWidget();
void setupActions( TDEActionCollection * ac );
// inherited from DocumentObserver
uint observerId() const { return PRESENTATION_ID; }
void notifySetup( const TQValueVector< KPDFPage * > & pages, bool documentChanged );
void notifyViewportChanged( bool smoothMove );
void notifyPageChanged( int pageNumber, int changedFlags );
bool canUnloadPixmap( int pageNumber );
protected:
// widget events
// bool event( TQEvent * e );
void keyPressEvent( TQKeyEvent * e );
void wheelEvent( TQWheelEvent * e );
void mousePressEvent( TQMouseEvent * e );
void mouseReleaseEvent( TQMouseEvent * e );
void mouseMoveEvent( TQMouseEvent * e );
void paintEvent( TQPaintEvent * e );
private:
const KPDFLink * getLink( int x, int y, TQRect * geometry = 0 ) const;
void testCursorOnLink( int x, int y );
void overlayClick( const TQPoint & position );
void changePage( int newPage );
void generatePage();
void generateIntroPage( TQPainter & p );
void generateContentsPage( int page, TQPainter & p );
void generateOverlay();
void initTransition( const KPDFPageTransition *transition );
const KPDFPageTransition defaultTransition() const;
const KPDFPageTransition defaultTransition( int ) const;
// cache stuff
int m_width;
int m_height;
TQPixmap m_lastRenderedPixmap;
TQPixmap m_lastRenderedOverlay;
TQRect m_overlayGeometry;
const KPDFLink * m_pressedLink;
bool m_handCursor;
// transition related
TQTimer * m_transitionTimer;
TQTimer * m_overlayHideTimer;
TQTimer * m_nextPageTimer;
int m_transitionDelay;
int m_transitionMul;
TQValueList< TQRect > m_transitionRects;
// misc stuff
KPDFDocument * m_document;
TQValueVector< PresentationFrame * > m_frames;
int m_frameIndex;
TQStringList m_metaStrings;
TDEToolBar * m_topBar;
TDEAccel * m_accel;
private slots:
void slotNextPage();
void slotPrevPage();
void slotFirstPage();
void slotLastPage();
void slotHideOverlay();
void slotTransitionStep();
};
#endif
|