mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
35 lines
619 B
C++
35 lines
619 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef WINDOW_H
|
|
#define WINDOW_H
|
|
|
|
#include <QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QModelIndex;
|
|
class QListView;
|
|
class QPlainTextEdit;
|
|
QT_END_NAMESPACE
|
|
|
|
class FileListModel;
|
|
|
|
class Window : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Window(QWidget *parent = nullptr);
|
|
|
|
public slots:
|
|
void updateLog(const QString &path, int start, int number, int total);
|
|
void activated(const QModelIndex &);
|
|
|
|
private:
|
|
QPlainTextEdit *logViewer;
|
|
FileListModel *model;
|
|
QListView *view;
|
|
};
|
|
|
|
#endif // WINDOW_H
|