Files
o3de/Code/Editor/QuickAccessBar.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

63 lines
1.3 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
// Description : A dialog bar for quickly accessing menu items and cvars
#ifndef CRYINCLUDE_EDITOR_QUICKACCESSBAR_H
#define CRYINCLUDE_EDITOR_QUICKACCESSBAR_H
#pragma once
#if !defined(Q_MOC_RUN)
#include <QWidget>
#endif
class QAction;
class QCompleter;
class QMenuBar;
class QStringListModel;
namespace Ui
{
class QuickAccessBar;
}
class CQuickAccessBar
: public QWidget
{
Q_OBJECT
public:
CQuickAccessBar(QWidget* pParent = nullptr);
~CQuickAccessBar();
bool eventFilter(QObject* object, QEvent* event) override;
protected:
void showEvent(QShowEvent* event) override;
virtual void OnInitDialog();
virtual void OnOK();
virtual void OnCancel();
std::map<QString, QAction*> m_menuActionTable;
int m_lastViewPaneMapVersion;
void AddMRUFileItems();
private:
void CollectMenuItems(QMenuBar* menuBar);
void CollectMenuItems(QAction* action, const QString& path);
QCompleter* m_completer;
QStringListModel* m_model;
QScopedPointer<Ui::QuickAccessBar> m_ui;
const char* m_levelExtension = nullptr;
};
#endif // CRYINCLUDE_EDITOR_QUICKACCESSBAR_H