view libgui/src/find-files-dialog.h @ 33584:3fe954c2fd25 default tip @

maint: merge stable to default
author Rik <rik@octave.org>
date Mon, 13 May 2024 11:41:11 -0700
parents 2e484f9f1f18
children
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2013-2024 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if ! defined (octave_find_files_dialog_h)
#define octave_find_files_dialog_h 1

#include <QDialog>
#include <QFileInfo>
#include <QModelIndex>

class QCheckBox;
class QDirIterator;
class QLineEdit;
class QPushButton;
class QStatusBar;
class QTableView;
class QTimer;

OCTAVE_BEGIN_NAMESPACE(octave)

class find_files_dialog : public QDialog
{
  Q_OBJECT

public:

  find_files_dialog (QWidget *parent);

  virtual ~find_files_dialog ();

  void save_settings ();

signals:

  void file_selected (const QString& fileName);
  void dir_selected (const QString& fileName);

public slots:

  void set_search_dir (const QString& dir);

private slots:

  void start_find ();
  void stop_find ();
  void browse_folders ();
  void look_for_files ();
  void item_double_clicked (const QModelIndex&);
  void handle_done (int);

private:

  bool is_match (const QFileInfo& info);

  QLineEdit *m_start_dir_edit;
  QLineEdit *m_file_name_edit;
  QPushButton *m_stop_button;
  QPushButton *m_find_button;
  QPushButton *m_close_button;
  QPushButton *m_browse_button;
  QTableView *m_file_list;
  QTimer *m_timer;
  QCheckBox *m_recurse_dirs_check;
  QCheckBox *m_include_dirs_check;
  QCheckBox *m_name_case_check;
  QCheckBox *m_contains_text_check;
  QCheckBox *m_content_case_check;
  QLineEdit *m_contains_text_edit;
  QDirIterator *m_dir_iterator;
  QStatusBar *m_status_bar;
};

OCTAVE_END_NAMESPACE(octave)

#endif