#include "camtypes.h"
#include "csrstack.h"
#include "bfxbase.h"
#include "module.h"
#include "pathedit.h"
#include "opbreak.h"
#include "opsmooth.h"
#include "moldedit.h"
#include "layer.h"
#include "ngsetop.h"
Go to the source code of this file.
Functions | |
BOOL | InitPreTools () |
|
Definition at line 137 of file main1.cpp. 00138 { 00139 return 00140 ( 00141 InitMaths() // Init Maths class 00142 && InitHandles() // Init Handles Manager 00143 && InitMemory() // Init Memory Manager 00144 && CursorStack::Init() // Must come before tool initialisation. 00145 PORTNOTE("other","Removed BFX") 00146 #if !defined(EXCLUDE_BFX) 00147 && BitmapEffectBase::Init() // must be before anything using this subsystem 00148 #endif 00149 && Module::InitModules() 00150 && Layer::Init() // Init the layer system 00151 && Operation::Initialise() // Init the operations system 00152 PORTNOTE("other","Removed PluginOILFilter, various Op initializers, Layer system, operation system, dibutils, namingsystem usage") 00153 #ifndef STANDALONE 00154 && OpDeletePoints::Init() // Deletes selected points 00155 && OpBreakAtPoints::Init() // Init the break at points operator 00156 && OpSmoothSelection::Init() // Init the smooth selection operator 00157 && OpDragOrigin::Init() // Init the ability to drag origin blobs 00158 #endif 00159 #ifndef EXCLUDE_FROM_XARALX 00160 #ifndef STANDALONE 00161 && DIBUtil::Init() // Init the dibutil stuff (here as needs prefs set up) 00162 && InitNamingSystem() // must be before tool info-bars are loaded 00163 #endif 00164 && PluginOILFilter::AutoRegisterFilters() 00165 #endif 00166 && StringVar::Init() 00167 ); 00168 }
|