File indexing completed on 2024-04-28 07:28:50

0001 /*
0002     SPDX-FileCopyrightText: 2006 Carsten Niehaus <cniehaus@kde.org>
0003     SPDX-FileCopyrightText: 2007-2008 Marcus D. Hanwell <marcus@cryos.org>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KALZIUMGLWIDGET_H
0008 #define KALZIUMGLWIDGET_H
0009 
0010 #include <avogadro/qtopengl/glwidget.h>
0011 
0012 #include "compoundviewer_export.h"
0013 
0014 class COMPOUNDVIEWER_EXPORT KalziumGLWidget : public Avogadro::QtOpenGL::GLWidget
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit KalziumGLWidget(QWidget *parent = nullptr);
0019     virtual ~KalziumGLWidget();
0020 
0021 public slots:
0022     bool openFile(const QString &file);
0023 
0024 protected:
0025     QByteArray m_lc_numeric;
0026 };
0027 
0028 #endif // KALZIUMGLWIDGET_H