You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
744 B
C++
36 lines
744 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H
|
|
#define CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include "GenericSelectItemDialog.h"
|
|
#endif
|
|
|
|
// CSelectSequence dialog
|
|
|
|
class CSelectSequenceDialog
|
|
: public CGenericSelectItemDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CSelectSequenceDialog(QWidget* pParent = nullptr); // standard constructor
|
|
virtual ~CSelectSequenceDialog() {}
|
|
|
|
protected:
|
|
void OnInitDialog() override;
|
|
|
|
// Derived Dialogs should override this
|
|
virtual void GetItems(std::vector<SItem>& outItems);
|
|
};
|
|
|
|
#endif // CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H
|