File: kcalc_history.h

package info (click to toggle)
kcalc 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,740 kB
  • sloc: cpp: 13,605; xml: 699; python: 49; makefile: 6; sh: 4
file content (45 lines) | stat: -rw-r--r-- 888 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
    SPDX-FileCopyrightText: 2021 Antonio Prcela <antonio.prcela@gmail.com>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef KCALC_HISTORY_H_
#define KCALC_HISTORY_H_

#include <QTextEdit>

/*
  This class provides a history display.
*/

class KCalcHistory : public QTextEdit
{
    Q_OBJECT

public:
    explicit KCalcHistory(QWidget *parent = nullptr);
    ~KCalcHistory() override;

    void addToHistory(const QString &, bool);
    void addResultToHistory(const QString &);
    void addFuncToHistory(const QString &);

    void changeSettings();
    void setFont(const QFont &font);
    const QFont &baseFont() const;

public Q_SLOTS:
    void clearHistory();

protected:
    void resizeEvent(QResizeEvent *event) override;

private:
    bool add_new_line_ = false;
    QFont baseFont_;
    double idealPointSizeF_;
    void updateFont(double zoomFactor = 1.0);
};

#endif