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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
/****************************************************************************
**
** Copyright (C) 2006-2009 fullmetalcoder <fullmetalcoder@hotmail.fr>
**
** This file is part of the Edyuk project <http://edyuk.org>
**
** This file may be used under the terms of the GNU General Public License
** version 3 as published by the Free Software Foundation and appearing in the
** file GPL.txt included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include "qpanel.h"
/*!
\file qpanel.cpp
\brief Implementation of the QPanel class
\see QPanel
*/
#include "qeditor.h"
#include "qcodeedit.h"
#include "qpanellayout.h"
/*!
\ingroup widgets
@{
\class QPanel
\brief Helper class for panels displayed by QCodeEdit
*/
QHash<QString, QPanelCreator*>& QPanel::creators()
{
static QHash<QString, QPanelCreator*> _c;
return _c;
}
QPanel* QPanel::panel(const QString& id, QWidget *p)
{
if ( !creators().contains(id) )
return 0;
return creators().value(id)->panel(p);
}
void QPanel::registerCreator(QPanelCreator *c)
{
creators()[c->id()] = c;
}
static int _panels = 0;
/*!
\brief Constructor
If the parent is a text editor, it is automatically connected to the panel
*/
QPanel::QPanel(QWidget *p)
: QWidget(p), m_defaultVisibility(true), m_shownOnce(false)
{
setAutoFillBackground(true);
QEditor *e = qobject_cast<QEditor*>(p);
if ( e )
attach(e);
++_panels;
}
/*!
\brief Destructor
*/
QPanel::~QPanel()
{
--_panels;
//if ( !_panels )
// qDebug("Panels cleared.");
}
/*!
*/
QEditor* QPanel::editor()
{
return m_editor;
}
/*!
\brief Connect the panel to a text editor
*/
void QPanel::attach(QEditor *e)
{
if ( m_editor )
{
disconnect( m_editor->document(),
SIGNAL( formatsChanged() ),
this,
SLOT ( update() ) );
disconnect( m_editor->document(),
SIGNAL( contentsChanged() ),
this,
SLOT ( update() ) );
disconnect( m_editor->verticalScrollBar(),
SIGNAL( valueChanged(int) ),
this,
SLOT ( update() ) );
}
editorChange(e);
m_editor = e;
setParent(e);
if ( m_editor )
{
connect(m_editor->document(),
SIGNAL( formatsChanged() ),
this,
SLOT ( update() ) );
connect(m_editor->document(),
SIGNAL( contentsChanged() ),
this,
SLOT ( update() ) );
connect(m_editor->verticalScrollBar(),
SIGNAL( valueChanged(int) ),
this,
SLOT ( update() ) );
}
}
/*!
\brief
*/
bool QPanel::shallShow() const
{
return m_shownOnce ? isHidden() : m_defaultVisibility;
}
/*!
\brief
*/
bool QPanel::defaultVisibility() const
{
return m_defaultVisibility;
}
/*!
\brief
*/
void QPanel::setDefaultVisibility(bool on)
{
m_defaultVisibility = on;
}
/*!
\brief Callback
Each time attach() is called, this function is called as well so that
the panel can fine tune its behaviour according to the editor monitored.
\note the Default implementation does nothing...
*/
void QPanel::editorChange(QEditor *)
{
}
bool QPanel::forward(QMouseEvent *e)
{
QPoint pos, globalPos = e->globalPos(), ref = editor()->viewport()->pos();
if ( editor()->viewport()->parentWidget() )
ref = editor()->viewport()->parentWidget()->mapToGlobal(ref);
globalPos.setX(qBound(ref.x(), globalPos.x(), ref.x() + editor()->width()));
globalPos.setY(qBound(ref.y(), globalPos.y(), ref.y() + editor()->height()));
pos = editor()->viewport()->mapFromGlobal(globalPos);
QMouseEvent fw(
e->type(),
pos,
globalPos,
e->button(),
e->buttons(),
e->modifiers()
);
bool ok = qApp->sendEvent(editor()->viewport(), &fw) && fw.isAccepted();
//qDebug("forwarding mouse event : (%i, %i) => %i", pos.x(), pos.y(), ok);
return ok;
}
/*!
\internal
*/
void QPanel::mouseMoveEvent(QMouseEvent *e)
{
if ( !editor() )
return;
if ( forward(e) )
e->accept();
else
QWidget::mouseMoveEvent(e);
}
/*!
\internal
*/
void QPanel::mousePressEvent(QMouseEvent *e)
{
if ( !editor() )
return;
if ( forward(e) )
e->accept();
else
QWidget::mousePressEvent(e);
}
/*!
\internal
*/
void QPanel::mouseReleaseEvent(QMouseEvent *e)
{
if ( !editor() )
return;
if ( forward(e) )
e->accept();
else
QWidget::mouseReleaseEvent(e);
}
/*!
\internal
*/
void QPanel::showEvent(QShowEvent *e)
{
m_shownOnce = true;
QWidget::showEvent(e);
}
/*!
\internal
*/
void QPanel::hideEvent(QHideEvent *e)
{
QCodeEdit *ce = QCodeEdit::manager(editor());
if ( ce )
ce->panelLayout()->update();
QWidget::hideEvent(e);
}
/*!
\internal
*/
void QPanel::paintEvent(QPaintEvent *e)
{
if ( !m_editor || !m_editor->document() )
{
e->ignore();
return;
}
e->accept();
QPainter p(this);
if ( !paint(&p, m_editor) )
QWidget::paintEvent(e);
}
/*!
\internal
*/
bool QPanel::paint(QPainter *, QEditor *)
{
/*
qWarning("Bad panel implementation : "
"QPanel::paint(QPainter*, QEditor*)"
" is a stub that should not get called."
"\nCheck out the code of %s", qPrintable(type()));
*/
return false;
}
/* @} */
|