Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.h
index 5360f35dbba39a443ee05b2e460c5a06f4fe2b54..81be16e7147393948d10d37798436a0342d03f50 100644 (file)
@@ -21,8 +21,9 @@ class ModuleBase_IWorkshop;
 
 class MODULEBASE_EXPORT ModuleBase_WidgetFactory
 {
-public:
-  ModuleBase_WidgetFactory(const std::string& theXmlRepresentation, ModuleBase_IWorkshop* theWorkshop);
+ public:
+  ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
+                           ModuleBase_IWorkshop* theWorkshop);
   virtual ~ModuleBase_WidgetFactory();
 
   void createWidget(QWidget* theParent);
@@ -32,7 +33,7 @@ public:
     return myModelWidgets;
   }
 
-protected:
+ protected:
   //Widgets
   QWidget* createWidgetByType(const std::string& theType, QWidget* theParent = NULL);
   QWidget* labelControl(QWidget* theParent);
@@ -53,9 +54,9 @@ protected:
 
   QString qs(const std::string& theStdString) const;
 
-private:
+ private:
   Config_WidgetAPI* myWidgetApi;
-  ModuleBase_IWorkshop*   myWorkshop;
+  ModuleBase_IWorkshop* myWorkshop;
 
   QList<ModuleBase_ModelWidget*> myModelWidgets;
   std::string myParentId;