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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/* This file is part of the KDE project
Copyright (C) 2006-2009 Thorsten Zachmann <zachmann@kde.org>
Copyright (C) 2009 Inge Wallin <inge@lysator.liu.se>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KOPAVIEW_H
#define KOPAVIEW_H
#include "KoPAViewBase.h"
#include "KoPageApp.h"
#include "kopageapp_export.h"
#include <KoView.h>
#include <KoZoomMode.h>
class KoPart;
class KoPACanvasBase;
class KoPADocument;
class KoPAPageBase;
class KoPAViewMode;
class KoPADocumentStructureDocker;
class KoRuler;
class KoShapeManager;
class KoZoomController;
class KUrl;
class KAction;
class QTextDocument;
class QTabBar;
class KoCopyController;
class KoCutController;
/// Creates a view with a KoPACanvasBase and rulers
class KOPAGEAPP_EXPORT KoPAView : public KoView, public KoPAViewBase
{
Q_OBJECT
public:
enum KoPAAction
{
ActionInsertPage = 1,
ActionCopyPage = 2,
ActionDeletePage = 4,
ActionViewShowMasterPages = 8,
ActionFormatMasterPage = 16,
AllActions = 0xFF
};
enum KoPAFlags
{
NormalMode =1,
ModeBox = 2
};
/**
* Constructor
* @param document the document of this view
* @param parent the parent widget
*/
explicit KoPAView(KoPart *part, KoPADocument *document, KoPAFlags withModeBox, QWidget *parent);
virtual ~KoPAView();
// KoPAViewBase/KoView overrides
void addImages(const QList<QImage> &imageList, const QPoint &insertAt);
KoZoomController* zoomController() const;
KoCopyController* copyController() const;
KoCutController* cutController() const;
KAction* deleteSelectionAction() const;
void updateReadWrite( bool readwrite );
KoRuler *horizontalRuler();
KoRuler *verticalRuler();
/// @return the canvas for the application
KoPACanvasBase * kopaCanvas() const;
/// @return the document for the application
KoPADocument * kopaDocument() const;
/// @return Page that is shown in the canvas
KoPAPageBase* activePage() const;
/// Set page shown in the canvas to @p page
void setActivePage( KoPAPageBase * page );
void navigatePage( KoPageApp::PageNavigation pageNavigation );
/// @return the shape manager used for this view
KoShapeManager* shapeManager() const;
/// @return the master shape manager used for this view
KoShapeManager* masterShapeManager() const;
/**
* @brief Enables/Disables the given actions
*
* The actions are of Type KoPAAction
*
* @param actions which should be enabled/disabled
* @param enable new state of the actions
*/
void setActionEnabled( int actions, bool enable );
/**
* @brief Set the view mode
*
* @param mode the new view mode
*/
void setViewMode( KoPAViewMode* mode );
/**
* Set the active page and updates the UI
*/
void doUpdateActivePage( KoPAPageBase * page );
/**
* Paste the page if everything is ok
*/
void pagePaste();
/// reimplemented
virtual KoPrintJob * createPrintJob();
/**
* Get the thumbnail for the page.
*
* Us this method instead the on in the pages directly
*/
QPixmap pageThumbnail(KoPAPageBase* page, const QSize& size);
/**
* Save thumbnail to an image file.
*
* Export a thumbnail to disk using a pixmap file like e.g. PNG
* This method uses a QPixmap::save() call.
*
* @param page page to get thumbnail of
* @param url the url of the image file to be created
* @param size the desired image size in px
* @param format the format of the image file (see QPixmap::save())
* @param quality the quality of the image in [0,100] or -1 to use default (see QPixmap::save())
*
* @returns whether the image was successfully saved
*/
bool exportPageThumbnail( KoPAPageBase * page, const KUrl& url, const QSize& size = QSize( 512, 512 ),
const char * format = 0, int quality = -1 );
/// Update page navigation actions
void updatePageNavigationActions();
/// Shows/hides the rulers
void setShowRulers(bool show);
/// Insert a new page after the current one
void insertPage();
void centerPage();
/// return a pointer to the tab bar (horizontal by default)
QTabBar *tabBar() const;
/// set view Tab Bar position (vertical / horizontal)
void setTabBarPosition(Qt::Orientation orientation);
/// Show a custom central widget and hides the standard one.
void replaceCentralWidget(QWidget *newWidget);
/// hides any custom central widget and shows the standard widget.
void restoreCentralWidget();
Q_SIGNALS:
/// emitted when select All action is triggered and the view is not visible
void selectAllRequested();
/// emitted when deselect All action is triggered and the view is not visible
void deselectAllRequested();
protected:
/// creates the widgets (called from the constructor)
void initGUI(KoPAFlags flags);
/// creates the actions (called from the constructor)
void initActions();
/// Returns the document structure docker
KoPADocumentStructureDocker* documentStructureDocker() const;
bool isMasterUsed( KoPAPageBase * page );
void editPaste();
void hideCustomCentralWidget();
public Q_SLOTS:
/// Copy Page
void copyPage();
/// Delete the current page
void deletePage();
/// Make sure the canvas size matches the content
void updateCanvasSize(bool forceUpdate = false);
protected Q_SLOTS:
void pageUpdated(KoPAPageBase* page);
void viewSnapToGrid(bool snap);
void viewGuides(bool show);
void slotZoomChanged( KoZoomMode::Mode mode, qreal zoom );
void editDeleteSelection();
void editSelectAll();
void editDeselectAll();
void formatMasterPage();
void formatPageLayout();
/// Change the current view mode to work on master pages
void setMasterMode( bool master );
// update the rulers
void pageOffsetChanged();
/// Called when the mouse position changes on the canvas
virtual void updateMousePosition(const QPoint& position);
/// Called when the selection changed
virtual void selectionChanged();
/// Called when the clipboard changed
virtual void clipboardDataChanged();
/// Go to the previous page
void goToPreviousPage();
/// Go to the next page
void goToNextPage();
/// Go to the first page
void goToFirstPage();
/// Go to the last page
void goToLastPage();
/**
* Set the next document that should be used in find
*
* @param document The current document
*/
void findDocumentSetNext( QTextDocument * document );
/**
* Set the previous document that should be used in find
*
* @param document The current document
*/
void findDocumentSetPrevious( QTextDocument * document );
/**
* Re-initialize the document structure docker after active document in this
* view has been changed
*/
void reinitDocumentDocker();
/**
* Import slideshow
*/
void importDocument();
/**
* Configure kopapage apps
*/
void configure();
/**
* This is called when the unit of the document changes
*/
void updateUnit(const KoUnit &unit);
private:
class Private;
Private * const d;
};
#endif /* KOPAVIEW_H */
|