Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_dlg_import_image_sequence.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016 Jouni Pentikäinen <joupent@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KISDLGIMPORTIMAGESEQUENCE_H
8#define KISDLGIMPORTIMAGESEQUENCE_H
9
10#include <QObject>
11#include <QCollator>
12#include "KoDialog.h"
13#include "ui_wdgimportimagesequence.h"
14
15class KisDocument;
16class KisMainWindow;
17
19{
20 Q_OBJECT
21
22public:
24
27 int firstFrame();
28 int step();
29 bool autoAddHoldframes();
30 bool startFrom1();
31 int isAscending();
33
34protected Q_SLOTS:
35 void slotAddFiles();
36 void slotRemoveFiles();
37 void slotSkipChanged(int);
39
40
41private:
42 void sortFileList();
43
44private:
45 Ui_WdgImportImageSequence m_ui;
48
55
56 class ListItem;
57 QCollator m_collator;
58};
59
60#endif // KISDLGIMPORTIMAGESEQUENCE_H
KisDlgImportImageSequence(KisMainWindow *m_mainWindow, KisDocument *m_document)
Main window for Krita.
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116