File indexing completed on 2023-05-30 10:45:24

0001 /*
0002     SPDX-FileCopyrightText: 2004-2009 Peter Hedlund <peter.hedlund@kdemail.net>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef DLGLANGUAGE_H
0007 #define DLGLANGUAGE_H
0008 
0009 #include <QDialog>
0010 
0011 #include "ui_columndialogbase.h"
0012 #include "kwqcommands.h"
0013 
0014 /**
0015 @author Peter Hedlund
0016 */
0017 
0018 class KWQTableModel;
0019 
0020 class DlgLanguage : public QDialog, private Ui::ColumnDialogBase {
0021   Q_OBJECT
0022 public:
0023   explicit DlgLanguage(KWQTableModel *model, QWidget *parent = nullptr);
0024 
0025   ColumnDataList columnData();
0026 };
0027 
0028 #endif