diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-04-16 13:54:58 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-04-16 13:54:58 +0000 |
commit | 4c4961209a1848270721d8a3088410a366e53d5e (patch) | |
tree | bd92c4a0ad63ec3e1a54d8f4553cf36b4b431e98 /extras/tiopf/mvp/fpgui_intf.pas | |
parent | e9742fc1f660b4dc4e7cc028f662e6f06c155ab7 (diff) | |
download | fpGUI-4c4961209a1848270721d8a3088410a366e53d5e.tar.xz |
* Implememented more parts of the new MVP framework for tiOPF and fpGUI.
Diffstat (limited to 'extras/tiopf/mvp/fpgui_intf.pas')
-rw-r--r-- | extras/tiopf/mvp/fpgui_intf.pas | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extras/tiopf/mvp/fpgui_intf.pas b/extras/tiopf/mvp/fpgui_intf.pas new file mode 100644 index 00000000..f6e9e4ca --- /dev/null +++ b/extras/tiopf/mvp/fpgui_intf.pas @@ -0,0 +1,22 @@ +unit fpgui_intf; + +{$mode objfpc}{$H+} + +interface + +uses + gui_menu, basic_intf; + +type + + IPopupCommandMenu = interface(IInterface) + ['{812C1940-A8BD-4BB4-AE8D-37A912D44A6D}'] + function GetMenu: TfpgPopupMenu; + procedure SetMenu(const AValue: TfpgPopupMenu); + property Menu: TfpgPopupMenu read GetMenu write SetMenu; + end; + +implementation + +end. + |