File: kpartloader.h

package info (click to toggle)
kde-dev-utils 4%3A22.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 760 kB
  • sloc: cpp: 606; xml: 251; sh: 4; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 525 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
    SPDX-FileCopyrightText: 2008 David Faure <faure@kde.org>

    SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#ifndef KPARTLOADER_H
#define KPARTLOADER_H

// KF
#include <KParts/MainWindow>
#include <KParts/ReadOnlyPart>

class KPartLoaderWindow : public KParts::MainWindow
{
  Q_OBJECT
public:
  explicit KPartLoaderWindow(const QString& partLib);
  ~KPartLoaderWindow() override;

private Q_SLOTS:
  void aboutKPart();

private:
  KParts::ReadOnlyPart *m_part;
};

#endif