File indexing completed on 2025-01-05 03:35:40
0001 /* 0002 File : GoToDialog.h 0003 Project : LabPlot 0004 Description : Dialog to provide the cell coordinates to navigate to 0005 -------------------------------------------------------------------- 0006 SPDX-FileCopyrightText: 2020 Alexander Semke <alexander.semke@web.de> 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 0010 #ifndef GOTODIALOG_H 0011 #define GOTODIALOG_H 0012 0013 #include <QDialog> 0014 class QLineEdit; 0015 0016 class GoToDialog : public QDialog { 0017 Q_OBJECT 0018 0019 public: 0020 explicit GoToDialog(QWidget* parent = nullptr); 0021 ~GoToDialog() override; 0022 0023 int row(); 0024 int column(); 0025 0026 private: 0027 QLineEdit* leRow; 0028 QLineEdit* leColumn; 0029 }; 0030 0031 #endif