office-gobmx/framework/source/lomenubar/MenuItemInfo.cxx

107 lines
2.2 KiB
C++
Raw Normal View History

2011-05-25 08:05:29 -05:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* A LibreOffice extension to send the menubar structure through DBusMenu
*
* Copyright 2011 Canonical, Ltd.
* Authors:
* Alberto Ruiz <alberto.ruiz@codethink.co.uk>
*
* This program is free software: you can redistribute it and/or modify it under
* the the GNU Lesser General Public License version 3, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR PURPOSE. See the applicable
* version of the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
2011-03-31 10:39:38 -05:00
#include "MenuItemInfo.hxx"
#include <libdbusmenu-gtk/menuitem.h>
MenuItemInfo::MenuItemInfo ()
{
m_label = NULL;
m_check_state = DBUSMENU_MENUITEM_TOGGLE_STATE_UNKNOWN;
m_check_type = (gchar*)DBUSMENU_MENUITEM_TOGGLE_CHECK;
m_is_visible = TRUE;
m_is_enabled = TRUE;
}
MenuItemInfo::~MenuItemInfo ()
{
if (m_label)
g_free(m_label);
}
//Setters
void
MenuItemInfo::setLabel (gchar* label)
{
this->m_label = g_strdup (label);
}
void
MenuItemInfo::setEnabled (gboolean is_enabled)
{
this->m_is_enabled = is_enabled;
}
void
MenuItemInfo::setCheckState (gint check_state)
{
this->m_check_state = check_state;
}
void
MenuItemInfo::setCheckType (const gchar* check_type)
{
this->m_check_type = (gchar*)check_type;
}
void
MenuItemInfo::setVisible (gboolean is_visible)
{
this->m_is_visible = is_visible;
}
//Getters
gchar*
2011-05-08 07:31:03 -05:00
MenuItemInfo::getLabel const()
{
return m_label;
}
gboolean
2011-05-08 07:31:03 -05:00
MenuItemInfo::getEnabled const()
{
return m_is_enabled;
}
gint
2011-05-08 07:31:03 -05:00
MenuItemInfo::getCheckState const()
{
return m_check_state;
}
const gchar*
2011-05-08 07:31:03 -05:00
MenuItemInfo::getCheckType const()
{
return m_check_type;
}
gboolean
2011-05-08 07:31:03 -05:00
MenuItemInfo::getVisible const()
{
return m_is_visible;
}
2011-05-25 08:05:29 -05:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */