2013-08-09 08:01:20 +08:00
|
|
|
/* Aseprite
|
2013-03-28 08:19:35 +08:00
|
|
|
* Copyright (C) 2001-2013 David Capello
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifndef APP_UI_APP_MENUITEM_H_INCLUDED
|
|
|
|
|
#define APP_UI_APP_MENUITEM_H_INCLUDED
|
2014-03-30 06:40:17 +08:00
|
|
|
#pragma once
|
2013-03-28 08:19:35 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "ui/menu.h"
|
2013-03-28 08:19:35 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
2014-10-29 22:58:03 +08:00
|
|
|
class Key;
|
2013-08-06 08:20:19 +08:00
|
|
|
class Command;
|
|
|
|
|
class Params;
|
2013-03-28 08:19:35 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
// A widget that represent a menu item of the application.
|
|
|
|
|
//
|
|
|
|
|
// It's like a MenuItme, but it has a extra properties: the name of
|
|
|
|
|
// the command to be executed when it's clicked (also that command is
|
|
|
|
|
// used to check the availability of the command).
|
|
|
|
|
class AppMenuItem : public ui::MenuItem {
|
2013-03-28 08:19:35 +08:00
|
|
|
public:
|
2014-10-29 22:58:03 +08:00
|
|
|
AppMenuItem(const char* text, Command* command, const Params* params);
|
2013-08-06 08:20:19 +08:00
|
|
|
~AppMenuItem();
|
2013-03-28 08:19:35 +08:00
|
|
|
|
2014-10-29 22:58:03 +08:00
|
|
|
Key* getKey() { return m_key; }
|
|
|
|
|
void setKey(Key* key) { m_key = key; }
|
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
Command* getCommand() { return m_command; }
|
|
|
|
|
Params* getParams() { return m_params; }
|
2013-03-28 08:19:35 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
protected:
|
2014-08-15 10:07:47 +08:00
|
|
|
bool onProcessMessage(ui::Message* msg) override;
|
2014-10-29 22:58:03 +08:00
|
|
|
void onPreferredSize(ui::PreferredSizeEvent& ev) override;
|
2014-08-15 10:07:47 +08:00
|
|
|
void onClick() override;
|
2013-03-28 08:19:35 +08:00
|
|
|
|
|
|
|
|
private:
|
2014-10-29 22:58:03 +08:00
|
|
|
Key* m_key;
|
2013-08-06 08:20:19 +08:00
|
|
|
Command* m_command;
|
|
|
|
|
Params* m_params;
|
2013-03-28 08:19:35 +08:00
|
|
|
};
|
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
} // namespace app
|
2013-03-28 08:19:35 +08:00
|
|
|
|
|
|
|
|
#endif
|