Code cosmetics

This commit is contained in:
Thorbjørn Lindeijer
2011-02-16 18:03:47 +01:00
parent 7f90d08c18
commit 4af3d9bdd2
6 changed files with 29 additions and 34 deletions

View File

@@ -214,7 +214,8 @@ QVariant CrumblePathButton::data() const
///////////////////////////////////////////////////////////////////////////////
struct CrumblePathPrivate {
struct CrumblePathPrivate
{
explicit CrumblePathPrivate(CrumblePath *q);
QList<CrumblePathButton*> m_buttons;
@@ -244,18 +245,18 @@ CrumblePath::~CrumblePath()
void CrumblePath::selectIndex(int index)
{
if ((index > -1) && (index < d->m_buttons.length()))
if (index > -1 && index < d->m_buttons.length())
d->m_buttons[index]->select(true);
}
QVariant CrumblePath::dataForIndex(int index) const
{
if ((index > -1) && (index < d->m_buttons.length()))
if (index > -1 && index < d->m_buttons.length())
return d->m_buttons[index]->data();
return QVariant();
}
void CrumblePath::pushElement(const QString &title, const QVariant data)
void CrumblePath::pushElement(const QString &title, const QVariant &data)
{
CrumblePathButton *newButton = new CrumblePathButton(title, this);
newButton->hide();
@@ -276,7 +277,7 @@ void CrumblePath::pushElement(const QString &title, const QVariant data)
resizeButtons();
}
void CrumblePath::addChild(const QString &title, const QVariant data)
void CrumblePath::addChild(const QString &title, const QVariant &data)
{
QTC_ASSERT(d->m_buttons.count() > 0,return);
@@ -311,10 +312,9 @@ void CrumblePath::popElement()
void CrumblePath::clear()
{
while (!d->m_buttons.isEmpty()) {
while (!d->m_buttons.isEmpty())
popElement();
}
}
void CrumblePath::resizeEvent(QResizeEvent *)
{
@@ -363,7 +363,6 @@ void CrumblePath::resizeButtons()
if (i > 0)
button->stackUnder(d->m_buttons[i - 1]);
}
}
}

View File

@@ -55,8 +55,8 @@ public:
QVariant dataForIndex(int index) const;
public slots:
void pushElement(const QString &title, const QVariant data = QVariant());
void addChild(const QString &title, const QVariant data = QVariant());
void pushElement(const QString &title, const QVariant &data = QVariant());
void addChild(const QString &title, const QVariant &data = QVariant());
void popElement();
void clear();

View File

@@ -39,17 +39,13 @@ namespace QmlJSInspector {
namespace Internal {
ContextCrumblePath::ContextCrumblePath(QWidget *parent)
: CrumblePath(parent), m_isEmpty(true)
: CrumblePath(parent)
, m_isEmpty(true)
{
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
updateContextPath(QStringList(), QList<int>());
}
ContextCrumblePath::~ContextCrumblePath()
{
}
void ContextCrumblePath::updateContextPath(const QStringList &path, const QList<int> &debugIds)
{
Q_ASSERT(path.count() == debugIds.count());
@@ -60,11 +56,10 @@ void ContextCrumblePath::updateContextPath(const QStringList &path, const QList<
if (m_isEmpty) {
pushElement(tr("[no context]"));
} else {
for (int i=0; i<path.count(); i++) {
for (int i=0; i<path.count(); i++)
pushElement(path[i], QVariant(debugIds[i]));
}
}
}
void ContextCrumblePath::addChildren(const QStringList &childrenNames, const QList<int> &childrenDebugIds)
{

View File

@@ -42,9 +42,10 @@ namespace Internal {
class ContextCrumblePath : public Utils::CrumblePath
{
Q_OBJECT
public:
ContextCrumblePath(QWidget *parent = 0);
virtual ~ContextCrumblePath();
bool isEmpty() const;
int debugIdForIndex(int index) const;