File indexing completed on 2025-03-09 04:06:54

0001 /*
0002  *  SPDX-FileCopyrightText: 2018 Jouni Pentikäinen <joupent@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KISNEWWINDOWLAYOUTDIALOG_H
0008 #define KISNEWWINDOWLAYOUTDIALOG_H
0009 
0010 #include <QDialog>
0011 #include "ui_wdgnewwindowlayout.h"
0012 
0013 class KisNewWindowLayoutDialog : public QDialog, Ui::DlgNewWindowLayout
0014 {
0015 public:
0016     KisNewWindowLayoutDialog(QWidget *parent = 0);
0017 
0018     void setName(const QString &name);
0019     QString name() const;
0020     bool showImageInAllWindows() const;
0021     bool primaryWorkspaceFollowsFocus() const;
0022 };
0023 
0024 #endif