diff options
-rw-r--r-- | TODO | 22 | ||||
-rw-r--r-- | src/findbar.cpp | 5 | ||||
-rw-r--r-- | src/searchbar.cpp | 1 | ||||
-rw-r--r-- | src/urlbar.h | 3 |
4 files changed, 15 insertions, 16 deletions
@@ -11,23 +11,23 @@ Road to 0.0.1 (first release) NEXT.. -+ Fixing QByteArray save/load state!! - system SELECT ALL - better FULL SCREEN - simplify history - -- Kpart ?? - -+------------------------ - +- KDE autosave +- kMainWindow save/read settings +- color progress - contextMenu in searchbar to set different search engines -+ save toolbars settings -- NEW save/load setting functions in KMainWIndow -+ improve CMakeLists.txt 4.4 required, 4.5 better.. -- browse code to search TODO and FIXME -+ qDebug --> kWarning() / kDebug()! + +- QWebPluginFactory subclass to load KParts into QtWebKit. - dbus support - kget support - kwallet support - kwrite support ( optional, to view HTML code ) + +- Kpart ?? + ++------------------------ + + diff --git a/src/findbar.cpp b/src/findbar.cpp index b45dc8fa..73f6c784 100644 --- a/src/findbar.cpp +++ b/src/findbar.cpp @@ -41,6 +41,8 @@ FindBar::FindBar(KMainWindow *parent) addWidget( label ); m_lineEdit = new KLineEdit(); + m_lineEdit->setMaximumWidth( 200 ); + connect( m_lineEdit, SIGNAL( returnPressed() ), parent, SLOT( slotFindNext() ) ); connect( m_lineEdit, SIGNAL( textEdited(const QString &) ), parent, SLOT( slotFindNext() ) ); addWidget( m_lineEdit ); @@ -48,9 +50,6 @@ FindBar::FindBar(KMainWindow *parent) addAction( KStandardAction::findNext(parent, SLOT( slotFindNext() ) , this ) ); addAction( KStandardAction::findPrev(parent, SLOT( slotFindPrevious() ) , this ) ); - QLabel *spaceLabel = new QLabel(" "); // FIXME - addWidget( spaceLabel ); - // we start off hidden hide(); } diff --git a/src/searchbar.cpp b/src/searchbar.cpp index 8b21daf5..977703d3 100644 --- a/src/searchbar.cpp +++ b/src/searchbar.cpp @@ -24,6 +24,7 @@ #include "browserapplication.h" #include "browsermainwindow.h" +#include <KDebug> SearchBar::SearchBar(QWidget *parent) : KLineEdit(parent) diff --git a/src/urlbar.h b/src/urlbar.h index 99199d9c..c77f3b77 100644 --- a/src/urlbar.h +++ b/src/urlbar.h @@ -46,8 +46,7 @@ private slots: void webViewIconChanged(); protected: -// void paintEvent( QPaintEvent * ); - +// void paintEvent( QPaintEvent * ); private: QLinearGradient generateGradient(const QColor &color) const; |