popupmenu_item.h

Go to the documentation of this file.
00001 /*
00002 **  ClanLib SDK
00003 **  Copyright (c) 1997-2009 The ClanLib Team
00004 **
00005 **  This software is provided 'as-is', without any express or implied
00006 **  warranty.  In no event will the authors be held liable for any damages
00007 **  arising from the use of this software.
00008 **
00009 **  Permission is granted to anyone to use this software for any purpose,
00010 **  including commercial applications, and to alter it and redistribute it
00011 **  freely, subject to the following restrictions:
00012 **
00013 **  1. The origin of this software must not be misrepresented; you must not
00014 **     claim that you wrote the original software. If you use this software
00015 **     in a product, an acknowledgment in the product documentation would be
00016 **     appreciated but is not required.
00017 **  2. Altered source versions must be plainly marked as such, and must not be
00018 **     misrepresented as being the original software.
00019 **  3. This notice may not be removed or altered from any source distribution.
00020 **
00021 **  Note: Some of the libraries ClanLib may link to may have additional
00022 **  requirements or restrictions.
00023 **
00024 **  File Author(s):
00025 **
00026 **    Magnus Norddahl
00027 **    Harry Storbacka
00028 */
00029 
00032 
00033 #pragma once
00034 
00035 #include "../api_gui.h"
00036 #include "../gui_component.h"
00037 
00038 class CL_PixelBuffer;
00039 class CL_PopupMenuItem_Impl;
00040 class CL_PopupMenu;
00041 
00045 class CL_PopupMenuItem
00046 {
00049 
00050 public:
00051         CL_PopupMenuItem();
00052 
00056         CL_PopupMenuItem(int id);
00057 
00061         CL_PopupMenuItem(const CL_SharedPtr<CL_PopupMenuItem_Impl> &impl);
00062 
00063         virtual ~CL_PopupMenuItem();
00064 
00068 
00069 public:
00070 
00074         CL_StringRef get_text() const;
00075 
00079         CL_StringRef get_accelerator_text() const;
00080 
00084         int get_id() const;
00085 
00089         bool is_null() const;
00090 
00094         bool has_submenu() const;
00095 
00099         bool is_disabled() const;
00100 
00104         bool is_separator() const;
00105 
00109         CL_PopupMenu get_submenu();
00110 
00114         bool is_checkable() const;
00115 
00119         bool is_checked() const;
00120 
00124         CL_PixelBuffer get_icon() const;
00125 
00129 
00130 public:
00131 
00135         CL_Callback_v0 &func_clicked();
00136 
00140 
00141 public:
00142 
00146         void set_id(int id);
00147 
00151         void set_text(const CL_StringRef &text);
00152 
00156         void set_icon(const CL_PixelBuffer &image);
00157 
00161         void set_submenu(CL_PopupMenu &submenu);
00162 
00166         void set_enabled(bool enabled);
00167 
00171         void set_separator(bool separator);
00172 
00176         void set_accelerator_text(const CL_StringRef &str);
00177 
00181         void set_checkable(bool checkable);
00182 
00186         void set_checked(bool checked);
00187 
00191 
00192 private:
00193         CL_SharedPtr<CL_PopupMenuItem_Impl> impl;
00195 };
00196 

Generated on Thu Dec 3 02:39:30 2009 for ClanLib by  doxygen 1.4.6