]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
no message
authorstv <stv@opencascade.com>
Fri, 11 Nov 2005 08:02:27 +0000 (08:02 +0000)
committerstv <stv@opencascade.com>
Fri, 11 Nov 2005 08:02:27 +0000 (08:02 +0000)
src/STD/STD_CloseDlg.cxx
src/STD/STD_LoadStudiesDlg.cxx
src/STD/STD_LoadStudiesDlg.h

index a894f54b3a78d60f4d691b7a98691cf818761bfd..4db2d0bd9747d2d18322bbab4d1e8ae26ab944f0 100644 (file)
@@ -1,35 +1,33 @@
 #include "STD_CloseDlg.h"
 
-#include <qpushbutton.h>
-#include <qhbuttongroup.h>
-#include <qlayout.h> 
 #include <qlabel.h> 
+#include <qlayout.h> 
+#include <qpushbutton.h>
 #include <qmessagebox.h>
+#include <qhbuttongroup.h>
 
 #ifndef WNT
 using namespace std;
 #endif
 
-//================================================================================
 /*!
  * \brief creates a Close dialog box
  * \param parent a parent widget
  * \param modal bool argument, if true the dialog box is a modal dialog box
  * \param f style flags
- * 
  */
-//================================================================================
 
-STD_CloseDlg::STD_CloseDlg ( QWidget * parent, bool modal, WFlags f )
-     : QDialog ( parent, "", TRUE,  WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu )
+STD_CloseDlg::STD_CloseDlg( QWidget* parent, bool modal, WFlags f )
+: QDialog( parent, "", true,  WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu )
 {
-  setSizeGripEnabled ( TRUE ) ;
+  setSizeGripEnabled( true );
   setCaption( tr( "CLOSE_DLG_CAPTION" ) );
 
   QVBoxLayout* m_vbL = new QVBoxLayout( this );
-  m_vbL->setMargin( 11 ); m_vbL->setSpacing( 6 );
+  m_vbL->setMargin( 11 );
+  m_vbL->setSpacing( 6 );
 
-  QLabel* m_lIcon  = new QLabel (this, "m_lDescr");
+  QLabel* m_lIcon = new QLabel( this, "m_lDescr" );
   QPixmap pm = QMessageBox::standardIcon( QMessageBox::Warning );
   m_lIcon->setPixmap( pm );
   m_lIcon->setScaledContents( false );
index f34716a591c31b35b7b54cf2b6da7e198185a03a..0c876139cf3350adaf90549aac6f82c074b13aa9 100644 (file)
@@ -5,26 +5,20 @@
 #include <qlistbox.h>
 #include <qpushbutton.h>
 
-#ifndef WNT
-using namespace std;
-#endif
-
 #define SPACING_SIZE             6
 #define MARGIN_SIZE             11
 #define MIN_LISTBOX_WIDTH      150
 #define MIN_LISTBOX_HEIGHT     100
 
-//================================================================================
-/*! Public -
- * \brief creates a Load study dialog box
- * \param parent a parent widget
- * \param modal bool argument, if true the dialog box is a modal dialog box
- * \param f style flags
- * 
- */
-//================================================================================
+/*!
+* \brief creates a Load study dialog box
+* \param parent a parent widget
+* \param modal bool argument, if true the dialog box is a modal dialog box
+* \param f style flags
+*/
+
 STD_LoadStudiesDlg::STD_LoadStudiesDlg( QWidget* parent,  bool modal, WFlags fl )
-    : QDialog(parent, "STD_LoadStudiesDlg", modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
+: QDialog( parent, "STD_LoadStudiesDlg", modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu )
 {
     resize( 321, 181 ); 
     setCaption( tr("DLG_LOAD_STUDY_CAPTION") );
index 52786808f785ddbf8aaa620548f2305ed9649848..794dccf6a6e0f6fcb610d16f5de1475fd0bf179c 100644 (file)
@@ -1,16 +1,18 @@
 #ifndef STD_LOADSTUDIESDLG_H
 #define STD_LOADSTUDIESDLG_H
 
-#include <qvariant.h>
-#include <qdialog.h>
 #include <STD.h>
+
+#include <qdialog.h>
+#include <qvariant.h>
+
+class QLabel;
+class QListBox;
+class QPushButton;
 class QVBoxLayout; 
 class QHBoxLayout; 
 class QGridLayout; 
-class QLabel;
-class QListBox;
 class QListBoxItem;
-class QPushButton;
 
 /*!\class STD_LoadStudiesDlg
  * \brief Describes a dialog box that gives a list of opened studies.