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
|
/* This file is part of the KDE project
Copyright (C) 2004 Jaroslaw Staniek <js@iidea.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "kexisectionheader.h"
#include "kexiviewbase.h"
#include <kexiutils/utils.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqhbox.h>
#include <tqtooltip.h>
#include <kiconloader.h>
#include <kpushbutton.h>
class KexiSectionHeader::BoxLayout : public TQBoxLayout
{
public:
BoxLayout( KexiSectionHeader* parent, Direction d, int margin = 0,
int spacing = -1, const char * name = 0 );
virtual void addItem( TQLayoutItem * item );
TQGuardedPtr<KexiViewBase> view;
};
//==========================
//! @internal
class KexiSectionHeaderPrivate
{
public:
KexiSectionHeaderPrivate()
{
}
Qt::Orientation orientation;
TQLabel *lbl;
KexiSectionHeader::BoxLayout *lyr;
TQHBox *lbl_b;
};
//==========================
KexiSectionHeader::KexiSectionHeader(const TQString &caption, Qt::Orientation o, TQWidget* parent )
: TQWidget(parent, "KexiSectionHeader")
, d( new KexiSectionHeaderPrivate() )
{
d->orientation = o;
d->lyr = new BoxLayout( this, d->orientation==Qt::Vertical ? TQBoxLayout::TopToBottom : TQBoxLayout::LeftToRight );
d->lyr->setAutoAdd(true);
d->lbl_b = new TQHBox(this);
d->lbl = new TQLabel(TQString(" ")+caption, d->lbl_b);
d->lbl->tqsetSizePolicy(TQSizePolicy::Minimum, TQSizePolicy::Preferred);
d->lbl->setFocusPolicy(TQ_StrongFocus);
d->lbl->installEventFilter(this);
installEventFilter(this);
setCaption(caption);
}
KexiSectionHeader::~KexiSectionHeader()
{
delete d;
}
void KexiSectionHeader::addButton(const TQString& icon, const TQString& toolTip,
const TQObject * receiver, const char * member)
{
KPushButton *btn = new KPushButton(d->lbl_b);
btn->setFlat(true);
btn->setFocusPolicy(TQ_NoFocus);
btn->tqsetSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Preferred);
if (receiver && member) {
connect(btn, TQT_SIGNAL(clicked()), receiver, member);
}
if (!icon.isEmpty()) {
TQIconSet iset = SmallIconSet(icon);
btn->setIconSet( iset );
TQFontMetrics fm(d->lbl->font());
btn->setMaximumHeight( TQMAX(fm.height(), 16) );
}
if (!toolTip.isEmpty()) {
TQToolTip::add(btn, toolTip);
}
}
bool KexiSectionHeader::eventFilter( TQObject *o, TQEvent *e )
{
if (TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->lbl) && e->type()==TQEvent::MouseButtonRelease) {//|| e->type()==TQEvent::FocusOut) {// && o->inherits(TQWIDGET_OBJECT_NAME_STRING)) {
if (d->lyr->view)
d->lyr->view->setFocus();
// if (KexiUtils::hasParent( this, static_cast<TQWidget*>(o))) {
// d->lbl->setPaletteBackgroundColor( e->type()==TQEvent::FocusIn ? red : blue);
// }
}
return TQWidget::eventFilter(o,e);
}
void KexiSectionHeader::slotFocus(bool in)
{
in = in || tqfocusWidget()==this;
d->lbl->setPaletteBackgroundColor(
in ? tqpalette().active().color(TQColorGroup::Highlight) : tqpalette().active().color(TQColorGroup::Background) );
d->lbl->setPaletteForegroundColor(
in ? tqpalette().active().color(TQColorGroup::HighlightedText) : tqpalette().active().color(TQColorGroup::Foreground) );
}
TQSize KexiSectionHeader::tqsizeHint() const
{
if (!d->lyr->view)
return TQWidget::tqsizeHint();
TQSize s = d->lyr->view->tqsizeHint();
return TQSize(s.width(), d->lbl->tqsizeHint().height() + s.height());
}
/*void KexiSectionHeader::setFocus()
{
if (d->lyr->view)
d->lyr->view->setFocus();
else
TQWidget::setFocus();
}*/
//======================
KexiSectionHeader::BoxLayout::BoxLayout( KexiSectionHeader* parent, Direction d, int margin, int spacing, const char * name )
: TQBoxLayout(parent, d, margin, spacing, name )
{
}
void KexiSectionHeader::BoxLayout::addItem( TQLayoutItem * item )
{
TQBoxLayout::addItem( item );
if (item->widget()) {
item->widget()->installEventFilter( mainWidget() );
if (item->widget()->inherits("KexiViewBase")) {
view = static_cast<KexiViewBase*>(item->widget());
KexiSectionHeader *sh = static_cast<KexiSectionHeader*>(mainWidget());
connect(view,TQT_SIGNAL(focus(bool)),sh,TQT_SLOT(slotFocus(bool)));
sh->d->lbl->setBuddy(item->widget());
}
}
}
#include "kexisectionheader.moc"
|