File indexing completed on 2024-09-22 05:16:07

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2009 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KASTEN_ZOOMBARCONTROLLER_HPP
0010 #define KASTEN_ZOOMBARCONTROLLER_HPP
0011 
0012 // Kasten gui
0013 #include <Kasten/AbstractXmlGuiController>
0014 
0015 namespace Kasten {
0016 
0017 class ZoomSlider;
0018 namespace If {
0019 class Zoomable;
0020 }
0021 class StatusBar;
0022 
0023 class ZoomBarController : public AbstractXmlGuiController
0024 {
0025     Q_OBJECT
0026 
0027 public:
0028     explicit ZoomBarController(StatusBar* statusBar);
0029 
0030 public: // AbstractXmlGuiController API
0031     void setTargetModel(AbstractModel* model) override;
0032 
0033 private:
0034     ZoomSlider* mZoomSlider;
0035 };
0036 
0037 }
0038 
0039 #endif