krita
kis_view_iface.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef KRAYON_VIEW_IFACE_H
00020 #define KRAYON_VIEW_IFACE_H
00021
00022 #include <KoViewIface.h>
00023
00024 #include <qstring.h>
00025
00026 class KisView;
00027
00032 class KisViewIface : public KoViewIface
00033 {
00034 K_DCOP
00035 public:
00036 KisViewIface( KisView *view_ );
00037 k_dcop:
00038 void copy();
00039 void cut();
00040 void removeSelection();
00041 void paste();
00042 void copySelectionToNewLayer();
00043 void selectAll();
00044 void unSelectAll();
00045
00046 void slotImportImage();
00047
00048 void rotateLayer180();
00049 void rotateLayerLeft90();
00050 void rotateLayerRight90();
00051 void mirrorLayerX();
00052 void mirrorLayerY();
00053
00054 private:
00055 KisView *m_view;
00056 };
00057
00058 #endif
|