00001 //# PlotMSOptionsTab.qo.h: Subclass of PlotMSTab for plotms options. 00002 //# Copyright (C) 2009 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id: $ 00027 #ifndef PLOTMSOPTIONSTAB_QO_H_ 00028 #define PLOTMSOPTIONSTAB_QO_H_ 00029 00030 #include <plotms/GuiTabs/PlotMSOptionsTab.ui.h> 00031 00032 #include <plotms/GuiTabs/PlotMSTab.qo.h> 00033 00034 namespace casa { 00035 00036 //# Forward declarations. 00037 class PlotMSLoggerWidget; 00038 class PlotMSParameters; 00039 00040 00041 // Subclass of PlotMSTab that handles options for PlotMSPlotter. Watches 00042 // PlotMS's PlotMSParameters for changes to update the GUI as needed. 00043 class PlotMSOptionsTab : public PlotMSTab, Ui::OptionsTab { 00044 Q_OBJECT 00045 00046 public: 00047 // Constructor which takes the parent plotter. 00048 PlotMSOptionsTab(PlotMSPlotter* parent); 00049 00050 // Destructor. 00051 ~PlotMSOptionsTab(); 00052 00053 00054 // Implements PlotMSTab::tabName(). 00055 QString tabName() const { return "Options"; } 00056 00057 // Implements PlotMSParametersWatcher::parametersHaveChanged(). Updates 00058 // the GUI as needed if the given parameters are the PlotMS parent's 00059 // parameters. 00060 void parametersHaveChanged(const PlotMSWatchedParameters& params, 00061 int updateFlag); 00062 00063 // Overrides PlotMSTab::setupForMaxWidth(). MUST be called before being 00064 // used, as it sets up the logging widget with it. 00065 void setupForMaxWidth(int maxWidth); 00066 00067 private: 00068 // Watched parameters for PlotMS. 00069 PlotMSParameters& itsParameters_; 00070 00071 // Flag for changing the parameters. 00072 bool itsChangeFlag_; 00073 00074 // Logger widget. 00075 PlotMSLoggerWidget* itsLoggerWidget_; 00076 00077 private slots: 00078 // When the user changes the tool button style on the GUI. 00079 void toolButtonStyleChanged(int newIndex); 00080 00081 // When the user changes the log events or priority on the GUI. 00082 void logChanged(); 00083 00084 // When the user changes the "clear selection" on the GUI. 00085 void clearSelectionChanged(bool value); 00086 00087 // When the user changes the cached image size. 00088 void cachedImageSizeChanged(); 00089 00090 // When the user sets the cached image size to screen resolution. 00091 void cachedImageSizeScreenResolution(); 00092 00093 // When the user changes the file chooser history limit. 00094 void historyLimitChanged(); 00095 00096 //When the grid size changes. 00097 void gridChanged(); 00098 }; 00099 00100 } 00101 00102 #endif /* PLOTMSOPTIONSTAB_QO_H_ */