]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxBlackBox.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxBlackBox.h
index 700fa3e044a32849732f2995e398f759f1a3c0c0..d259a874be3b584c15bbea4c7a5dd3f5f34ee57f 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxBlackBox.h,v $
   Language:  C++
-  Date:      $Date: 2008/03/10 12:28:43 $
-  Version:   $Revision: 1.9 $
+  Date:      $Date: 2008/04/08 06:59:30 $
+  Version:   $Revision: 1.10 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -129,8 +129,10 @@ namespace bbtk
 
     
 
-
-
+    //==================================================================
+    /// Main processing method of the box.
+    virtual IOStatus bbBackwardUpdate( Connection* caller );
+    //==================================================================
 
 
 
@@ -209,16 +211,16 @@ namespace bbtk
   BBTK_CATEGORY("widget");
   BBTK_INPUT(WxBlackBox,WinTitle,
             "Title of the window (*)",
-            std::string);
+            std::string,"");
   BBTK_INPUT(WxBlackBox,WinWidth,
-            "Width of the window (* : only used if the widget is not inserted in another widget)",int);
+            "Width of the window (* : only used if the widget is not inserted in another widget)",int,"");
   BBTK_INPUT(WxBlackBox,WinHeight,
-            "Height of the window (*)",int);
+            "Height of the window (*)",int,"");
   BBTK_INPUT(WxBlackBox,WinDialog,
-            "Set to 'true' to create a dialog window, i.e. which blocks the pipeline until it is closed (modal) (*)",bool);
+            "Set to 'true' to create a dialog window, i.e. which blocks the pipeline until it is closed (modal) (*)",bool,"");
   BBTK_INPUT(WxBlackBox,WinHide,
-            "Any signal received hides the window (*)",Void);
-  BBTK_OUTPUT(WxBlackBox,Widget,"Output widget",wxWindow*);
+            "Any signal received hides the window (*)",Void,"");
+  BBTK_OUTPUT(WxBlackBox,Widget,"Output widget",wxWindow*,"");
   BBTK_END_DESCRIBE_BLACK_BOX(WxBlackBox);
   //=================================================================