swift
scalescreenfactor.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_GUI_COMPONENTS_SCALESCREENFACTOR_H
7 #define SWIFT_GUI_COMPONENTS_SCALESCREENFACTOR_H
8 
9 #include <QFrame>
10 #include <QScopedPointer>
11 
12 #include "gui/swiftguiexport.h"
13 
14 namespace Ui
15 {
16  class CScaleScreenFactor;
17 }
18 namespace swift::gui::components
19 {
23  class SWIFT_GUI_EXPORT CScaleScreenFactor : public QFrame
24  {
25  Q_OBJECT
26 
27  public:
29  explicit CScaleScreenFactor(QWidget *parent = nullptr);
30 
32  virtual ~CScaleScreenFactor() override;
33 
35  void setMinMax(int min, int max);
36 
38  qreal getScaleFactor() const;
39 
41  QString getScaleFactorAsString() const;
42 
43  private:
45  void onSliderChanged(int value);
46 
48  void onEditFinished();
49 
50  QScopedPointer<Ui::CScaleScreenFactor> ui;
51  };
52 } // namespace swift::gui::components
53 
54 #endif // SWIFT_GUI_COMPONENTS_SCALESCREENFACTOR_H
High level reusable GUI components.
Definition: aboutdialog.cpp:13
#define SWIFT_GUI_EXPORT
Export a class or function from the library.