Krita Source Code Documentation
Loading...
Searching...
No Matches
dlg_embed_tags.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2020 Agata Cacko cacko.azh @gmail.com
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef DLG_EMBED_TAGS_H
7#define DLG_EMBED_TAGS_H
8
9#include <KoDialog.h>
10
11#include <KoResourceBundle.h>
12
13namespace Ui
14{
15class WdgDlgEmbedTags;
16}
17
18class DlgEmbedTags : public KoDialog
19{
20 Q_OBJECT
21
22public:
23 explicit DlgEmbedTags(QList<int> selectedTags, QWidget *parent = 0);
24 ~DlgEmbedTags() override;
25
27
28private Q_SLOTS:
29
30 void addSelected();
31 void removeSelected();
32 void resourceTypeSelected(int idx);
33
34private:
35
36 QWidget *m_page;
37 Ui::WdgDlgEmbedTags *m_ui;
38
40};
41
42#endif // DLG_EMBED_TAGS_H
~DlgEmbedTags() override
void resourceTypeSelected(int idx)
QWidget * m_page
QList< int > m_selectedTagIds
QList< int > selectedTagIds()
DlgEmbedTags(QList< int > selectedTags, QWidget *parent=0)
Ui::WdgDlgEmbedTags * m_ui
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116