]> Creatis software - cpPlugins.git/commitdiff
Some indentation
authorLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Fri, 26 Dec 2014 15:09:09 +0000 (16:09 +0100)
committerLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Fri, 26 Dec 2014 15:09:09 +0000 (16:09 +0100)
lib/cpPlugins/Extensions/Visualization/ImageInteractorStyle.cxx
lib/cpPlugins/Interface/Object.h
lib/third_party/Pluma/Config.hpp

index 1ff07395d41440c3ad07fc92e872f637053afe55..d69d1e3958a57dda651cf69a66dfdd06cb577096 100644 (file)
@@ -180,7 +180,7 @@ OnLeftButtonDown( )
 
   // TODO: check this code
   // Manage double-click
-  static const long epsilon_time = 250;
+  static const long epsilon_time = 800;
   static long last_click_time = -( epsilon_time << 1 );
   long click_time = static_cast< long >( std::clock( ) );
   if( ( click_time - last_click_time ) < epsilon_time )
index a51f657add190bd983f23b0975109292ae84c90f..b15d1f0824ccfb87e9c5542642d681918ce77205 100644 (file)
@@ -7,21 +7,21 @@
 #include <itkObjectFactory.h>
 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
 
-
 // -------------------------------------------------------------------------
-#define PLUMA_PROVIDER_HEADER_BEGIN_CPPLUGINS( TYPE )\
-class cpPlugins_Interface_EXPORT TYPE##Provider\
-: public pluma::Provider{\
-private:\
-    friend class pluma::Pluma;\
-    static const unsigned int PLUMA_INTERFACE_VERSION;\
-    static const unsigned int PLUMA_INTERFACE_LOWEST_VERSION;\
-    static const std::string PLUMA_PROVIDER_TYPE;\
-    std::string plumaGetType( ) const\
-{ return( PLUMA_PROVIDER_TYPE ); }\
-public:\
-    unsigned int getVersion( ) const\
-{ return( PLUMA_INTERFACE_VERSION ); }
+#define PLUMA_PROVIDER_HEADER_BEGIN_CPPLUGINS( TYPE )           \
+  class cpPlugins_Interface_EXPORT TYPE##Provider               \
+    : public pluma::Provider                                    \
+  {                                                             \
+  private:                                                      \
+    friend class pluma::Pluma;                                  \
+    static const unsigned int PLUMA_INTERFACE_VERSION;          \
+    static const unsigned int PLUMA_INTERFACE_LOWEST_VERSION;   \
+    static const std::string PLUMA_PROVIDER_TYPE;               \
+    std::string plumaGetType( ) const                           \
+    { return( PLUMA_PROVIDER_TYPE ); }                          \
+  public:                                                       \
+    unsigned int getVersion( ) const                            \
+    { return( PLUMA_INTERFACE_VERSION ); }
 
 // -------------------------------------------------------------------------
 #define PLUMA_PROVIDER_HEADER_END_CPPLUGINS };
index 23c1635fb80fe9087f93ed0d7bc3d5f579ee29ec..2fa7df5a21627b5ad983ffc12e1f75cba07f9924 100644 (file)
 \r
 /* ===================================================================\r
  * florez-l@javeriana.edu.co: use dll macro defined from cmake instead\r
- * =================================================================== \r
-#if defined(PLUMA_SYS_WINDOWS)\r
+ * ===================================================================\r
+ #if defined(PLUMA_SYS_WINDOWS)\r
 \r
   #ifndef PLUMA_STATIC\r
+ #ifndef PLUMA_STATIC\r
 \r
       // Windows platforms\r
       #ifdef PLUMA_EXPORTS\r
+ // Windows platforms\r
+ #ifdef PLUMA_EXPORTS\r
 \r
           // From DLL side, we must export\r
           #define PLUMA_API __declspec(dllexport)\r
+ // From DLL side, we must export\r
+ #define PLUMA_API __declspec(dllexport)\r
 \r
       #else\r
+ #else\r
 \r
           // From client application side, we must import\r
           #define PLUMA_API __declspec(dllimport)\r
+ // From client application side, we must import\r
+ #define PLUMA_API __declspec(dllimport)\r
 \r
       #endif\r
+ #endif\r
 \r
       // For Visual C++ compilers, we also need to turn off this annoying C4251 warning.\r
       // You can read lots ot different things about it, but the point is the code will\r
       // just work fine, and so the simplest way to get rid of this warning is to disable it\r
       #ifdef _MSC_VER\r
+ // For Visual C++ compilers, we also need to turn off this annoying C4251 warning.\r
+ // You can read lots ot different things about it, but the point is the code will\r
+ // just work fine, and so the simplest way to get rid of this warning is to disable it\r
+ #ifdef _MSC_VER\r
 \r
           #pragma warning(disable : 4251)\r
+ #pragma warning(disable : 4251)\r
 \r
       #endif\r
+ #endif\r
 \r
   #else\r
+ #else\r
 \r
       // No specific directive needed for static build\r
       #define PLUMA_API\r
+ // No specific directive needed for static build\r
+ #define PLUMA_API\r
 \r
   #endif\r
+ #endif\r
 \r
-#else\r
+ #else\r
 \r
   // Other platforms don't need to define anything\r
   #define PLUMA_API\r
+ // Other platforms don't need to define anything\r
+ #define PLUMA_API\r
 \r
-#endif\r
+ #endif\r
 */\r
 \r
 #endif // PLUMA_CONFIG_HPP\r