graphdialogconnector.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef GRAPHDIALOGCONNECTOR_H_
15 #define GRAPHDIALOGCONNECTOR_H_
16 
17 #include "xnodeconnector.h"
18 #include "graph.h"
19 
20 class QDialog;
21 class Ui_DlgGraphSetup;
23 
25  Q_OBJECT
26 public:
27  XQGraphDialogConnector(const shared_ptr<XGraph> &graph, DlgGraphSetup* item);
28  virtual ~XQGraphDialogConnector();
29 private:
30  DlgGraphSetup *const m_pItem;
31 
32  shared_ptr<XItemNode<XPlotList, XPlot> > m_selPlot;
33  shared_ptr<XItemNode<XAxisList, XAxis> > m_selAxis;
34  shared_ptr<XListener> m_lsnAxisChanged;
35  shared_ptr<XListener> m_lsnPlotChanged;
36 
37  xqcon_ptr m_conDrawLines, m_conDisplayMajorGrids,
38  m_conDisplayMinorGrids, m_conDrawPoints, m_conDrawBars,
39  m_conAutoScale, m_conLogScale,
40  m_conDisplayMajorTics, m_conDisplayMinorTics, m_conDisplayTicLabels,
41  m_conTicLabelFormat, m_conAxisMin, m_conAxisMax, m_conMaxCount,
42  m_conBackGround, m_conMajorGridColor,
43  m_conMinorGridColor, m_conPointColor, m_conLineColor, m_conBarColor, m_conClearPoints,
44  m_conColorPlot, m_conColorPlotColorHigh, m_conColorPlotColorLow,
45  m_conPlots, m_conAxes, m_conIntensity, m_conDrawLegends, m_conPersistence;
46 
47  void onSelAxisChanged(const Snapshot &shot, XValueNodeBase *node);
48  void onSelPlotChanged(const Snapshot &shot, XValueNodeBase *node);
49 
50 };
51 #endif /*GRAPHDIALOGCONNECTOR_H_*/

Generated for KAME4 by  doxygen 1.8.3