Source
std::cout << "accepted service id: ( " << accepted_sid.id( ) << ", " << accepted_sid.uri( ) << ", ";
//# PlotMS.cc: Main controller for plotms.
//# Copyright (C) 2008
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This program is free software; you can redistribute it and/or modify it
//# under the terms of the GNU General Public License as published by the Free
//# Software Foundation; either version 2 of the License, or (at your option)
//# any later version.
//#
//# This program is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
//# more details.
//#
//# You should have received a copy of the GNU General Public License along
//# with this program; if not, write to the Free Software Foundation, Inc.,
//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//# Internet email: aips2-request@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
//#
//# $Id: $
using casatools::rpc::Registrar;
using namespace casacore;
namespace casa {
// TODO PlotMSAction: iteration, release cache. action for new plots. update
// hold/release action/button text.
// TODO PlotMSCache: multi-region locate
// TODO PlotMSLogger: log source (std out, text widget, casapy logger), better
// locate message, log message for parameters updated and action
// execution, log event flag for flag/unflag
// TODO PlotMSParameters: canvas background, fonts, grids, spacing, cartesian
// axes, limit zoom/pan cache size
// TODO PlotMSPlot: different colors within one plot, different types, shared
// caches
// TODO PlotMSPlotter: range padding, customize toolbars/tabs
// TODO PlotMSThread: background, pause/resume
// TODO PlotMSWidgets: label creator
// TODO PlotTool: set tracker font
////////////////////////
// PLOTMS DEFINITIONS //
////////////////////////
// Constructors/Destructors //
PlotMSApp::PlotMSApp(bool connectToDBus, bool userGui
, const casacore::String &casapy_address
) :
itsLastPlotter_(NULL), isGUI_(userGui), allow_popups(true),
itsExportFormat( PlotExportFormat::JPG, "")
, itsDBus_(NULL)
{
initialize(connectToDBus, userGui
, casapy_address
);
}