Home
last modified time | relevance | path

Searched refs:SKGTableWithGraph (Results 1 – 7 of 7) sorted by relevance

/dports/finance/skrooge/skrooge-2.26.1/skgbasegui/
H A Dskgtablewithgraph.h31 class SKGBASEGUI_EXPORT SKGTableWithGraph : public QWidget
93 SKGTableWithGraph();
99 explicit SKGTableWithGraph(QWidget* iParent);
104 ~SKGTableWithGraph() override;
136 SKGTableWithGraph::DisplayAdditionalFlag getAdditionalDisplayMode() const;
178 SKGTableWithGraph::GraphType getGraphType() const;
232SKGTableWithGraph::DisplayAdditionalFlag iAdditionalInformation = SKGTableWithGraph::ALL,
258 void setGraphType(SKGTableWithGraph::GraphType iType);
427 Q_DISABLE_COPY(SKGTableWithGraph)
502 Q_DECLARE_OPERATORS_FOR_FLAGS(SKGTableWithGraph::DisplayAdditionalFlag)
H A Dskgtablewithgraph.cpp90 SKGTableWithGraph::SKGTableWithGraph() : SKGTableWithGraph(nullptr) in SKGTableWithGraph() function in SKGTableWithGraph
93 SKGTableWithGraph::SKGTableWithGraph(QWidget* iParent) in SKGTableWithGraph() function in SKGTableWithGraph
291 SKGTableWithGraph::~SKGTableWithGraph() in ~SKGTableWithGraph()
525 QString SKGTableWithGraph::getState() in getState()
756 SKGTableWithGraph::DisplayAdditionalFlag SKGTableWithGraph::getAdditionalDisplayMode() const in getAdditionalDisplayMode()
868 void SKGTableWithGraph::refresh() in refresh()
1250 void SKGTableWithGraph::resetColors() in resetColors()
1371 void SKGTableWithGraph::redrawText() in redrawText()
2783 void SKGTableWithGraph::onExport() in onExport()
2796 void SKGTableWithGraph::setGraphType(SKGTableWithGraph::GraphType iType) in setGraphType()
[all …]
/dports/finance/skrooge/skrooge-2.26.1/tests/skgbaseguitest/
H A Dskgtesttablewithgraph.cpp17 SKGTableWithGraph graph(nullptr); in Test()
69 QCOMPARE(graph.getAdditionalDisplayMode(), SKGTableWithGraph::ALL); in Test()
84 graph.setGraphType(static_cast<SKGTableWithGraph::GraphType>(i)); in Test()
85 QCOMPARE(graph.getGraphType(), static_cast<SKGTableWithGraph::GraphType>(i)); in Test()
/dports/finance/skrooge/skrooge-2.26.1/skgbaseguidesigner/
H A Dskgtablewithgraphdesignerplugin.cpp42 return new SKGTableWithGraph(iParent); in createWidget()
/dports/finance/skrooge/skrooge-2.26.1/plugins/skrooge/skrooge_report/
H A Dskgreportpluginwidget.cpp211 …connect(ui.kTableWithGraph, &SKGTableWithGraph::selectionChanged, this, &SKGReportPluginWidget::on… in SKGReportPluginWidget()
235 …connect(ui.kTableWithGraph, &SKGTableWithGraph::cellDoubleClicked, this, &SKGReportPluginWidget::o… in SKGReportPluginWidget()
1365 SKGTableWithGraph::DisplayAdditionalFlag dmode = SKGTableWithGraph::NONE; in dataModified()
1367 dmode |= SKGTableWithGraph::AVERAGE | SKGTableWithGraph::LIMITS; in dataModified()
1375 dmode |= SKGTableWithGraph::SUM; in dataModified()
/dports/finance/skrooge/skrooge-2.26.1/plugins/skrooge/skrooge_unit/
H A Dskgunitpluginwidget.cpp363 ui.kGraph->setData(table, primaryUnit, secondaryUnit, SKGTableWithGraph::LIMITS); in onSelectionChanged()
747 ui.kGraph->setGraphType(SKGTableWithGraph::LINE); in setState()
/dports/finance/skrooge/skrooge-2.26.1/plugins/skrooge/skrooge_bank/
H A Dskgbankpluginwidget.cpp80 …(QStringLiteral("graphMode"), SKGServices::intToString(static_cast<int>(SKGTableWithGraph::LINE))); in SKGBankPluginWidget()