krita
kis_view_iface.cc00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "kis_view_iface.h"
00022
00023 #include "kis_view.h"
00024
00025 #include <dcopclient.h>
00026
00027 KisViewIface::KisViewIface( KisView *view_ )
00028 : KoViewIface( view_ )
00029 {
00030 m_view = view_;
00031 }
00032
00033 void KisViewIface::copy()
00034 {
00035
00036 }
00037
00038 void KisViewIface::cut()
00039 {
00040
00041 }
00042
00043 void KisViewIface::removeSelection()
00044 {
00045
00046 }
00047
00048 void KisViewIface::paste()
00049 {
00050
00051 }
00052
00053 void KisViewIface::copySelectionToNewLayer()
00054 {
00055
00056 }
00057
00058 void KisViewIface::selectAll()
00059 {
00060
00061 }
00062
00063 void KisViewIface::unSelectAll()
00064 {
00065
00066 }
00067
00068
00069
00070 void KisViewIface::slotImportImage()
00071 {
00072 }
00073
00074
00075 void KisViewIface::rotateLayer180()
00076 {
00077 m_view->rotateLayer180();
00078 }
00079
00080 void KisViewIface::rotateLayerLeft90()
00081 {
00082 m_view->rotateLayerLeft90();
00083 }
00084
00085 void KisViewIface::rotateLayerRight90()
00086 {
00087 m_view->rotateLayerRight90();
00088 }
00089
00090 void KisViewIface::mirrorLayerX()
00091 {
00092 m_view->mirrorLayerX();
00093 }
00094
00095 void KisViewIface::mirrorLayerY()
00096 {
00097 m_view->mirrorLayerY();
00098 }
|