Coding style fixes.

This commit is contained in:
Felix Geyer 2012-05-20 23:14:34 +02:00
parent 5297722ede
commit bde397503e
8 changed files with 29 additions and 32 deletions

View File

@ -45,7 +45,6 @@ DatabaseWidget::DatabaseWidget(Database* db, QWidget* parent)
, m_newEntry(0)
, m_newParent(0)
{
m_searchUi->setupUi(m_searchWidget);
m_searchTimer = new QTimer(this);

View File

@ -15,8 +15,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KEEPASSX_DRAGTABWIDGET_H
#define KEEPASSX_DRAGTABWIDGET_H
#ifndef KEEPASSX_DRAGTABBAR_H
#define KEEPASSX_DRAGTABBAR_H
#include <QtGui/QTabBar>
@ -25,7 +25,7 @@ class DragTabBar : public QTabBar
Q_OBJECT
public:
DragTabBar(QWidget* parent = 0);
explicit DragTabBar(QWidget* parent = 0);
protected:
void dragEnterEvent(QDragEnterEvent* event);
@ -42,4 +42,4 @@ private:
int m_tabSwitchIndex;
};
#endif // KEEPASSX_DRAGTABWIDGET_H
#endif // KEEPASSX_DRAGTABBAR_H

View File

@ -17,34 +17,34 @@
LineEdit::LineEdit(QWidget* parent)
: QLineEdit(parent)
{
clearButton = new QToolButton(this);
clearButton->setObjectName("clearButton");
m_clearButton = new QToolButton(this);
m_clearButton->setObjectName("clearButton");
QIcon icon = dataPath()->icon("action", "edit-clear-locationbar-rtl");
clearButton->setIcon(icon);
clearButton->setCursor(Qt::ArrowCursor);
clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }");
clearButton->hide();
connect(clearButton, SIGNAL(clicked()), this, SLOT(clear()));
m_clearButton->setIcon(icon);
m_clearButton->setCursor(Qt::ArrowCursor);
m_clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }");
m_clearButton->hide();
connect(m_clearButton, SIGNAL(clicked()), this, SLOT(clear()));
connect(this, SIGNAL(textChanged(const QString&)), this, SLOT(updateCloseButton(const QString&)));
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
setStyleSheet(QString("QLineEdit { padding-right: %1px; } ")
.arg(clearButton->sizeHint().width() + frameWidth + 1));
.arg(m_clearButton->sizeHint().width() + frameWidth + 1));
QSize msz = minimumSizeHint();
setMinimumSize(qMax(msz.width(), clearButton->sizeHint().height() + frameWidth * 2 + 2),
qMax(msz.height(), clearButton->sizeHint().height() + frameWidth * 2 + 2));
setMinimumSize(qMax(msz.width(), m_clearButton->sizeHint().height() + frameWidth * 2 + 2),
qMax(msz.height(), m_clearButton->sizeHint().height() + frameWidth * 2 + 2));
}
void LineEdit::resizeEvent(QResizeEvent*)
void LineEdit::resizeEvent(QResizeEvent* event)
{
QSize sz = clearButton->sizeHint();
Q_UNUSED(event);
QSize sz = m_clearButton->sizeHint();
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
clearButton->move(rect().right() - frameWidth - sz.width(),
m_clearButton->move(rect().right() - frameWidth - sz.width(),
(rect().bottom() + 1 - sz.height())/2);
}
void LineEdit::updateCloseButton(const QString& text)
{
clearButton->setVisible(!text.isEmpty());
m_clearButton->setVisible(!text.isEmpty());
}

View File

@ -19,17 +19,16 @@ class LineEdit : public QLineEdit
Q_OBJECT
public:
LineEdit(QWidget* parent = 0);
explicit LineEdit(QWidget* parent = 0);
protected:
void resizeEvent(QResizeEvent*);
void resizeEvent(QResizeEvent* event);
private Q_SLOTS:
void updateCloseButton(const QString& text);
private:
QToolButton* clearButton;
QToolButton* m_clearButton;
};
#endif // KEEPASSX_LINEEDIT_H

View File

@ -40,10 +40,10 @@ EntryView::EntryView(QWidget* parent)
setDragEnabled(true);
setSortingEnabled(true);
connect(this, SIGNAL(activated(const QModelIndex&)), SLOT(emitEntryActivated(const QModelIndex&)));
connect(this, SIGNAL(activated(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
connect(m_model, SIGNAL(switchedToSearch()), this, SLOT(switchToSearch()));
connect(m_model, SIGNAL(switchedToView()), this, SLOT(switchToView()));
connect(m_model, SIGNAL(switchedToSearch()), SLOT(switchToSearch()));
connect(m_model, SIGNAL(switchedToView()), SLOT(switchToView()));
sortByColumn(0, Qt::AscendingOrder);
}

View File

@ -213,7 +213,6 @@ void TestGui::testSearch()
QTest::qWait(20);
QCOMPARE(entryView->model()->rowCount(), 1);
}
void TestGui::cleanupTestCase()