summaryrefslogtreecommitdiffstats
path: root/kspy/sigslotview.cpp
blob: c74df01218ec99b30a625911f68b2b86d4728137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***************************************************************************
                          sigslotview.cpp  -  description
                             -------------------
    begin                : Tue May 1 2001
    copyright            : (C) 2001 by Richard Moore
    email                : rich@kde.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include <tqobjectdict.h>
#include <tqobjectlist.h>
#include <tqmetaobject.h>
#include <tqstrlist.h>
#include <tqvariant.h>

#include <tdelocale.h>

#include "sigslotview.h"

SigSlotView::SigSlotView(TQWidget *parent, const char *name ) : TDEListView(parent,name)
{
  addColumn( i18n( "Signals/Slots" ) );

  setRootIsDecorated( true );
  setAllColumnsShowFocus( true );
  setFullWidth( true );
}

SigSlotView::~SigSlotView()
{
}

void SigSlotView::buildList( TQObject *o )
{
  TQMetaObject *mo = o->metaObject();

  TDEListViewItem *sigs = new TDEListViewItem( this, "Signals" );
  TQStrList sigList = mo->signalNames( true );
  TQStrListIterator sigIt( sigList );
  char *si;
  while ( (si=sigIt.current()) != 0 ) {
    ++sigIt;
    new TDEListViewItem( sigs, si /*, "someSignal()"*/ );
  }

  TDEListViewItem *slts = new TDEListViewItem( this, "Slots" );
  TQStrList sltList = mo->slotNames( true );
  TQStrListIterator sltIt( sltList );
  char *sl;
  while ( (sl=sltIt.current()) != 0 ) {
    ++sltIt;
    new TDEListViewItem( slts, sl/*, "someSlot()"*/ );
  }

  setOpen( sigs, false );
  setOpen( slts, false );
}

void SigSlotView::setTarget( TQObject *o )
{
  clear();
  buildList( o );
}

#include "sigslotview.moc"