Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

NewModelDialog.cxx

Go to the documentation of this file.
00001 
00012 #include "NewModelDialog.h"
00013 
00014 #include <qspinbox.h>
00015 #include <qlineedit.h>
00016 
00017 using std::string;
00018 
00019 NewModelDialog::
00020 NewModelDialog ( QWidget * parent )
00021   : NewModelDialogBase ( parent )
00022 {
00023 }
00024 
00025 int NewModelDialog::
00026 get_brk_pt ( )
00027 {
00028   return brk_pt -> value ( );
00029 }
00030 
00031 int NewModelDialog::
00032 get_flat_width ( )
00033 {
00034   return flat_width -> value ( );
00035 }
00036 
00037 int NewModelDialog::
00038 get_color_scale ( )
00039 {
00040   return color_scale -> value ( );
00041 }
00042 
00043 QString NewModelDialog::
00044 get_model_name ( )
00045 {
00046   return model_name -> text ();
00047 }
00048 
00049 void NewModelDialog::
00050 set_brk_pt (int val )
00051 {
00052   brk_pt -> setValue ( val );
00053 }
00054 
00055 void NewModelDialog::
00056 set_flat_width ( int val )
00057 {
00058   flat_width -> setValue ( val );
00059 }
00060 
00061 void NewModelDialog::
00062 set_color_scale ( int val )
00063 {
00064   color_scale -> setValue ( val );
00065 }
00066 
00067 

Generated for HippoDraw-1.14.8.5 by doxygen 1.4.3