Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

SIG_MovieSettingsDialog.cpp

00001 #include "SIGEL_SlaveGUI/SIG_MovieSettingsDialog.h"
00002 #include <qfiledialog.h>
00003 
00004 namespace SIGEL_SlaveGUI
00005 {
00006 
00007 /* 
00008  *  Constructs a SIG_MovieSettingsDialog which is a child of 'parent', with the 
00009  *  name 'name' and widget flags set to 'f' 
00010  *
00011  *  The dialog will by default be modeless, unless you set 'modal' to
00012  *  TRUE to construct a modal dialog.
00013  */
00014 SIG_MovieSettingsDialog::SIG_MovieSettingsDialog( QWidget* parent,  const char* name, bool modal, WFlags fl )
00015     : SIG_MovieSettingsDialogBase( parent, name, modal, fl )
00016 {
00017 };
00018 
00019 /*  
00020  *  Destroys the object and frees any allocated resources
00021  */
00022 SIG_MovieSettingsDialog::~SIG_MovieSettingsDialog()
00023 {
00024     // no need to delete child widgets, Qt does it all for us
00025 };
00026 
00027 /* 
00028  * public slot
00029  */
00030 void SIG_MovieSettingsDialog::slotToolButtonClicked()
00031 {
00032   QString newDirectory = QFileDialog::getExistingDirectory( lineeditDirectory->text(), this, "SIG_MOvieSettingsDialogslotToolButtonClicked", "Select movie directory...", true );
00033   if( !newDirectory.isNull() )
00034     lineeditDirectory->setText( newDirectory );
00035 };
00036 
00037 }

Generated at Mon Sep 3 01:32:28 2001 for PG 368 - SIGEL by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000