File: quicreator.h

package info (click to toggle)
kde-dev-utils 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 828 kB
  • sloc: cpp: 605; xml: 332; sh: 4; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 614 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
/*
    SPDX-FileCopyrightText: 2003 Richard Moore <rich@kde.org>
    SPDX-FileCopyrightText: 2003 Ian Reinhart Geiser <geiseri@kde.org>
    SPDX-FileCopyrightText: 2004 Benjamin C. Meyer <ben+kuiviewer@meyerhome.net>

    SPDX-License-Identifier: LGPL-2.0-only
*/

#ifndef UICREATOR_H
#define UICREATOR_H

#include <KIO/ThumbnailCreator>

class QUICreator : public KIO::ThumbnailCreator
{
public:
    QUICreator(QObject *parent, const QVariantList &args)
    : KIO::ThumbnailCreator(parent, args)
    {}

    KIO::ThumbnailResult create( const KIO::ThumbnailRequest &request ) override;
};

#endif // UICREATOR_H