mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 13:47:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* 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;
|
||||
};
|
||||
Reference in New Issue
Block a user