mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
36 lines
733 B
C++
36 lines
733 B
C++
/**
|
|
* ShortcutHelpDialog.h
|
|
* Copyright (c) 2013 ROBLOX Corp. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Qt Headers
|
|
#include <QDialog>
|
|
|
|
// Roblox Headers
|
|
#include "rbx/BaldPtr.h"
|
|
|
|
class QTreeWidget;
|
|
class RobloxMainWindow;
|
|
|
|
/**
|
|
* Dialog that displays all the shortcut key sequences for actions in the main window.
|
|
* Also displays the actions' icon and statustip text.
|
|
* The dialog does not delete on close.
|
|
*/
|
|
class ShortcutHelpDialog : public QDialog
|
|
{
|
|
public:
|
|
|
|
ShortcutHelpDialog(RobloxMainWindow& MainWindow);
|
|
virtual ~ShortcutHelpDialog();
|
|
|
|
private:
|
|
|
|
void initialize();
|
|
void populate();
|
|
|
|
RBX::BaldPtr<QTreeWidget> mTree;
|
|
RobloxMainWindow& mMainWindow;
|
|
}; |