forked from amazingfate/loongoffice
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/* -*- 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/>
|
|
*
|
|
*/
|
|
|
|
#ifndef __AWT_KEY_TO_DBUSMENU_STRING_HXX__
|
|
#define __AWT_KEY_TO_DBUSMENU_STRING_HXX__
|
|
#include <X11/X.h>
|
|
#include <glib.h>
|
|
|
|
gchar*
|
|
AwtKeyToDbusmenuString (guint16 aKeyCode);
|
|
|
|
|
|
#endif //__AWT_KEY_TO_DBUSMENU_STRING_HXX__
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|