Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #include "api_gui.h"
00035 #include "../Core/System/sharedptr.h"
00036 #include "../Core/Signals/callback_v2.h"
00037 #include "../GUI/gui_message.h"
00038 #include "../GUI/gui_message_input.h"
00039 #include <vector>
00040
00041 class CL_AcceleratorKey_Impl;
00042
00046 class CL_AcceleratorKey
00047 {
00050
00051 public:
00053 CL_AcceleratorKey();
00054
00061 CL_AcceleratorKey(int id, int mod1=-1, int mod2=-1, int mod3=-1);
00062
00063 ~CL_AcceleratorKey();
00064
00068
00069 public:
00070 CL_Callback_v2<CL_GUIMessage, CL_AcceleratorKey> &func_pressed();
00071
00075 bool get_shift() const;
00076
00080 bool get_alt() const;
00081
00085 bool get_ctrl() const;
00086
00090 int get_id() const;
00091
00093 bool is_null() const { return impl ? true : false; }
00094
00096 void throw_if_null() const;
00097
00098
00102
00103 public:
00104
00106 void set_shift(bool);
00107
00109 void set_alt(bool);
00110
00112 void set_ctrl(bool);
00113
00115 void set_id(int);
00116
00117
00121
00122 private:
00123 CL_SharedPtr<CL_AcceleratorKey_Impl> impl;
00125 };
00126