Krita Source Code Documentation
Loading...
Searching...
No Matches
wdg_side.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023 Srirupa Datta <srirupa.sps@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef WDG_SIDE_H
8#define WDG_SIDE_H
9
10#include <QWidget>
11#include <KoResourceBundle.h>
12
13namespace Ui {
14class WdgSide;
15}
16
17class WdgSide : public QWidget
18{
19 Q_OBJECT
20
21public:
22 explicit WdgSide(KoResourceBundleSP bundle, QWidget *parent = nullptr);
23 ~WdgSide();
24
25private:
26 Ui::WdgSide *m_ui;
27
28public Q_SLOTS:
29 void focusLabel(int id);
30
31private:
33};
34
35#endif // WDG_SIDE_H
void focusLabel(int id)
Definition wdg_side.cpp:50
Ui::WdgSide * m_ui
Definition wdg_side.h:26
KoResourceBundleSP m_bundle
Definition wdg_side.h:32
WdgSide(KoResourceBundleSP bundle, QWidget *parent=nullptr)
Definition wdg_side.cpp:16