You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
4.7 KiB
149 lines
4.7 KiB
/*
|
|
* Copyright (C) 2000 Matthias Elter <elter@kde.org>
|
|
* Lubos Lunak <l.lunak@email.cz>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#include <klibloader.h>
|
|
#include "khotkeys.h"
|
|
|
|
extern "C"
|
|
{
|
|
static void (*khotkeys_init_2)( void );
|
|
static void (*khotkeys_cleanup_2)( void );
|
|
static TQString (*khotkeys_get_menu_entry_shortcut_2)( const TQString& entry_P );
|
|
static TQString (*khotkeys_change_menu_entry_shortcut_2)( const TQString& entry_P,
|
|
const TQString& shortcut_P );
|
|
static bool (*khotkeys_menu_entry_moved_2)( const TQString& new_P, const TQString& old_P );
|
|
static void (*khotkeys_menu_entry_deleted_2)( const TQString& entry_P );
|
|
static TQStringList (*khotkeys_get_all_shortcuts_2)( );
|
|
static KService::Ptr (*khotkeys_find_menu_entry_2)( const TQString& shortcut_P );
|
|
}
|
|
|
|
static bool khotkeys_present = false;
|
|
static bool khotkeys_inited = false;
|
|
|
|
bool KHotKeys::init()
|
|
{
|
|
khotkeys_inited = true;
|
|
KLibrary* lib = KLibLoader::self()->library( "kcm_khotkeys.la" );
|
|
if( lib == NULL ) return false;
|
|
|
|
khotkeys_init_2 = ( void (*)(void)) ( lib->symbol( "khotkeys_init" ));
|
|
khotkeys_cleanup_2 = ( void (*)(void)) ( lib->symbol( "khotkeys_cleanup" ));
|
|
khotkeys_get_menu_entry_shortcut_2 =
|
|
( TQString (*)( const TQString& ))
|
|
( lib->symbol( "khotkeys_get_menu_entry_shortcut" ));
|
|
khotkeys_change_menu_entry_shortcut_2 =
|
|
( TQString (*)( const TQString&, const TQString& ))
|
|
( lib->symbol( "khotkeys_change_menu_entry_shortcut" ));
|
|
khotkeys_menu_entry_moved_2 =
|
|
( bool (*)( const TQString&, const TQString& ))
|
|
( lib->symbol( "khotkeys_menu_entry_moved" ));
|
|
khotkeys_menu_entry_deleted_2 =
|
|
( void (*)( const TQString& ))
|
|
( lib->symbol( "khotkeys_menu_entry_deleted" ));
|
|
khotkeys_get_all_shortcuts_2 =
|
|
( TQStringList (*)( ))
|
|
( lib->symbol( "khotkeys_get_all_shortcuts" ));
|
|
khotkeys_find_menu_entry_2 =
|
|
( KService::Ptr (*)( const TQString& ))
|
|
( lib->symbol( "khotkeys_find_menu_entry" ));
|
|
|
|
if( khotkeys_init_2
|
|
&& khotkeys_cleanup_2
|
|
&& khotkeys_get_menu_entry_shortcut_2
|
|
&& khotkeys_change_menu_entry_shortcut_2
|
|
&& khotkeys_menu_entry_moved_2
|
|
&& khotkeys_menu_entry_deleted_2 )
|
|
{
|
|
khotkeys_init_2();
|
|
khotkeys_present = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void KHotKeys::cleanup()
|
|
{
|
|
if( khotkeys_inited && khotkeys_present )
|
|
khotkeys_cleanup_2();
|
|
khotkeys_inited = false;
|
|
}
|
|
|
|
bool KHotKeys::present()
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
return khotkeys_present;
|
|
}
|
|
|
|
TQString KHotKeys::getMenuEntryShortcut( const TQString& entry_P )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if( !khotkeys_present )
|
|
return "";
|
|
return khotkeys_get_menu_entry_shortcut_2( entry_P );
|
|
}
|
|
|
|
TQString KHotKeys::changeMenuEntryShortcut( const TQString& entry_P,
|
|
const TQString shortcut_P )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if( !khotkeys_present )
|
|
return "";
|
|
return khotkeys_change_menu_entry_shortcut_2( entry_P, shortcut_P );
|
|
}
|
|
|
|
bool KHotKeys::menuEntryMoved( const TQString& new_P, const TQString& old_P )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if( !khotkeys_present )
|
|
return "";
|
|
return khotkeys_menu_entry_moved_2( new_P, old_P );
|
|
}
|
|
|
|
void KHotKeys::menuEntryDeleted( const TQString& entry_P )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if( !khotkeys_present )
|
|
return;
|
|
khotkeys_menu_entry_deleted_2( entry_P );
|
|
}
|
|
|
|
TQStringList KHotKeys::allShortCuts( )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if (!khotkeys_get_all_shortcuts_2)
|
|
return TQStringList();
|
|
return khotkeys_get_all_shortcuts_2();
|
|
}
|
|
|
|
KService::Ptr KHotKeys::findMenuEntry( const TQString &shortcut_P )
|
|
{
|
|
if( !khotkeys_inited )
|
|
init();
|
|
if (!khotkeys_find_menu_entry_2)
|
|
return 0;
|
|
return khotkeys_find_menu_entry_2(shortcut_P);
|
|
}
|