Krita Source Code Documentation
Loading...
Searching...
No Matches
KoZoomToolWidget.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2008 Martin Pfeiffer <hubipete@gmx.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef KOZOOMTOOLWIDGET_H
7#define KOZOOMTOOLWIDGET_H
8
9#include <QWidget>
10#include <QPixmap>
11#include "ui_KoZoomToolWidget.h"
12
13class KoZoomTool;
14
15class KoZoomToolWidget : public QWidget, Ui::ZoomToolWidget
16{
17 Q_OBJECT
18public:
19 explicit KoZoomToolWidget(KoZoomTool* tool, QWidget *parent = 0);
20 ~KoZoomToolWidget() override;
21
22private Q_SLOTS:
23 void changeZoomMode();
24private:
26};
27
28#endif
KoZoomTool * m_tool
~KoZoomToolWidget() override
KoZoomToolWidget(KoZoomTool *tool, QWidget *parent=0)