mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
#ifndef VSORTDIALOG_H
|
|
#define VSORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QVector>
|
|
|
|
#include "vtreewidget.h"
|
|
|
|
class QPushButton;
|
|
class QDialogButtonBox;
|
|
|
|
class VSortDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VSortDialog(const QString &p_title,
|
|
const QString &p_info,
|
|
QWidget *p_parent = 0);
|
|
|
|
QTreeWidget *getTreeWidget() const;
|
|
|
|
// Called after updating the m_treeWidget.
|
|
void treeUpdated();
|
|
|
|
// Get user data of column 0 from sorted items.
|
|
QVector<QVariant> getSortedData() const;
|
|
|
|
private:
|
|
enum MoveOperation { Top, Up, Down, Bottom };
|
|
|
|
private slots:
|
|
void handleMoveOperation(MoveOperation p_op);
|
|
|
|
private:
|
|
void setupUI(const QString &p_title, const QString &p_info);
|
|
|
|
VTreeWidget *m_treeWidget;
|
|
QPushButton *m_topBtn;
|
|
QPushButton *m_upBtn;
|
|
QPushButton *m_downBtn;
|
|
QPushButton *m_bottomBtn;
|
|
QDialogButtonBox *m_btnBox;
|
|
};
|
|
|
|
inline QTreeWidget *VSortDialog::getTreeWidget() const
|
|
{
|
|
return m_treeWidget;
|
|
}
|
|
|
|
#endif // VSORTDIALOG_H
|