00001
00002
00003
00004
00005
00006
00007 #include "BackgroundStateContext.h"
00008 #include "BackgroundStateUnloaded.h"
00009 #include "DocumentModelColorFilter.h"
00010 #include "DocumentModelGridRemoval.h"
00011 #include "GraphicsScene.h"
00012 #include "GraphicsView.h"
00013 #include "Logger.h"
00014 #include <QPixmap>
00015
00016 BackgroundStateUnloaded::BackgroundStateUnloaded(BackgroundStateContext &context,
00017 GraphicsScene &scene) :
00018 BackgroundStateAbstractBase(context,
00019 scene)
00020 {
00021 }
00022
00023 void BackgroundStateUnloaded::begin()
00024 {
00025 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::begin";
00026 }
00027
00028 void BackgroundStateUnloaded::end()
00029 {
00030 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::end";
00031 }
00032
00033 void BackgroundStateUnloaded::fitInView (GraphicsView & )
00034 {
00035 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::fitInView";
00036 }
00037
00038 void BackgroundStateUnloaded::setCurveSelected (const Transformation & ,
00039 const DocumentModelGridRemoval & ,
00040 const DocumentModelColorFilter & ,
00041 const QString & )
00042 {
00043 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::setCurveSelected";
00044 }
00045
00046 void BackgroundStateUnloaded::setPixmap (const Transformation & ,
00047 const DocumentModelGridRemoval & ,
00048 const DocumentModelColorFilter & ,
00049 const QPixmap & ,
00050 const QString & )
00051 {
00052 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::setPixmap";
00053
00054
00055 }
00056
00057 QString BackgroundStateUnloaded::state () const
00058 {
00059 return "BackgroundStateUnloaded";
00060 }
00061
00062 void BackgroundStateUnloaded::updateColorFilter (const Transformation & ,
00063 const DocumentModelGridRemoval & ,
00064 const DocumentModelColorFilter & ,
00065 const QString & )
00066 {
00067 LOG4CPP_INFO_S ((*mainCat)) << "BackgroundStateUnloaded::updateColorFilter";
00068 }