• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • kdecore
 

kdecore

  • kdecore
kaccelaction.cpp
1 /*
2  Copyright (C) 1998 Mark Donohoe <donohoe@kde.org>
3  Copyright (C) 1997-2000 Nicolas Hadacek <hadacek@kde.org>
4  Copyright (C) 1998 Matthias Ettrich <ettrich@kde.org>
5  Copyright (c) 2001,2002 Ellis Whitehead <ellis@kde.org>
6 
7  This library is free software; you can redistribute it and/or
8  modify it under the terms of the GNU Library General Public
9  License as published by the Free Software Foundation; either
10  version 2 of the License, or (at your option) any later version.
11 
12  This library is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  Library General Public License for more details.
16 
17  You should have received a copy of the GNU Library General Public License
18  along with this library; see the file COPYING.LIB. If not, write to
19  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  Boston, MA 02110-1301, USA.
21 */
22 
23 #include "kaccelaction.h"
24 #include "kaccelbase.h" // for KAccelBase::slotRemoveAction() & emitSignal()
25 
26 #include <tqkeycode.h>
27 
28 #include <kconfig.h>
29 #include "kckey.h"
30 #include <kdebug.h>
31 #include <kglobal.h>
32 #include <kkeynative.h>
33 #include <klocale.h>
34 #include <kshortcutlist.h>
35 
36 //---------------------------------------------------------------------
37 // KAccelAction
38 //---------------------------------------------------------------------
39 
40 class KAccelActionPrivate
41 {
42  public:
43  uint m_nConnections;
44 };
45 
46 KAccelAction::KAccelAction()
47 {
48  //kdDebug(125) << "KAccelAction(): this = " << this << endl;
49  d = new KAccelActionPrivate;
50  m_pObjSlot = 0;
51  m_psMethodSlot = 0;
52  m_bConfigurable = true;
53  m_bEnabled = true;
54  m_nIDAccel = 0;
55  d->m_nConnections = 0;
56 }
57 
58 KAccelAction::KAccelAction( const KAccelAction& action )
59 {
60  //kdDebug(125) << "KAccelAction( copy from \"" << action.m_sName << "\" ): this = " << this << endl;
61  d = new KAccelActionPrivate;
62  *this = action;
63 }
64 
65 KAccelAction::KAccelAction( const TQString& sName, const TQString& sLabel, const TQString& sWhatsThis,
66  const KShortcut& cutDef3, const KShortcut& cutDef4,
67  const TQObject* pObjSlot, const char* psMethodSlot,
68  bool bConfigurable, bool bEnabled )
69 {
70  //kdDebug(125) << "KAccelAction( \"" << sName << "\" ): this = " << this << endl;
71  d = new KAccelActionPrivate;
72  init( sName, sLabel, sWhatsThis,
73  cutDef3, cutDef4,
74  pObjSlot, psMethodSlot,
75  bConfigurable, bEnabled );
76 }
77 
78 KAccelAction::~KAccelAction()
79 {
80  //kdDebug(125) << "\t\t\tKAccelAction::~KAccelAction( \"" << m_sName << "\" ): this = " << this << endl;
81  delete d;
82 }
83 
84 void KAccelAction::clear()
85 {
86  m_cut.clear();
87  m_pObjSlot = 0;
88  m_psMethodSlot = 0;
89  m_bConfigurable = true;
90  m_bEnabled = true;
91  m_nIDAccel = 0;
92  d->m_nConnections = 0;
93 }
94 
95 bool KAccelAction::init( const TQString& sName, const TQString& sLabel, const TQString& sWhatsThis,
96  const KShortcut& rgCutDefaults3, const KShortcut& rgCutDefaults4,
97  const TQObject* pObjSlot, const char* psMethodSlot,
98  bool bConfigurable, bool bEnabled )
99 {
100  m_sName = sName;
101  m_sLabel = sLabel;
102  m_sWhatsThis = sWhatsThis;
103  m_cutDefault3 = rgCutDefaults3;
104  m_cutDefault4 = rgCutDefaults4;
105  m_pObjSlot = pObjSlot;
106  m_psMethodSlot = psMethodSlot;
107  m_bConfigurable = bConfigurable;
108  m_bEnabled = bEnabled;
109  m_nIDAccel = 0;
110  m_cut = shortcutDefault();
111  d->m_nConnections = 0;
112  if( !m_bEnabled )
113  kdDebug(125) << "KAccelAction::init( \"" << sName << "\" ): created with enabled = false" << endl;
114  return true;
115 }
116 
117 KAccelAction& KAccelAction::operator =( const KAccelAction& action )
118 {
119  m_sName = action.m_sName;
120  m_sLabel = action.m_sLabel;
121  m_sWhatsThis = action.m_sWhatsThis;
122  m_cutDefault3 = action.m_cutDefault3;
123  m_cutDefault4 = action.m_cutDefault4;
124  m_pObjSlot = action.m_pObjSlot;
125  m_psMethodSlot = action.m_psMethodSlot;
126  m_bConfigurable = action.m_bConfigurable;
127  m_bEnabled = action.m_bEnabled;
128  m_nIDAccel = action.m_nIDAccel;
129  m_cut = action.m_cut;
130  d->m_nConnections = action.d->m_nConnections;
131 
132  return *this;
133 }
134 
135 void KAccelAction::setName( const TQString& s )
136  { m_sName = s; }
137 void KAccelAction::setLabel( const TQString& s )
138  { m_sLabel = s; }
139 void KAccelAction::setWhatsThis( const TQString& s )
140  { m_sWhatsThis = s; }
141 
142 bool KAccelAction::setShortcut( const KShortcut& cut )
143 {
144  m_cut = cut;
145  return true;
146 }
147 
148 void KAccelAction::setSlot( const TQObject* pObjSlot, const char* psMethodSlot )
149 {
150  m_pObjSlot = pObjSlot;
151  m_psMethodSlot = psMethodSlot;
152 }
153 
154 void KAccelAction::setConfigurable( bool b )
155  { m_bConfigurable = b; }
156 void KAccelAction::setEnabled( bool b )
157  { m_bEnabled = b; }
158 
159 TQString KAccelAction::toString() const
160  { return m_cut.toString(); }
161 
162 TQString KAccelAction::toStringInternal() const
163  { return m_cut.toStringInternal( &shortcutDefault() ); }
164 
165 bool KAccelAction::setKeySequence( uint i, const KKeySequence& seq )
166 {
167  if( i < m_cut.count() ) {
168  m_cut.setSeq( i, seq );
169  return true;
170  } else if( i == m_cut.count() )
171  return m_cut.append( seq );
172  return false;
173 }
174 
175 void KAccelAction::clearShortcut()
176 {
177  m_cut.clear();
178 }
179 
180 bool KAccelAction::contains( const KKeySequence& seq )
181 {
182  return m_cut.contains( seq );
183  for( uint i = 0; i < m_cut.count(); i++ ) {
184  if( m_cut.seq(i) == seq )
185  return true;
186  }
187  return false;
188 }
189 
190 const KShortcut& KAccelAction::shortcutDefault() const
191  { return (useFourModifierKeys()) ? m_cutDefault4 : m_cutDefault3; }
192 bool KAccelAction::isConnected() const
193  { return d->m_nConnections; }
194 void KAccelAction::incConnections()
195  { d->m_nConnections++; }
196 void KAccelAction::decConnections()
197  { if( d->m_nConnections > 0 ) d->m_nConnections--; }
198 
199 // Indicate whether to default to the 3- or 4- modifier keyboard schemes
200 int KAccelAction::g_bUseFourModifierKeys = -1;
201 
202 bool KAccelAction::useFourModifierKeys()
203 {
204  if( KAccelAction::g_bUseFourModifierKeys == -1 ) {
205  // Read in whether to use 4 modifier keys
206  KConfigGroupSaver cgs( KGlobal::config(), "Keyboard" );
207  bool b = KGlobal::config()->readBoolEntry( "Use Four Modifier Keys", false );
208  KAccelAction::g_bUseFourModifierKeys = b && KKeyNative::keyboardHasWinKey();
209  }
210  return KAccelAction::g_bUseFourModifierKeys == 1;
211 }
212 
213 void KAccelAction::useFourModifierKeys( bool b )
214 {
215  if( KAccelAction::g_bUseFourModifierKeys != (int)b ) {
216  KAccelAction::g_bUseFourModifierKeys = b && KKeyNative::keyboardHasWinKey();
217  // If we're 'turning off' the meta key or, if we're turning it on,
218  // the keyboard must actually have a meta key.
219  if( b && !KKeyNative::keyboardHasWinKey() )
220  kdDebug(125) << "Tried to use four modifier keys on a keyboard layout without a Meta key.\n";
221  }
222  KConfigGroupSaver cgs( KGlobal::config(), "Keyboard" );
223  KGlobal::config()->writeEntry( "Use Four Modifier Keys", KAccelAction::g_bUseFourModifierKeys, true, true);
224 
225  kdDebug(125) << "bUseFourModifierKeys = " << KAccelAction::g_bUseFourModifierKeys << endl;
226 }
227 
228 //---------------------------------------------------------------------
229 // KAccelActions
230 //---------------------------------------------------------------------
231 
232 class KAccelActionsPrivate
233 {
234  public:
235 };
236 
237 KAccelActions::KAccelActions()
238 {
239  kdDebug(125) << "KAccelActions(): this = " << this << endl;
240  initPrivate( 0 );
241 }
242 
243 KAccelActions::KAccelActions( const KAccelActions& actions )
244 {
245  kdDebug(125) << "KAccelActions( actions = " << &actions << " ): this = " << this << endl;
246  initPrivate( 0 );
247  init( actions );
248 }
249 
250 KAccelActions::KAccelActions( KAccelBase* pKAccelBase )
251 {
252  kdDebug(125) << "KAccelActions( KAccelBase = " << pKAccelBase << " ): this = " << this << endl;
253  initPrivate( pKAccelBase );
254 }
255 
256 KAccelActions::~KAccelActions()
257 {
258  //kdDebug(125) << "KAccelActions::~KAccelActions(): this = " << this << endl;
259  clear();
260  //delete d;
261 }
262 
263 void KAccelActions::initPrivate( KAccelBase* pKAccelBase )
264 {
265  m_pKAccelBase = pKAccelBase;
266  m_nSizeAllocated = m_nSize = 0;
267  m_prgActions = 0;
268  //d = new KAccelActionsPrivate;
269 }
270 
271 void KAccelActions::clear()
272 {
273  kdDebug(125) << "\tKAccelActions::clear()" << endl;
274  for( uint i = 0; i < m_nSize; i++ )
275  delete m_prgActions[i];
276  delete[] m_prgActions;
277 
278  m_nSizeAllocated = m_nSize = 0;
279  m_prgActions = 0;
280 }
281 
282 bool KAccelActions::init( const KAccelActions& actions )
283 {
284  clear();
285  resize( actions.count() );
286  for( uint i = 0; i < m_nSize; i++ ) {
287  KAccelAction* pAction = actions.m_prgActions[i];
288  if( pAction )
289  m_prgActions[i] = new KAccelAction( *pAction );
290  else
291  m_prgActions[i] = 0;
292  }
293 
294  return true;
295 }
296 
297 bool KAccelActions::init( KConfigBase& config, const TQString& sGroup )
298 {
299  kdDebug(125) << "KAccelActions::init( " << sGroup << " )" << endl;
300  TQMap<TQString, TQString> mapEntry = config.entryMap( sGroup );
301  resize( mapEntry.count() );
302 
303  TQMap<TQString, TQString>::Iterator it( mapEntry.begin() );
304  for( uint i = 0; it != mapEntry.end(); ++it, i++ ) {
305  TQString sShortcuts = *it;
306  KShortcut cuts;
307 
308  kdDebug(125) << it.key() << " = " << sShortcuts << endl;
309  if( !sShortcuts.isEmpty() && sShortcuts != "none" )
310  cuts.init( sShortcuts );
311 
312  m_prgActions[i] = new KAccelAction( it.key(), it.key(), it.key(),
313  cuts, cuts,
314  0, 0, // pObjSlot, psMethodSlot,
315  true, false ); // bConfigurable, bEnabled
316  }
317 
318  return true;
319 }
320 
321 void KAccelActions::resize( uint nSize )
322 {
323  if( nSize > m_nSizeAllocated ) {
324  uint nSizeAllocated = ((nSize/10) + 1) * 10;
325  KAccelAction** prgActions = new KAccelAction* [nSizeAllocated];
326 
327  // Copy pointers over to new array
328  for( uint i = 0; i < m_nSizeAllocated; i++ )
329  prgActions[i] = m_prgActions[i];
330 
331  // Null out new pointers
332  for( uint i = m_nSizeAllocated; i < nSizeAllocated; i++ )
333  prgActions[i] = 0;
334 
335  delete[] m_prgActions;
336  m_prgActions = prgActions;
337  m_nSizeAllocated = nSizeAllocated;
338  }
339 
340  m_nSize = nSize;
341 }
342 
343 void KAccelActions::insertPtr( KAccelAction* pAction )
344 {
345  resize( m_nSize + 1 );
346  m_prgActions[m_nSize-1] = pAction;
347 }
348 
349 void KAccelActions::updateShortcuts( KAccelActions& actions2 )
350 {
351  kdDebug(125) << "KAccelActions::updateShortcuts()" << endl;
352  bool bChanged = false;
353 
354  for( uint i = 0; i < m_nSize; i++ ) {
355  KAccelAction* pAction = m_prgActions[i];
356  if( pAction && pAction->m_bConfigurable ) {
357  KAccelAction* pAction2 = actions2.actionPtr( pAction->m_sName );
358  if( pAction2 ) {
359  TQString sOld = pAction->m_cut.toStringInternal();
360  pAction->m_cut = pAction2->m_cut;
361  kdDebug(125) << "\t" << pAction->m_sName
362  << " found: " << sOld
363  << " => " << pAction2->m_cut.toStringInternal()
364  << " = " << pAction->m_cut.toStringInternal() << endl;
365  bChanged = true;
366  }
367  }
368  }
369 
370  if( bChanged )
371  emitKeycodeChanged();
372 }
373 
374 int KAccelActions::actionIndex( const TQString& sAction ) const
375 {
376  for( uint i = 0; i < m_nSize; i++ ) {
377  if( m_prgActions[i] == 0 )
378  kdWarning(125) << "KAccelActions::actionPtr( " << sAction << " ): encountered null pointer at m_prgActions[" << i << "]" << endl;
379  else if( m_prgActions[i]->m_sName == sAction )
380  return (int) i;
381  }
382  return -1;
383 }
384 
385 KAccelAction* KAccelActions::actionPtr( uint i )
386 {
387  return m_prgActions[i];
388 }
389 
390 const KAccelAction* KAccelActions::actionPtr( uint i ) const
391 {
392  return m_prgActions[i];
393 }
394 
395 KAccelAction* KAccelActions::actionPtr( const TQString& sAction )
396 {
397  int i = actionIndex( sAction );
398  return (i >= 0) ? m_prgActions[i] : 0;
399 }
400 
401 const KAccelAction* KAccelActions::actionPtr( const TQString& sAction ) const
402 {
403  int i = actionIndex( sAction );
404  return (i >= 0) ? m_prgActions[i] : 0;
405 }
406 
407 KAccelAction* KAccelActions::actionPtr( KKeySequence cut )
408 {
409  for( uint i = 0; i < m_nSize; i++ ) {
410  if( m_prgActions[i] == 0 )
411  kdWarning(125) << "KAccelActions::actionPtr( " << cut.toStringInternal() << " ): encountered null pointer at m_prgActions[" << i << "]" << endl;
412  else if( m_prgActions[i]->contains( cut ) )
413  return m_prgActions[i];
414  }
415  return 0;
416 }
417 
418 KAccelAction& KAccelActions::operator []( uint i )
419 {
420  return *actionPtr( i );
421 }
422 
423 const KAccelAction& KAccelActions::operator []( uint i ) const
424 {
425  return *actionPtr( i );
426 }
427 
428 KAccelAction* KAccelActions::insert( const TQString& sName, const TQString& sLabel )
429 {
430  if( actionPtr( sName ) ) {
431  kdWarning(125) << "KAccelActions::insertLabel( " << sName << ", " << sLabel << " ): action with same name already present." << endl;
432  return 0;
433  }
434 
435  KAccelAction* pAction = new KAccelAction;
436  pAction->m_sName = sName;
437  pAction->m_sLabel = sLabel;
438  pAction->m_bConfigurable = false;
439  pAction->m_bEnabled = false;
440 
441  insertPtr( pAction );
442  return pAction;
443 }
444 
445 KAccelAction* KAccelActions::insert( const TQString& sAction, const TQString& sLabel, const TQString& sWhatsThis,
446  const KShortcut& rgCutDefaults3, const KShortcut& rgCutDefaults4,
447  const TQObject* pObjSlot, const char* psMethodSlot,
448  bool bConfigurable, bool bEnabled )
449 {
450  //kdDebug(125) << "KAccelActions::insert()2 begin" << endl;
451  if( actionPtr( sAction ) ) {
452  kdWarning(125) << "KAccelActions::insert( " << sAction << " ): action with same name already present." << endl;
453  return 0;
454  }
455 
456  KAccelAction* pAction = new KAccelAction(
457  sAction, sLabel, sWhatsThis,
458  rgCutDefaults3, rgCutDefaults4,
459  pObjSlot, psMethodSlot,
460  bConfigurable, bEnabled );
461  insertPtr( pAction );
462 
463  //kdDebug(125) << "KAccelActions::insert()2 end" << endl;
464  return pAction;
465 }
466 
467 bool KAccelActions::remove( const TQString& sAction )
468 {
469  kdDebug(125) << "KAccelActions::remove( \"" << sAction << "\" ): this = " << this << " m_pKAccelBase = " << m_pKAccelBase << endl;
470 
471  int iAction = actionIndex( sAction );
472  if( iAction < 0 )
473  return false;
474 
475  if( m_pKAccelBase )
476  m_pKAccelBase->slotRemoveAction( m_prgActions[iAction] );
477  delete m_prgActions[iAction];
478 
479  for( uint i = iAction; i < m_nSize - 1; i++ )
480  m_prgActions[i] = m_prgActions[i+1];
481  m_nSize--;
482 
483  return true;
484 }
485 
486 bool KAccelActions::readActions( const TQString& sConfigGroup, KConfigBase* pConfig )
487 {
488  KAccelShortcutList accelList(*this, false);
489  return accelList.readSettings( sConfigGroup, pConfig );
490 }
491 
492 /*
493  1) KAccelAction = "Something"
494  1) KKeySequence = "Meta+X,Asterisk"
495  1) KAccelSequence = "Meta+X"
496  1) KKeySequence = Meta+X
497  2) KAccelSequence = "Asterisk"
498  1) KKeySequence = Shift+8 (English layout)
499  2) KKeySequence = Keypad_Asterisk
500  2) KKeySequence = "Alt+F2"
501  1) KAccelSequence = "Alt+F2"
502  1) KKeySequence = Alt+F2
503  -> "Something=Meta+X,Asterisk;Alt+F2"
504 */
505 bool KAccelActions::writeActions( const TQString &sGroup, KConfigBase* pConfig,
506  bool bWriteAll, bool bGlobal ) const
507 {
508  kdDebug(125) << "KAccelActions::writeActions( " << sGroup << ", " << pConfig << ", " << bWriteAll << ", " << bGlobal << " )" << endl;
509  if( !pConfig )
510  pConfig = KGlobal::config();
511  KConfigGroupSaver cs( pConfig, sGroup );
512 
513  for( uint i = 0; i < m_nSize; i++ ) {
514  if( m_prgActions[i] == 0 ) {
515  kdWarning(125) << "KAccelActions::writeActions(): encountered null pointer at m_prgActions[" << i << "]" << endl;
516  continue;
517  }
518  const KAccelAction& action = *m_prgActions[i];
519 
520  TQString s;
521  bool bConfigHasAction = !pConfig->readEntry( action.m_sName ).isEmpty();
522  bool bSameAsDefault = true;
523  bool bWriteAction = false;
524 
525  if( action.m_bConfigurable ) {
526  s = action.toStringInternal();
527  bSameAsDefault = (action.m_cut == action.shortcutDefault());
528 
529  //if( bWriteAll && s.isEmpty() )
530  if( s.isEmpty() )
531  s = "none";
532 
533  // If we're using a global config or this setting
534  // differs from the default, then we want to write.
535  if( bWriteAll || !bSameAsDefault )
536  bWriteAction = true;
537 
538  if( bWriteAction ) {
539  kdDebug(125) << "\twriting " << action.m_sName << " = " << s << endl;
540  // Is passing bGlobal irrelevant, since if it's true,
541  // then we're using the global config anyway? --ellis
542  pConfig->writeEntry( action.m_sName, s, true, bGlobal );
543  }
544  // Otherwise, this key is the same as default
545  // but exists in config file. Remove it.
546  else if( bConfigHasAction ) {
547  kdDebug(125) << "\tremoving " << action.m_sName << " because == default" << endl;
548  pConfig->deleteEntry( action.m_sName, bGlobal );
549  }
550 
551  }
552  }
553 
554  pConfig->sync();
555  return true;
556 }
557 
558 void KAccelActions::emitKeycodeChanged()
559 {
560  if( m_pKAccelBase )
561  m_pKAccelBase->emitSignal( KAccelBase::KEYCODE_CHANGED );
562 }
563 
564 uint KAccelActions::count() const
565  { return m_nSize; }
KConfigBase::deleteEntry
void deleteEntry(const TQString &pKey, bool bNLS=false, bool bGlobal=false)
Deletes the entry specified by pKey in the current group.
Definition: kconfigbase.cpp:1220
KStdAccel::shortcutDefault
KShortcut shortcutDefault(StdAccel id)
Returns the hardcoded default shortcut for id.
Definition: kstdaccel.cpp:202
KStdAction::clear
KAction * clear(const TQObject *recvr, const char *slot, KActionCollection *parent, const char *name=0)
KShortcut::init
bool init(int keyQt)
Initializes the shortcut with the given Qt key code as the only key sequence.
Definition: kshortcut.cpp:421
KShortcut::toString
TQString toString() const
Returns a description of the shortcut as semicolon-separated ket sequences, as returned by KKeySequen...
Definition: kshortcut.cpp:635
KConfigBase::writeEntry
void writeEntry(const TQString &pKey, const TQString &pValue, bool bPersistent=true, bool bGlobal=false, bool bNLS=false)
Writes a key/value pair.
Definition: kconfigbase.cpp:1067
KGlobal::kdDebug
kdbgstream kdDebug(int area=0)
Definition: kdebug.cpp:365
KConfigBase::sync
virtual void sync()
Flushes all changes that currently reside only in memory back to disk / permanent storage...
Definition: kconfigbase.cpp:1776
klocale.h
KConfigBase::readEntry
TQString readEntry(const TQString &pKey, const TQString &aDefault=TQString::null) const
Reads the value of an entry specified by pKey in the current group.
Definition: kconfigbase.cpp:222
KShortcut
The KShortcut class is used to represent a keyboard shortcut to an action.
Definition: kshortcut.h:543
KKeySequence
A KKeySequence object holds a sequence of up to 4 keys.
Definition: kshortcut.h:288
KConfigBase::readBoolEntry
bool readBoolEntry(const TQString &pKey, bool bDefault=false) const
Reads a boolean entry.
Definition: kconfigbase.cpp:771
KAccelShortcutList
KShortcutList implementation to access KAccel and KGlobalAccel lists.
Definition: kshortcutlist.h:198
KGlobal::kdWarning
kdbgstream kdWarning(int area=0)
Definition: kdebug.cpp:370
KConfigBase::entryMap
virtual TQMap< TQString, TQString > entryMap(const TQString &group) const =0
Returns a map (tree) of entries for all entries in a particular group.
KConfigGroupSaver
Helper class to facilitate working with KConfig / KSimpleConfig groups.
Definition: kconfigbase.h:2059
KConfigBase
KDE Configuration Management abstract base class.
Definition: kconfigbase.h:70
KStdAction::action
KAction * action(StdAction act_enum, const TQObject *recvr, const char *slot, KActionCollection *parent, const char *name=0L)
KKeyNative::keyboardHasWinKey
static bool keyboardHasWinKey()
Checks whether the keyboard has a Win key.
KGlobal::endl
kdbgstream & endl(kdbgstream &s)
Definition: kdebug.h:430
KGlobal::config
static KConfig * config()
Returns the general config object.
Definition: kglobal.cpp:61

kdecore

Skip menu "kdecore"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

kdecore

Skip menu "kdecore"
  • arts
  • dcop
  • dnssd
  • interfaces
  •     interface
  •     library
  •   kspeech
  •   ktexteditor
  • kabc
  • kate
  • kcmshell
  • kdecore
  • kded
  • kdefx
  • kdeprint
  • kdesu
  • kdeui
  • kdoctools
  • khtml
  • kimgio
  • kinit
  • kio
  •   bookmarks
  •   httpfilter
  •   kfile
  •   kio
  •   kioexec
  •   kpasswdserver
  •   kssl
  • kioslave
  •   http
  • kjs
  • kmdi
  •   kmdi
  • knewstuff
  • kparts
  • krandr
  • kresources
  • kspell2
  • kunittest
  • kutils
  • kwallet
  • libkmid
  • libkscreensaver
Generated for kdecore by doxygen 1.8.8
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |