blob: 8f7fcb262c3edf419c33f67d16f21304a0eadbe6 (
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
|
/*
cwsearchwidget.cpp - Search Pane
copyright : (c) 2001 by Martijn Klingens
email : klingens@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 <qpushbutton.h>
#include <klocale.h>
#include <kdialog.h>
#include <qlineedit.h>
#include <qlayout.h>
#include <kcombobox.h>
#include <qlabel.h>
#include "cwsearchwidget.h"
using namespace KBugBusterMainWindow;
CWSearchWidget::CWSearchWidget( QWidget *parent , const char * name )
: CWSearchWidget_Base( parent, name )
{
// Set fonts and margins
CWSearchWidget_BaseLayout->setSpacing( KDialog::spacingHint() );
CWSearchWidget_BaseLayout->setMargin( KDialog::marginHint() );
QFont f = m_searchLabel->font();
f.setBold( true );
m_searchLabel->setFont( f );
connect( m_searchDesc, SIGNAL( textChanged ( const QString & ) ),
this, SLOT( textDescriptionChanged ( const QString & ) ) );
connect( m_searchBugNumber, SIGNAL( textChanged ( const QString & ) ),
this, SLOT( textNumberChanged ( const QString & ) ) );
m_searchDescBtn->setEnabled( !m_searchDesc->text().isEmpty() );
m_searchBugNumberBtn->setEnabled( !m_searchBugNumber->text().isEmpty() );
// m_searchPackages->setCompletionMode( KGlobalSettings::CompletionAuto );
}
CWSearchWidget::~CWSearchWidget()
{
}
void CWSearchWidget::textDescriptionChanged ( const QString &_text )
{
m_searchDescBtn->setEnabled( !_text.isEmpty() );
}
void CWSearchWidget::textNumberChanged ( const QString &_text )
{
m_searchBugNumberBtn->setEnabled( !_text.isEmpty() );
}
#include "cwsearchwidget.moc"
/* vim: set et ts=4 sw=4 softtabstop=4: */
|