summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kcompletiontest.cpp
blob: a0eba1bfd284cb66577300ba30f2b62c050e916d (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#include <klocale.h>
/****************************************************************************
** Form implementation generated from reading ui file './kcompletiontest.ui'
**
** Created: Wed Nov 15 20:15:10 2000
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#include "kcompletiontest.h"

#include <tqgroupbox.h>
#include <tqlabel.h>
#include <tqlistbox.h>
#include <tqpushbutton.h>
#include <tqlayout.h>
#include <tqvariant.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>

#include <kapplication.h>
#include <klineedit.h>
#include <kcombobox.h>
/*
 *  Constructs a Form1 which is a child of 'parent', with the
 *  name 'name' and widget flags set to 'f'
 */
Form1::Form1( TQWidget* parent,  const char* name )
    : TQWidget( parent, name, WDestructiveClose )
{
    if ( !name )
	setName( "Form1" );
    resize( 559, 465 );
    setCaption(  "Form1" );
    Form1Layout = new TQVBoxLayout( this );
    Form1Layout->setSpacing( 6 );
    Form1Layout->setMargin( 11 );

    GroupBox1 = new TQGroupBox( this, "GroupBox1" );
    GroupBox1->setTitle( "Completion Test" );
    GroupBox1->setColumnLayout(0, Qt::Vertical );
    GroupBox1->layout()->setSpacing( 0 );
    GroupBox1->layout()->setMargin( 0 );
    GroupBox1Layout = new TQVBoxLayout( GroupBox1->layout() );
    GroupBox1Layout->setAlignment( Qt::AlignTop );
    GroupBox1Layout->setSpacing( 6 );
    GroupBox1Layout->setMargin( 11 );

    Layout9 = new QVBoxLayout;
    Layout9->setSpacing( 6 );
    Layout9->setMargin( 0 );

    Layout1 = new QHBoxLayout;
    Layout1->setSpacing( 6 );
    Layout1->setMargin( 0 );

    TextLabel1 = new TQLabel( GroupBox1, "TextLabel1" );
    TextLabel1->setText(  "Completion"  );
    Layout1->addWidget( TextLabel1 );

    edit = new KLineEdit( GroupBox1, "edit" );
    Layout1->addWidget( edit );
    Layout9->addLayout( Layout1 );
    edit->completionObject()->setItems( defaultItems() );
    edit->completionObject()->setIgnoreCase( true );
    edit->setFocus();
    TQToolTip::add( edit, "right-click to change completion mode" );

    Layout2 = new QHBoxLayout;
    Layout2->setSpacing( 6 );
    Layout2->setMargin( 0 );

    combo = new KHistoryCombo( GroupBox1, "history combo" );
    combo->setCompletionObject( edit->completionObject() );
    // combo->setMaxCount( 5 );
    combo->setHistoryItems( defaultItems(), true );
    connect( combo, TQT_SIGNAL( activated( const TQString& )),
	     combo, TQT_SLOT( addToHistory( const TQString& )));
    TQToolTip::add( combo, "KHistoryCombo" );
    Layout2->addWidget( combo );

    LineEdit1 = new KLineEdit( GroupBox1, "LineEdit1" );
    Layout2->addWidget( LineEdit1 );

    PushButton1 = new TQPushButton( GroupBox1, "PushButton1" );
    PushButton1->setText( "Add" );
    connect( PushButton1, TQT_SIGNAL( clicked() ), TQT_SLOT( slotAdd() ));
    Layout2->addWidget( PushButton1 );
    Layout9->addLayout( Layout2 );

    Layout3 = new QHBoxLayout;
    Layout3->setSpacing( 6 );
    Layout3->setMargin( 0 );
    TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum );
    Layout3->addItem( spacer );

    PushButton1_4 = new TQPushButton( GroupBox1, "PushButton1_4" );
    PushButton1_4->setText( "Remove" );
    connect( PushButton1_4, TQT_SIGNAL( clicked() ), TQT_SLOT( slotRemove() ));
    Layout3->addWidget( PushButton1_4 );
    Layout9->addLayout( Layout3 );

    Layout8 = new QHBoxLayout;
    Layout8->setSpacing( 6 );
    Layout8->setMargin( 0 );

    ListBox1 = new TQListBox( GroupBox1, "ListBox1" );
    Layout8->addWidget( ListBox1 );
    connect( ListBox1, TQT_SIGNAL( highlighted( const TQString& )),
	     TQT_SLOT( slotHighlighted( const TQString& )));
    TQToolTip::add( ListBox1, "Contains the contents of the completion object.\n:x is the weighting, i.e. how often an item has been inserted");

    Layout7 = new QVBoxLayout;
    Layout7->setSpacing( 6 );
    Layout7->setMargin( 0 );

    PushButton1_3 = new TQPushButton( GroupBox1, "PushButton1_3" );
    PushButton1_3->setText( "Completion items" );
    connect( PushButton1_3, TQT_SIGNAL( clicked() ), TQT_SLOT( slotList() ));
    Layout7->addWidget( PushButton1_3 );

    PushButton1_2 = new TQPushButton( GroupBox1, "PushButton1_2" );
    PushButton1_2->setText( "Clear" );
    connect( PushButton1_2, TQT_SIGNAL( clicked() ),
	     edit->completionObject(), TQT_SLOT( clear() ));
    Layout7->addWidget( PushButton1_2 );
    Layout8->addLayout( Layout7 );
    Layout9->addLayout( Layout8 );
    GroupBox1Layout->addLayout( Layout9 );
    Form1Layout->addWidget( GroupBox1 );

    slotList();
}

/*
 *  Destroys the object and frees any allocated resources
 */
Form1::~Form1()
{
    // no need to delete child widgets, Qt does it all for us
}

void Form1::slotAdd()
{
    qDebug("** adding: %s", LineEdit1->text().latin1() );
    edit->completionObject()->addItem( LineEdit1->text() );
    
    TQStringList matches = edit->completionObject()->allMatches("S");
    TQStringList::ConstIterator it = matches.begin();
    for ( ; it != matches.end(); ++it )
        qDebug("-- %s", (*it).latin1());
}

void Form1::slotRemove()
{
    edit->completionObject()->removeItem( LineEdit1->text() );
}

void Form1::slotList()
{
    ListBox1->clear();
    TQStringList items = edit->completionObject()->items();
    ListBox1->insertStringList( items );
}

void Form1::slotHighlighted( const TQString& text )
{
    // remove any "weighting"
    int index = text.findRev( ':' );
    if ( index > 0 )
	LineEdit1->setText( text.left( index ) );
    else
	LineEdit1->setText( text );
}


TQStringList Form1::defaultItems() const
{
    TQStringList items;
    items << "Super" << "Sushi" << "Samson" << "Sucks" << "Sumo" << "Schumi";
    items << "Slashdot" << "sUpEr" << "SUshi" << "sUshi" << "sUShi";
    items << "sushI" << "SushI";
    return items;
}


int main(int argc, char **argv )
{
    KApplication app( argc, argv, "kcompletiontest" );

    Form1 *form = new Form1();
    form->show();

    return app.exec();
}


#include "kcompletiontest.moc"