imageevent.cpp
来自「这是VCF框架的代码」· C++ 代码 · 共 110 行
CPP
110 行
//ImageEvent.cpp/*Copyright 2000-2004 The VCF Project.Please see License.txt in the top level directorywhere you installed the VCF.*/#include "vcf/GraphicsKit/GraphicsKit.h"using namespace VCF;ImageEvent::ImageEvent( Object* source ): Event( source ){}ImageEvent::~ImageEvent(){}void ImageEvent::init(){ this->newWidth_ = 0; this->newHeight_ = 0;}unsigned long ImageEvent::getNewWidth(){ return this->newWidth_;}void ImageEvent::setNewWidth( const unsigned long& newWidth ){ this->newWidth_ = newWidth;}unsigned long ImageEvent::getNewHeight(){ return this->newHeight_;}void ImageEvent::setNewHeight( const unsigned long& newHeight ){ this->newHeight_ = newHeight;}/***CVS Log info*$Log$*Revision 1.2 2004/08/07 02:49:17 ddiego*merged in the devmain-0-6-5 branch to stable**Revision 1.1.2.2 2004/04/29 04:10:27 marcelloptr*reformatting of source files: macros and csvlog and copyright sections**Revision 1.1.2.1 2004/04/28 18:42:26 ddiego*migrating over changes for unicode strings.*This contains fixes for the linux port and changes to the Makefiles**Revision 1.1.2.1 2004/04/28 00:28:17 ddiego*migration towards new directory structure**Revision 1.8 2004/04/03 15:48:45 ddiego*Merged over code from the 0-6-3 branch.**Revision 1.7.6.2 2004/02/24 01:42:44 ddiego*initial OSX ApplicationKit port checkin**Revision 1.7 2003/05/17 20:37:18 ddiego*this is the checkin for the 0.6.1 release - represents the merge over from*the devmain-0-6-0 branch plus a few minor bug fixes**Revision 1.6.10.3 2003/03/23 06:46:01 marcelloptr*minor fixes**Revision 1.6.10.2 2003/03/23 03:23:54 marcelloptr*3 empty lines at the end of the files**Revision 1.6.10.1 2003/03/12 03:11:56 ddiego*switched all member variable that used the "m_"<name> prefix to* <name>"_" suffix nameing standard.*Also changed all vcf builder files to accomadate this.*Changes were made to the Stream classes to NOT multiple inheritance and to*be a little more correct. Changes include breaking the FileStream into two*distinct classes, one for input and one for output.**Revision 1.6 2002/09/12 03:26:05 ddiego*merged over the changes from the devmain-0-5-5b branch**Revision 1.5.12.1 2002/08/06 02:57:36 ddiego*added base X11 files for GraphicsKit and made sure that the GraphicsKit compiles*under linux (GCC). There is now a new dir under build/xmake called GraphicsKit*where the xmake build script lives. This checkin also includes the base X11*include (as part of GraphicsKitPrivate.h), as well as linking to the X11 libs**Revision 1.5 2002/01/24 01:46:49 ddiego*added a cvs "log" comment to the top of all files in vcf/src and vcf/include*to facilitate change tracking**/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?