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
|
/***************************************************************************
* Copyright (C) 2001 by Bernd Gehrmann *
* bernd@kdevelop.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 <tqlayout.h>
#include <tqlineedit.h>
#include <tqpainter.h>
#include <tqtimer.h>
#include <tqfontmetrics.h>
#include <kdebug.h>
#include <tdeglobalsettings.h>
#include <tdelocale.h>
#include <tdeparts/part.h>
#include <tdetexteditor/viewcursorinterface.h>
#include <tdeversion.h>
#include <tdetexteditor/viewstatusmsginterface.h>
#include "statusbar.h"
#include "partcontroller.h"
KDevStatusBar::KDevStatusBar(TQWidget *parent, const char *name)
: KStatusBar(parent, name), _cursorIface(0), _activePart(0)
{
TQWidget * w = new TQWidget( this );
addWidget( w, 1, true );
w->hide();
_status = new TQLabel( this );
_status->setMinimumWidth(_status->fontMetrics().width("Line: XXXXX Col: XXX OVR NORM * "));
_status->setAlignment(TQWidget::AlignCenter);
addWidget(_status, 0, true);
connect(PartController::getInstance(), TQT_SIGNAL(activePartChanged(KParts::Part*)),
this, TQT_SLOT(activePartChanged(KParts::Part*)));
}
KDevStatusBar::~KDevStatusBar()
{}
void KDevStatusBar::activePartChanged(KParts::Part *part)
{
if ( _activePart && _activePart->widget() )
disconnect( _activePart->widget(), 0, this, 0 );
_activePart = part;
_cursorIface = 0;
_viewmsgIface = 0;
if (part && part->widget())
{
if ((_viewmsgIface = dynamic_cast<KTextEditor::ViewStatusMsgInterface*>(part->widget())))
{
connect( part->widget(), TQT_SIGNAL( viewStatusMsg( const TQString & ) ),
this, TQT_SLOT( setStatus( const TQString & ) ) );
_status->show();
}
else if ((_cursorIface = dynamic_cast<KTextEditor::ViewCursorInterface*>(part->widget())))
{
connect(part->widget(), TQT_SIGNAL(cursorPositionChanged()), this, TQT_SLOT(cursorPositionChanged()));
_status->show();
cursorPositionChanged();
}
else
{
// we can't produce any status data, hide the status box
_status->hide();
}
}
}
void KDevStatusBar::cursorPositionChanged()
{
if (_cursorIface)
{
uint line, col;
_cursorIface->cursorPosition(&line, &col);
setCursorPosition(line, col);
}
}
void KDevStatusBar::setStatus(const TQString &str)
{
_status->setText(str);
}
void KDevStatusBar::setCursorPosition(int line, int col)
{
_status->setText(i18n(" Line: %1 Col: %2 ").arg(line+1).arg(col));
}
void KDevStatusBar::addWidget ( TQWidget *widget, int stretch, bool permanent)
{
KStatusBar::addWidget(widget,stretch,permanent);
if(widget->sizeHint().height() + 4 > height())
setFixedHeight(widget->sizeHint().height() + 4);
}
#include "statusbar.moc"
|